
/* Shared section-page components for Schedule, Tickets, Betting, Live and News */
.breadcrumbs {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 22px;
    font-size: 14px;
    color: var(--muted);
}
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.breadcrumbs li + li::before {
    content: "›";
    color: #9aa8b8;
    font-weight: 800;
}
.breadcrumbs a {
    color: var(--text);
    font-weight: 800;
}
.breadcrumbs [aria-current="page"] {
    color: var(--brand);
    font-weight: 800;
}
.section-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 850px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-card,
.news-card,
.live-card,
.ticket-card,
.market-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    padding: 22px;
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.07);
}
.info-card h3,
.news-card h3,
.live-card h3,
.ticket-card h3,
.market-card h3 {
    margin: 0 0 10px;
    line-height: 1.25;
    color: var(--text);
}
.info-card p,
.news-card p,
.live-card p,
.ticket-card p,
.market-card p {
    margin: 0;
    color: var(--muted);
}
.badge,
.status-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #fff5f5;
    color: var(--brand);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.status-label::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--brand);
}
.split-section {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 28px;
    align-items: center;
}
.section-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-alt);
    box-shadow: var(--shadow);
}
.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.check-list li {
    position: relative;
    padding-left: 30px;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 13px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.button.secondary {
    background: #ffffff;
    color: var(--dark);
}
.button.ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.45);
}
.schedule-flow {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}
.schedule-stage {
    display: grid;
    grid-template-columns: minmax(160px, 0.35fr) 1fr minmax(120px, 0.3fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f4f8fc);
}
.schedule-stage strong {
    font-size: 18px;
    color: var(--dark);
}
.schedule-stage span {
    color: var(--muted);
}
.stage-date {
    justify-self: end;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}
.group-map {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.group-map a,
.group-tile {
    display: block;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--surface-alt);
    color: var(--text);
    font-weight: 800;
}
.group-map a:hover {
    color: var(--brand);
    background: #fff;
    text-decoration: none;
}
.live-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}
.live-card {
    display: block;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.live-card:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: var(--shadow);
}
.live-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, #07111f, #12365c);
    color: #fff;
}
.live-card.featured h3,
.live-card.featured p {
    color: #fff;
}
.news-feature {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: center;
}
.news-feature .section-image {
    min-height: 280px;
}
.news-card {
    padding: 0;
    overflow: hidden;
}
.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.news-card-body {
    padding: 20px;
}
.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.tag-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.tag-bar a,
.tag-bar span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--text);
    font-weight: 800;
}
.notice-box {
    border: 1px solid rgba(193,18,31,.25);
    border-left: 5px solid var(--brand);
    border-radius: 18px;
    padding: 20px;
    background: #fffafa;
    color: var(--text);
    margin-top: 20px;
}
.numbered-steps {
    counter-reset: step;
    display: grid;
    gap: 14px;
    margin-top: 22px;
}
.numbered-steps .step {
    counter-increment: step;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 18px 18px 18px 64px;
    position: relative;
}
.numbered-steps .step::before {
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}
@media (max-width: 860px) {
    .card-grid,
    .card-grid.two,
    .live-grid,
    .news-feature,
    .split-section {
        grid-template-columns: 1fr;
    }
    .group-map {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .schedule-stage {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .stage-date {
        justify-self: start;
    }
}
@media (max-width: 560px) {
    .breadcrumbs {
        width: calc(100% - 20px);
    }
    .group-map {
        grid-template-columns: 1fr;
    }
    .info-card,
    .news-card-body,
    .live-card,
    .ticket-card,
    .market-card {
        padding: 18px;
    }
}
