.lcec-calendar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.lcec-month {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 8px 0 12px;
}

.lcec-daystrip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.lcec-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #f2f4f7;
  border-radius: 14px;
  padding: 10px 6px;
  transition: background .15s ease, transform .05s ease;
  color: #0b1220;
  border: 1px solid transparent;
}

.lcec-day:hover {
  background: #e9eef5;
}

.lcec-day.is-selected {
  background: #0a66ff;
  color: #fff;
}

.lcec-dayname {
  font-size: .9rem;
  opacity: .9;
}

.lcec-daynum {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.lcec-results-head h2 {
  font-size: 1.1rem;
  margin: 12px 0;
  color: #374151;
  font-weight: 600;
}

.lcec-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lcec-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: grid;
  grid-template-columns: 240px 1fr;
}

@media (max-width: 780px) {
  .lcec-card { grid-template-columns: 1fr; }
}

.lcec-card__media {
  aspect-ratio: 4/3;
  background: #eef2f7;
}

.lcec-card__content {
  padding: 14px;
}

.lcec-badge {
  display: inline-block;
  background: #e4e7ec;
  color: #111827;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .8rem;
  margin-bottom: 8px;
}

.lcec-title {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.lcec-venue {
  margin: 0;
  color: #6b7280;
}

.lcec-card--placeholder {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 24px;
  color: #6b7280;
  background: #fafafa;
  border-style: dashed;
}
.lcec-day.is-disabled {
  opacity: .45;
  pointer-events: none;
}
/* two-month rolling strip: horizontal scroll */
.lcec-daystrip--range {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(84px, 1fr);
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.lcec-daystrip--range .lcec-day { scroll-snap-align: start; }

.lcec-day.is-disabled { opacity: .45; pointer-events: none; }

/* ====== Calendar strip overrides (uniform buttons) ====== */

/* show a rolling, horizontal strip */
.lcec-daystrip--range {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72px;   /* fixed column width so every day is same size */
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.lcec-daystrip--range .lcec-day { scroll-snap-align: start; }

/* day button – fixed size + white background */
.lcec-day {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 72px;               /* force identical width */
  height: 88px;              /* force identical height */
  padding: 0;                /* padding no longer affects size */
  margin: 0;

  background: #fff;          /* white background */
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  color: #0b1220;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

/* day name + number */
.lcec-dayname {
  font-size: .85rem;
  line-height: 1.1;
  opacity: .9;
  margin-top: 10px;
}
.lcec-daynum {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 6px;
  color: #0a66ff;            /* blue numbers by default */
}

/* hover (desktop only visual) */
@media (hover:hover) {
  .lcec-day:hover {
    border-color: #cbd5e1;
    background: #fff;
  }
}

/* selected day */
.lcec-day.is-selected {
  background: #0a66ff;
  border-color: #0a66ff;
  color: #fff;
}
.lcec-day.is-selected .lcec-daynum { color: #fff; }

/* disabled (past) */
.lcec-day.is-disabled {
  opacity: .45;
  pointer-events: none;
}
/*  */
