/* === Cinemas List Board – Front CSS (CPIB dizainas) === */

/* Tinklelis */
.clb-board {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) { .clb-board { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .clb-board { grid-template-columns: repeat(4, 1fr); } }

/* Filtras viršuje */
.clb-filter { margin: 0 0 20px; }
.clb-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600; /* bold */
}

/* Kortelė – CPIB stilius (pilkas apvadas + šešėlis) */
.clb-board .clb-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.clb-board .clb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Logotipo zona – be fono */
.clb-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 8px;
  background: transparent;  /* buvo #fafafa */
}
.clb-logo {
  display: block;
  width: auto !important;
  max-width: 100%;
  max-height: 90px;
  height: auto !important;
  object-fit: contain;
}
.clb-logo-placeholder { color:#aaa; font-size:12px; text-align:center; }

/* Turinio sritis */
.clb-body {
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.clb-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

/* Miesto pavadinimas po teatro pavadinimu */
.clb-city-name {
  margin: 0 0 12px;
  font-weight: 400;   /* normal, ne bold */
  font-size: 14px;
  text-align: center;
  color: #333;
}

/* Mygtukas „Daugiau“ – žalia (#2AFEB7) ir tikrai centruotas */
.clb-board .clb-btn {
  margin-top: auto;
  width: 100%;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  background: #2AFEB7;
  color: #000;
  padding: .4rem .6rem;
  border: none;
  border-radius: 6px;

  /* centras nepriklausomai nuo temos */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.clb-board .clb-btn:hover {
  filter: brightness(0.95);
  color: #000;
}
