.section {
    margin: 24px 0;
}

/* Intro */
.section.intro {
    margin-top: 0;
}

.intro h1 {
    margin: 0 0 8px;
}

.intro p {
    max-width: 70ch;
    opacity: 0.9;
}

/* Panel layout */
.formats-page {
    padding-top: 10px;
}
.format-panel {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 16px;
}

/* Logo + Title */
.format-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.format-left img {
    width: 160px;
    height: auto;
    display: block;
}

.format-left h2 {
    margin: 0;
    line-height: 1.15;
}

.format-left h2 span {
    font-size: 0.9em;
    opacity: 0.85;
}

/* Right column */
.format-right h3 {
    margin: 0 0 8px;
}

.format-right h4 {
    margin: 14px 0 8px;
}

.format-right p {
    margin: 0 0 10px;
    max-width: 85ch;
}

.bullets {
    margin: 0 0 10px 18px;
}

.bullets li {
    margin: 6px 0;
}

/* Info box */
.info-box {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    margin: 10px 0 12px;
}

.info-note {
    opacity: 0.9;
    margin-top: 6px;
}

/* Buttons row */
.format-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 12px;
}

/* Inline links */
.inline-link {
    text-decoration: underline;
}

/* Updated text */
.updated {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 0.95em;
}

.muted {
    opacity: 0.75;
}

/* Responsive YouTube embed */
.video-wrap {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 10px;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Team roster */
.team-roster {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Player row */
.player {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 2px 0;
}

/* Player name */
.player-name {
    min-width: 120px;
    font-weight: 600;
    opacity: 0.95;
}

.player-decks {
    display: flex;
    gap: 16px;
}

/* Deck link styling */
.deck-link {
    text-decoration: underline;
    opacity: 0.9;
}