:root {
    --updates-primary: #3b82f6;
    --updates-secondary: #f59e0b;
    --updates-surface: #ffffff;
    --updates-ink: #1e293b;
    --updates-bg: #eef3f9;
    --updates-line: rgba(30, 41, 59, 0.12);
    --updates-muted: #5b6578;
    --updates-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
    color: var(--updates-ink);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 36%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, var(--updates-bg) 55%, #e8eef6 100%);
}

.updates-header,
.updates-main {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.updates-header {
    padding: 2.5rem 0 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-start;
}

.eyebrow {
    margin: 0 0 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    color: var(--updates-muted);
}

.updates-header h1,
.hero-card h2,
.section-heading h2,
.info-card h3,
.date-copy h3,
.schedule-day h3,
.hero-panel h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
}

.updates-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.header-copy,
.hero-summary,
.hero-list,
.info-card p,
.date-copy p,
.muted-copy {
    color: var(--updates-muted);
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button-primary:hover,
.button-secondary:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--updates-primary);
    color: white;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.22);
}

.button-secondary {
    background: rgba(245, 158, 11, 0.16);
    color: #915e00;
}

.updates-main {
    padding-bottom: 3rem;
    display: grid;
    gap: 1.4rem;
}

.hero-card,
.content-section,
.info-card,
.date-card,
.schedule-day {
    border: 1px solid var(--updates-line);
    border-radius: 26px;
    background: var(--updates-surface);
    box-shadow: var(--updates-shadow);
}

.hero-card {
    padding: 1.7rem;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 1.4rem;
}

.hero-issue {
    margin: 0.5rem 0 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.hero-summary {
    margin: 1rem 0 0;
    max-width: 64ch;
    line-height: 1.6;
}

.hero-meta {
    margin-top: 1rem;
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.hero-meta span,
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.33rem 0.72rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--updates-primary);
    font-size: 0.84rem;
    font-weight: 700;
}

.row-tags {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.tag.muted {
    background: rgba(30, 41, 59, 0.08);
    color: var(--updates-muted);
}

.belt-tag {
    background: rgba(245, 158, 11, 0.15);
    color: #9a6300;
}

.hero-panel {
    padding: 1.25rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.hero-panel h3 {
    margin-bottom: 0.85rem;
}

.hero-list {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.6;
}

.content-section {
    padding: 1.5rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-size: 1.9rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.photo-card {
    overflow: hidden;
    border: 1px solid var(--updates-line);
    border-radius: 24px;
    background: var(--updates-surface);
    box-shadow: var(--updates-shadow);
}

.photo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.photo-copy {
    padding: 0.9rem 1rem 1rem;
}

.photo-copy p {
    margin: 0;
    line-height: 1.5;
    color: var(--updates-muted);
}

.info-card,
.date-card,
.schedule-day {
    padding: 1.1rem;
}

.info-card {
    display: grid;
    gap: 0.7rem;
}

.info-card-feature {
    grid-column: span 2;
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.2fr);
    padding: 0;
    overflow: hidden;
    gap: 0;
}

.info-card-feature .info-copy {
    display: grid;
    gap: 0.7rem;
    padding: 1.15rem;
}

.info-media {
    min-height: 220px;
    background: #edf3fa;
}

.info-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-topline {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.info-card h3,
.date-copy h3 {
    font-size: 1.15rem;
    line-height: 1.3;
}

.info-card p,
.date-copy p,
.session-item {
    line-height: 1.55;
}

.dates-list {
    display: grid;
    gap: 0.9rem;
}

.date-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.date-card-feature {
    grid-template-columns: auto minmax(0, 1fr) minmax(180px, 240px);
}

.date-box {
    width: 76px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--updates-primary), #1d4ed8);
    color: white;
    display: grid;
    place-items: center;
    padding: 0.8rem 0.4rem;
    gap: 0.1rem;
}

.date-day {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 800;
}

.date-month {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.date-meta {
    margin: 0.45rem 0 0.7rem;
}

.date-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--updates-line);
    background: #edf3fa;
    min-height: 150px;
}

.date-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.schedule-day {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.schedule-day.today {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 18px 34px rgba(59, 130, 246, 0.12);
}

.schedule-day h3 {
    margin-bottom: 0.85rem;
}

.session-list {
    display: grid;
    gap: 0.8rem;
}

.session-item {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(30, 41, 59, 0.08);
}

.session-item:first-child {
    padding-top: 0;
    border-top: none;
}

.session-time {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.session-groups {
    display: grid;
    gap: 0.2rem;
    color: var(--updates-muted);
}

.empty-card {
    background: linear-gradient(180deg, #fffdfa 0%, #f7f8fb 100%);
}

@media (max-width: 900px) {
    .updates-header,
    .hero-card {
        grid-template-columns: 1fr;
    }

    .updates-header {
        display: grid;
    }

    .header-actions {
        justify-content: flex-start;
    }

    .date-card-feature {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .info-card-feature {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .updates-header,
    .updates-main {
        width: min(100%, calc(100% - 1rem));
    }

    .updates-header {
        padding-top: 1.4rem;
    }

    .hero-card,
    .content-section,
    .info-card,
    .date-card,
    .schedule-day {
        border-radius: 22px;
    }

    .date-card {
        grid-template-columns: 1fr;
    }

    .date-card-feature {
        grid-template-columns: 1fr;
    }

    .date-box {
        width: 100%;
        grid-template-columns: repeat(2, auto);
        display: inline-grid;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .info-media {
        min-height: 190px;
    }

    .info-card-feature {
        grid-column: auto;
    }
}
