/* === Base reset-ish === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* === Design tokens (best practice) === */
:root {
    --boye-paper: #f4f2ef;
    --boye-ink: #252320;
    --boye-link: #1f4f7f;

    --boye-bg-dark: #020617;
    --boye-bg-mid: #0b1222;

    --boye-accent: #f97316;
    --boye-accent-2: #fb923c;

    --boye-border: #e2ded8;
    --boye-shadow: 0 12px 25px rgba(26, 21, 10, 0.04);
    --boye-shadow-lg: 0 14px 35px rgba(19, 16, 9, 0.08);
    --boye-shadow-dark: 0 18px 40px rgba(0, 0, 0, 0.45);

    --boye-radius-md: 1.25rem;
    --boye-radius-lg: 1.75rem;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--boye-ink);
    background-color: var(--boye-paper);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--boye-link);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

/* === Layout helpers === */
#site-content {
    min-height: 60vh;
}

.boye-front-page {
    background: var(--boye-paper);
}

/* === Header === */
.boye-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 242, 239, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e0ddd8;
}

.boye-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.boye-logo a {
    font-weight: 600;
    font-size: 1.05rem;
}

.boye-primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.boye-primary-nav a {
    text-decoration: none;
    position: relative;
    padding-bottom: 0.15rem;
}

.boye-primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: var(--boye-link);
    transition: width 0.2s ease;
}

.boye-primary-nav a:hover::after,
.boye-primary-nav a:focus::after {
    width: 100%;
}

/* === Footer === */
.boye-site-footer {
    border-top: 1px solid #dedbd5;
    background: #f8f6f3;
    padding: 1.5rem 1.5rem 2rem;
    margin-top: 3rem;
}

.boye-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* === Buttons ===
   Best practice: definér base én gang, undgå dobbelt .boye-button-primary
*/
.boye-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.boye-button-primary {
    background: var(--boye-accent);
    color: #111827;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.boye-button-primary:hover,
.boye-button-primary:focus {
    background: var(--boye-accent-2);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.boye-button-secondary {
    background: transparent;
    color: var(--boye-link);
    border-color: var(--boye-link);
}

.boye-button-secondary:hover,
.boye-button-secondary:focus {
    background: #e9f0f7;
}

.boye-button-ghost {
    border-color: rgba(249, 246, 241, 0.4);
    background-color: transparent;
    color: #f9f6f1;
}

.boye-button-ghost:hover,
.boye-button-ghost:focus {
    border-color: var(--boye-accent);
}

/* === HERO (FRONT) === */
.boye-hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 1.5rem 3rem;
    color: #f9f6f1;
    background: radial-gradient(circle at top right, #f98365 0, #111827 52%, #020617 100%);
}

.boye-hero-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    pointer-events: none;
}

.boye-hero-inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

/* Meta / badge-linje */
.boye-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.boye-hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.boye-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(249, 246, 241, 0.12);
    border: 1px solid rgba(249, 246, 241, 0.35);
    font-size: 0.78rem;
}

.boye-hero-pill-soft {
    background: rgba(248, 187, 133, 0.16);
    border-color: rgba(248, 187, 133, 0.5);
}

.boye-hero-eyebrow {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Layout: to kolonner */
.boye-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 2.4rem;
    align-items: stretch;
}

.boye-hero-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 34rem;
}

.boye-hero-heading {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.boye-hero-subheading {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.boye-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.boye-hero-footnote {
    font-size: 0.82rem;
    opacity: 0.85;
}

/* Sidecard */
.boye-hero-sidecard {
    align-self: stretch;
}

.boye-hero-sidecard-inner {
    height: 100%;
    border-radius: 1.5rem;
    border: 1px solid rgba(249, 246, 241, 0.32);
    background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.16), rgba(15, 23, 42, 0.98));
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: var(--boye-shadow-dark);
}

.boye-hero-side-label {
    margin: 0 0 0.2rem;
    font-size: 0.8rem;
    opacity: 0.85;
}

.boye-hero-side-dates {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.boye-hero-side-location {
    margin: 0 0 0.4rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.boye-hero-side-bullets {
    list-style: disc;
    padding-left: 1.1rem;
    margin: 0.4rem 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.boye-hero-side-bullets li + li {
    margin-top: 0.25rem;
}

/* Ticker / info-bånd nederst */
.boye-hero-ticker {
    margin-top: 1.2rem;
    border-top: 1px solid rgba(249, 246, 241, 0.18);
    padding-top: 0.7rem;
    font-size: 0.78rem;
    opacity: 0.9;
}

.boye-hero-ticker-inner {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.boye-hero-ticker-inner span {
    white-space: nowrap;
}

/* Responsiv */
@media (max-width: 900px) {
    .boye-hero {
        padding-top: 3.5rem;
    }

    .boye-hero-layout {
        grid-template-columns: 1fr;
    }

    .boye-hero-sidecard-inner {
        margin-top: 0.4rem;
    }

    .boye-hero-main {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .boye-hero {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 2.5rem;
    }
}

/* === PROGRAM PREVIEW BLOCK ===
   Opdateret til reference-stilen (mørk/glassy) så den matcher hero
*/
.boye-program-preview-block {
    padding: 3.8rem 1.5rem 4.2rem;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.22), transparent 55%),
        radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.18), transparent 55%),
        var(--boye-bg-dark);
    color: #f9f6f1;
    border-top: 1px solid rgba(249, 246, 241, 0.12);
    border-bottom: 1px solid rgba(249, 246, 241, 0.12);
}

.boye-program-preview-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.boye-program-preview-header {
    margin-bottom: 2rem;
}

.boye-program-preview-title {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
    color: #f9f6f1;
}

.boye-program-preview-intro {
    max-width: 36rem;
    margin: 0;
    opacity: 0.9;
    color: #f9f6f1;
}

.boye-program-preview-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.boye-program-day-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(249, 246, 241, 0.20);
    background: rgba(2, 6, 23, 0.55);
    box-shadow: var(--boye-shadow-dark);
}

.boye-program-day-title {
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
    color: #f9f6f1;
}

.boye-program-day-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.boye-program-day-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(249, 246, 241, 0.16);
}

.boye-program-day-item:first-child {
    border-top: none;
}

.boye-program-day-time {
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0.78;
    color: #f9f6f1;
}

.boye-program-day-session-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f9f6f1;
}

.boye-program-day-session-subtitle {
    font-size: 0.85rem;
    opacity: 0.82;
    color: #f9f6f1;
}

.boye-program-preview-footer {
    margin-top: 2rem;
}

/* Gør “View full program”-knap pæn på mørk baggrund */
.boye-program-preview-block .boye-button-secondary {
    color: #f9f6f1;
    border-color: rgba(249, 246, 241, 0.28);
    background: rgba(249, 246, 241, 0.06);
}

.boye-program-preview-block .boye-button-secondary:hover,
.boye-program-preview-block .boye-button-secondary:focus {
    border-color: rgba(249, 115, 22, 0.9);
    background: rgba(249, 246, 241, 0.08);
}

/* === FRONT PAGE: SALES SECTIONS ===
   Opdateret til reference-stilen (mørk/glassy)
*/
.boye-front-sales {
    padding: 4rem 1.5rem 4.5rem;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 55%),
        radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.14), transparent 55%),
        var(--boye-bg-mid);
    color: #f9f6f1;
}

.boye-front-sales-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Why join */
.boye-front-why-header {
    max-width: 40rem;
    margin-bottom: 1.75rem;
}

.boye-front-why-title {
    margin: 0 0 0.5rem;
    font-size: 1.7rem;
    color: #f9f6f1;
}

.boye-front-why-intro {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #f9f6f1;
}

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

.boye-front-why-card {
    border-radius: 1.3rem;
    border: 1px solid rgba(249, 246, 241, 0.22);
    background: rgba(2, 6, 23, 0.55);
    padding: 1.2rem 1.2rem 1.3rem;
    box-shadow: var(--boye-shadow-dark);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #f9f6f1;
}

.boye-front-why-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(249, 246, 241, 0.10);
    border: 1px solid rgba(249, 246, 241, 0.22);
    color: #f9f6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.boye-front-why-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.boye-front-why-card-text {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Testimonials */
.boye-front-testimonials-header {
    max-width: 40rem;
    margin-bottom: 1.5rem;
}

.boye-front-testimonials-title {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
    color: #f9f6f1;
}

.boye-front-testimonials-intro {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #f9f6f1;
}

.boye-front-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.boye-front-testimonial-card {
    border-radius: 1.4rem;
    border: 1px solid rgba(249, 246, 241, 0.22);
    background: rgba(2, 6, 23, 0.55);
    padding: 1.3rem 1.3rem 1.1rem;
    box-shadow: var(--boye-shadow-dark);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #f9f6f1;
}

.boye-front-testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.5;
}

.boye-front-testimonial-footer {
    font-size: 0.85rem;
    border-top: 1px solid rgba(249, 246, 241, 0.16);
    padding-top: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.boye-front-testimonial-name {
    font-weight: 600;
}

.boye-front-testimonial-country {
    font-weight: 400;
    opacity: 0.8;
    margin-left: 0.2rem;
}

.boye-front-testimonial-role {
    opacity: 0.85;
}

.boye-front-testimonial-link a {
    font-size: 0.8rem;
    text-decoration: none;
    color: #f9f6f1;
    border-bottom: 1px dotted rgba(249, 115, 22, 0.9);
}

.boye-front-testimonial-link a:hover,
.boye-front-testimonial-link a:focus {
    border-bottom-style: solid;
    border-bottom-color: rgba(251, 146, 60, 1);
}

@media (max-width: 720px) {
    .boye-front-sales {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* === FRONT PAGE PARTNERS STRIP ===
   Opdateret til reference-stilen (mørk/glassy)
*/
.boye-front-partners {
    padding: 3.2rem 1.5rem 3.6rem;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.10), transparent 55%),
        var(--boye-bg-dark);
    border-top: 1px solid rgba(249, 246, 241, 0.12);
    color: #f9f6f1;
}

.boye-front-partners-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.boye-front-partners-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.boye-front-partners-eyebrow {
    margin: 0;
    font-size: 0.8rem;
    text-transform: none;
    opacity: 0.85;
    color: #f9f6f1;
}

.boye-front-partners-title {
    margin: 0;
    font-size: 1.2rem;
    color: #f9f6f1;
}

.boye-front-partners-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding: 0.6rem 0.25rem;
}

.boye-front-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0.75rem 1rem;
    border-radius: 1.25rem;
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(249, 246, 241, 0.20);
    box-shadow: var(--boye-shadow-dark);
}

.boye-front-partner img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.9;
}

.boye-front-partner:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.boye-front-partner-name {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #f9f6f1;
}

@media (max-width: 720px) {
    .boye-front-partners {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* === TICKETS ARCHIVE === */
.boye-tickets-archive {
    padding: 4rem 1.5rem 5rem;
    background: var(--boye-paper);
}

.boye-tickets-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.boye-tickets-header h1 {
    margin: 0 0 0.5rem;
}

.boye-tickets-header p {
    margin: 0 0 2rem;
    max-width: 32rem;
    opacity: 0.9;
}

.boye-tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.boye-ticket-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e0dd;
    background: #fffefd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: var(--boye-shadow);
}

.boye-ticket-card--expired {
    opacity: 0.55;
}

.boye-ticket-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.boye-ticket-version {
    font-weight: 600;
}

.boye-ticket-duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

.boye-ticket-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.boye-ticket-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-size: 0.95rem;
}

.boye-ticket-price-amount {
    font-weight: 600;
}

.boye-ticket-price-currency {
    font-size: 0.8rem;
    opacity: 0.9;
}

.boye-ticket-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    font-size: 0.9rem;
}

.boye-ticket-highlights li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.boye-ticket-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.boye-ticket-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.boye-ticket-meta {
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.boye-ticket-cta {
    white-space: nowrap;
}

.boye-ticket-status-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* === Simple responsive tweaks === */
@media (max-width: 720px) {
    .boye-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .boye-primary-nav ul {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .boye-tickets-archive,
    .boye-hero-block,
    .boye-program-preview-block {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* === PROGRAM PAGE === */
.boye-program-page {
    padding: 4rem 1.5rem 5rem;
    background: #fffdf8;
}

.boye-program-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.boye-program-header {
    margin-bottom: 3rem;
}

.boye-program-title {
    margin: 0 0 0.75rem;
    font-size: 2rem;
}

.boye-program-intro > *:first-child {
    margin-top: 0;
}

.boye-program-days {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.boye-program-day {
    border-radius: 1.5rem;
    padding: 1.75rem 1.75rem 1.5rem;
    background: #f7f4f0;
    border: 1px solid #e2ded8;
}

.boye-program-day-heading {
    margin: 0 0 1rem;
    font-size: 1.4rem;
}

.boye-program-day-sessions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.boye-program-session {
    display: grid;
    grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e1db;
}

.boye-program-day-sessions .boye-program-session:first-child {
    border-top: none;
    padding-top: 0;
}

.boye-program-session-left {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    opacity: 0.85;
}

.boye-program-session-time {
    font-weight: 500;
}

.boye-program-session-room {
    font-style: italic;
}

.boye-program-session-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.boye-program-session-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.boye-program-session-subtitle {
    margin: 0.1rem 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.boye-program-session-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.boye-program-session-tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.boye-program-session-track {
    font-size: 0.8rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: #e3edf8;
}

.boye-program-session-type {
    font-size: 0.8rem;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: #eee4ff;
    display: inline-block;
    margin-top: 0.2rem;
}

.boye-program-session-speakers {
    font-size: 0.85rem;
}

.boye-program-session-speakers-label {
    font-weight: 500;
    margin-right: 0.25rem;
}

.boye-program-session-footer {
    margin-top: 0.5rem;
}

.boye-program-session-cta {
    font-size: 0.85rem;
    padding-inline: 1.1rem;
}

/* mobile tweaks */
@media (max-width: 720px) {
    .boye-program-session {
        grid-template-columns: 1fr;
    }

    .boye-program-session-left {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* === SINGLE SESSION === */
.boye-session-single {
    padding: 4rem 1.5rem 5rem;
    background: #fffdf8;
}

.boye-session-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.boye-session-article {
    background: #f7f4f0;
    border-radius: 1.75rem;
    border: 1px solid #e2ded8;
    padding: 2rem 2rem 2.25rem;
    box-shadow: var(--boye-shadow-lg);
}

.boye-session-header {
    margin-bottom: 1.75rem;
}

.boye-session-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.boye-session-day {
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: #e3edf8;
}

.boye-session-type-chip {
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: #eee4ff;
}

.boye-session-title {
    margin: 0 0 0.4rem;
    font-size: 1.8rem;
}

.boye-session-subtitle {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    opacity: 0.9;
}

.boye-session-meta-main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.75rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.boye-session-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.boye-session-meta-label {
    font-size: 0.8rem;
    text-transform: none;
    opacity: 0.75;
}

.boye-session-meta-value {
    font-weight: 500;
}

.boye-session-speakers-summary {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.boye-session-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 880px) {
    .boye-session-layout {
        grid-template-columns: 1fr;
    }
}

.boye-session-content > *:first-child {
    margin-top: 0;
}

.boye-session-content h2,
.boye-session-content h3 {
    margin-top: 1.75rem;
}

.boye-session-content p {
    margin-bottom: 1rem;
}

/* Aside: speakers */
.boye-session-aside-heading {
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

.boye-session-speaker-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.boye-session-speaker-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    padding: 0.9rem;
    border-radius: 1.1rem;
    background: #fdfbf8;
    border: 1px solid #e2ded8;
}

.boye-session-speaker-photo-wrap {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 999px;
}

.boye-session-speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boye-session-speaker-info {
    font-size: 0.9rem;
}

.boye-session-speaker-name {
    margin: 0 0 0.1rem;
    font-size: 0.95rem;
}

.boye-session-speaker-role {
    margin: 0 0 0.4rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.boye-session-speaker-bio {
    margin: 0 0 0.4rem;
    font-size: 0.85rem;
}

.boye-session-speaker-links a {
    font-size: 0.82rem;
    margin-right: 0.75rem;
}

/* === SPEAKERS PAGE === */
.boye-speakers-page {
    padding: 4rem 1.5rem 5rem;
    background:
        radial-gradient(circle at top left, #ffe9d5 0, transparent 55%),
        radial-gradient(circle at bottom right, #dde8ff 0, transparent 55%),
        #f4f2ef;
}

.boye-speakers-inner {
    max-width: 1120px;
    margin: 0 auto;
}

/* Header */
.boye-speakers-header {
    margin-bottom: 3rem;
    text-align: left;
}

.boye-speakers-title {
    margin: 0 0 0.75rem;
    font-size: 2.2rem;
    line-height: 1.1;
}

.boye-speakers-intro {
    max-width: 40rem;
    font-size: 0.98rem;
    opacity: 0.9;
}

.boye-speakers-intro > *:first-child {
    margin-top: 0;
}

/* Groups container */
.boye-speakers-groups {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Hver gruppe-sektion */
.boye-speakers-group {
    border-radius: 1.75rem;
    border: 1px solid #e2ded8;
    background: rgba(253, 251, 248, 0.96);
    padding: 1.75rem 1.75rem 2rem;
    box-shadow: 0 12px 32px rgba(19, 14, 8, 0.08);
}

.boye-speakers-group-header {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.boye-speakers-group-title {
    margin: 0;
    font-size: 1.45rem;
}

.boye-speakers-group-description {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Grid af speakers */
.boye-speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem 1.4rem;
}

/* Speaker-card */
.boye-speaker-card {
    position: relative;
    border-radius: 1.3rem;
    border: 1px solid #e2ded8;
    background: #f9f6f1;
    padding: 0.9rem 1rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        border-color 0.12s ease,
        background 0.12s ease;
}

.boye-speaker-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(19, 14, 8, 0.16);
    border-color: #d6c7b4;
    background: #fdfbf8;
}

/* Foto */
.boye-speaker-card-photo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}

.boye-speaker-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tekstdelen */
.boye-speaker-card-body {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.boye-speaker-card-name {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
}

.boye-speaker-card-role {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.boye-speaker-card-bio {
    margin: 0.3rem 0 0;
    font-size: 0.84rem;
    opacity: 0.9;
}

/* Links-indikator */
.boye-speaker-card-links {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    opacity: 0.8;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.boye-speaker-link-label {
    border-bottom: 1px dotted currentColor;
}

/* Gør hele kortet klikbart hvis der er et link */
.boye-speaker-card a {
    text-decoration: none;
    color: inherit;
}

.boye-speaker-card a:hover .boye-speaker-card-name,
.boye-speaker-card a:focus .boye-speaker-card-name {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 720px) {
    .boye-speakers-page {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .boye-speakers-group {
        padding: 1.4rem 1.4rem 1.7rem;
    }

    .boye-speaker-card {
        padding: 0.8rem 0.9rem;
    }
}

/* === SOCIAL EVENTS PAGE === */
.boye-social-page {
    padding: 4rem 1.5rem 5rem;
    background:
        radial-gradient(circle at top right, #ffe3df 0, transparent 55%),
        radial-gradient(circle at bottom left, #e0f0ff 0, transparent 55%),
        #f4f2ef;
}

.boye-social-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.boye-social-header {
    margin-bottom: 3rem;
}

.boye-social-title {
    margin: 0 0 0.75rem;
    font-size: 2rem;
}

.boye-social-intro {
    max-width: 40rem;
    font-size: 0.98rem;
    opacity: 0.9;
}

.boye-social-intro > *:first-child {
    margin-top: 0;
}

/* Days */
.boye-social-days {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.boye-social-day {
    border-radius: 1.75rem;
    border: 1px solid #e2ded8;
    background: rgba(253, 251, 248, 0.96);
    padding: 1.8rem 1.8rem 2rem;
    box-shadow: 0 12px 32px rgba(19, 14, 8, 0.08);
}

.boye-social-day-heading {
    margin: 0 0 1.25rem;
    font-size: 1.4rem;
}

/* Event cards */
.boye-social-events-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.boye-social-event-card {
    border-top: 1px solid #e5e1db;
    padding-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 1.2fr);
    gap: 1.25rem;
}

.boye-social-events-list .boye-social-event-card:first-child {
    border-top: none;
    padding-top: 0;
}

@media (max-width: 800px) {
    .boye-social-event-card {
        grid-template-columns: 1fr;
    }
}

.boye-social-event-top {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.boye-social-event-time-room {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.boye-social-event-time {
    font-weight: 600;
}

.boye-social-event-room {
    font-style: italic;
}

.boye-social-event-tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.boye-social-event-track {
    font-size: 0.78rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: #ffe9d9;
}

/* Main content */
.boye-social-event-main {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.boye-social-event-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.boye-social-event-subtitle {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Speakers */
.boye-social-event-speakers {
    margin-top: 0.3rem;
    font-size: 0.85rem;
}

.boye-social-event-speakers-label {
    font-weight: 500;
    margin-right: 0.25rem;
}

.boye-social-event-speakers-list a {
    text-decoration: none;
}

.boye-social-event-speakers-list a:hover,
.boye-social-event-speakers-list a:focus {
    text-decoration: underline;
}

/* CTA */
.boye-social-event-footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.boye-social-event-cta {
    font-size: 0.85rem;
    padding-inline: 1.1rem;
}

/* Mobile padding just a bit tighter */
@media (max-width: 720px) {
    .boye-social-page {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .boye-social-day {
        padding: 1.5rem 1.4rem 1.7rem;
    }
}

/* === PARTNERS PAGE === */
.boye-partners-page {
    padding: 4rem 1.5rem 5rem;
    background:
        radial-gradient(circle at top left, #ffe8d5 0, transparent 55%),
        radial-gradient(circle at bottom right, #ddeeff 0, transparent 55%),
        #f4f2ef;
}

.boye-partners-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.boye-partners-header {
    margin-bottom: 3rem;
}

.boye-partners-title {
    margin: 0 0 0.75rem;
    font-size: 2rem;
}

.boye-partners-intro {
    max-width: 40rem;
    font-size: 0.98rem;
    opacity: 0.9;
}

.boye-partners-groups {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.boye-partners-group-title {
    margin: 0 0 1rem;
    font-size: 1.4rem;
}

.boye-partners-group {
    padding: 1.75rem 1.75rem 2rem;
    border-radius: 1.75rem;
    border: 1px solid #e2ded8;
    background: rgba(253, 251, 248, 0.96);
    box-shadow: 0 12px 30px rgba(18, 14, 9, 0.08);
}

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

.boye-partner-card {
    border-radius: 1.25rem;
    border: 1px solid #e3dfd8;
    background: #f9f6f1;
    padding: 1rem;
    text-align: center;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        border-color 0.12s ease,
        background 0.12s ease;
}

.boye-partner-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.boye-partner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(19, 14, 8, 0.16);
    border-color: #d6c7b4;
    background: #fdfbf8;
}

.boye-partner-logo-wrap {
    max-width: 160px;
    margin: 0 auto 0.75rem;
}

.boye-partner-logo-wrap img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.boye-partner-name {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 600;
}

.boye-partner-blurb {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

@media (max-width: 720px) {
    .boye-partners-page {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .boye-partners-group {
        padding: 1.5rem 1.4rem 1.8rem;
    }
}

/* =========================================================
   EVERYTHING-STYLE DARK SKIN (append at end of file)
   ========================================================= */

/* 1) Global dark canvas + nicer focus */
body {
  background: var(--boye-bg-dark);
  color: #f9f6f1;
}

a { color: #f9f6f1; }
a:hover, a:focus { text-decoration: none; }

:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.9);
  outline-offset: 3px;
}

/* 2) Header becomes dark-glass (matches hero) */
.boye-site-header {
  background: rgba(2, 6, 23, 0.72);
  border-bottom: 1px solid rgba(249, 246, 241, 0.14);
}

.boye-logo a { color: #f9f6f1; }

.boye-primary-nav a { color: #f9f6f1; }
.boye-primary-nav a::after { background: rgba(249, 115, 22, 0.9); }

/* 3) Footer in dark */
.boye-site-footer {
  background: rgba(2, 6, 23, 0.85);
  border-top: 1px solid rgba(249, 246, 241, 0.14);
  color: #f9f6f1;
}

/* 4) Buttons: keep your orange primary, make secondary “dark glass” */
.boye-button-secondary {
  color: #f9f6f1;
  border-color: rgba(249, 246, 241, 0.24);
  background: rgba(249, 246, 241, 0.06);
}
.boye-button-secondary:hover,
.boye-button-secondary:focus {
  border-color: rgba(249, 115, 22, 0.9);
  background: rgba(249, 246, 241, 0.08);
}

/* 5) Shared: dark page backgrounds (gentle gradients) */
.boye-tickets-archive,
.boye-program-page,
.boye-session-single,
.boye-speakers-page,
.boye-social-page,
.boye-partners-page {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 55%),
    radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.10), transparent 55%),
    var(--boye-bg-dark) !important;
  color: #f9f6f1;
}

/* 6) Make “surface cards” glassy everywhere */
.boye-ticket-card,
.boye-program-day,
.boye-session-article,
.boye-speakers-group,
.boye-speaker-card,
.boye-social-day,
.boye-partners-group,
.boye-partner-card {
  background: rgba(2, 6, 23, 0.55) !important;
  border: 1px solid rgba(249, 246, 241, 0.20) !important;
  box-shadow: var(--boye-shadow-dark) !important;
  color: #f9f6f1;
}

/* 7) Typography polish (more Everything-like) */
.boye-tickets-header h1,
.boye-program-title,
.boye-session-title,
.boye-speakers-title,
.boye-social-title,
.boye-partners-title {
  color: #f9f6f1;
  letter-spacing: -0.02em;
}

.boye-tickets-header p,
.boye-program-intro,
.boye-session-subtitle,
.boye-speakers-intro,
.boye-social-intro,
.boye-partners-intro {
  color: rgba(249, 246, 241, 0.88);
}

/* 8) Tickets: make pricing + meta feel premium */
.boye-ticket-card {
  border-radius: 1.6rem;
}
.boye-ticket-duration,
.boye-ticket-price-currency,
.boye-ticket-meta {
  color: rgba(249, 246, 241, 0.80);
}
.boye-ticket-highlights li::before { color: rgba(249, 115, 22, 0.95); }
.boye-ticket-card--expired { opacity: 0.55; }

/* 9) Program page: dark separators + chips */
.boye-program-session {
  border-top: 1px solid rgba(249, 246, 241, 0.14) !important;
}
.boye-program-day-sessions .boye-program-session:first-child {
  border-top: none !important;
}

.boye-program-session-left { color: rgba(249, 246, 241, 0.82); }
.boye-program-session-subtitle { color: rgba(249, 246, 241, 0.86); }

.boye-program-session-track,
.boye-session-day,
.boye-session-type-chip,
.boye-program-session-type {
  background: rgba(249, 246, 241, 0.08) !important;
  border: 1px solid rgba(249, 246, 241, 0.16);
  color: rgba(249, 246, 241, 0.92) !important;
}

/* 10) Single session: links + aside cards */
.boye-session-article { border-radius: 2rem; }
.boye-session-meta-label { color: rgba(249, 246, 241, 0.70); }
.boye-session-meta-value { color: rgba(249, 246, 241, 0.95); }

.boye-session-speaker-card {
  background: rgba(2, 6, 23, 0.45) !important;
  border-color: rgba(249, 246, 241, 0.18) !important;
}
.boye-session-speaker-role { color: rgba(249, 246, 241, 0.82); }
.boye-session-speaker-links a {
  color: rgba(249, 246, 241, 0.92);
  border-bottom: 1px dotted rgba(249, 115, 22, 0.9);
}
.boye-session-speaker-links a:hover,
.boye-session-speaker-links a:focus {
  border-bottom-style: solid;
}

/* 11) Speakers: cards become more “product-like” */
.boye-speaker-card {
  border-radius: 1.5rem !important;
}
.boye-speaker-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.45) !important;
  background: rgba(2, 6, 23, 0.62) !important;
}
.boye-speaker-card-role,
.boye-speakers-group-description {
  color: rgba(249, 246, 241, 0.82);
}

/* 12) Social events: day sections + track chips */
.boye-social-event-card {
  border-top: 1px solid rgba(249, 246, 241, 0.14) !important;
}
.boye-social-event-track {
  background: rgba(249, 246, 241, 0.08) !important;
  border: 1px solid rgba(249, 246, 241, 0.16);
  color: rgba(249, 246, 241, 0.92);
}

/* 13) Partners: logos look curated */
.boye-partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.45) !important;
  background: rgba(2, 6, 23, 0.62) !important;
}
.boye-partner-logo-wrap img {
  filter: grayscale(1);
  opacity: 0.9;
}
.boye-partner-card:hover .boye-partner-logo-wrap img {
  filter: grayscale(0);
  opacity: 1;
}
.boye-partner-blurb { color: rgba(249, 246, 241, 0.82); }

/* 14) Make section paddings feel more editorial */
.boye-tickets-archive,
.boye-program-page,
.boye-session-single,
.boye-speakers-page,
.boye-social-page,
.boye-partners-page {
  padding-top: 4.5rem;
}

/* Mobile: keep legibility */
@media (max-width: 720px) {
  .boye-ticket-card,
  .boye-program-day,
  .boye-session-article,
  .boye-speakers-group,
  .boye-social-day,
  .boye-partners-group {
    box-shadow: none !important;
  }
}
/* Sales wrappers */
.section--sales { padding: clamp(40px, 6vw, 96px) 0; }
.section--sales .sales-block { margin-bottom: clamp(26px, 4vw, 56px); }
.section--sales .sales-block:last-child { margin-bottom: 0; }

/* Head split */
.section--sales .sales-head{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: clamp(16px, 3vw, 36px);
  align-items:start;
  margin-bottom: clamp(16px, 3vw, 26px);
}
.section--sales .sales-head--compact{ grid-template-columns: 1.1fr .9fr; }
.section--sales .sales-head__card{ padding: 18px; }

/* Replace the old star with a premium "mark" */
.section--sales .feature__mark{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

/* Testimonials grid: 3 columns on desktop */
.section--sales .boye-front-testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 980px){
  .section--sales .sales-head{ grid-template-columns: 1fr; }
  .section--sales .boye-front-testimonials-grid{ grid-template-columns: 1fr; }
}
/* === FRONT PAGE: SPEAKERS PREVIEW ===
   Dark/glassy, editorial — matches hero/program/sales
*/
.boye-front-speakers {
    padding: 3.8rem 1.5rem 4.2rem;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), transparent 55%),
        radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.10), transparent 55%),
        var(--boye-bg-dark);
    color: #f9f6f1;
    border-top: 1px solid rgba(249, 246, 241, 0.12);
    border-bottom: 1px solid rgba(249, 246, 241, 0.12);
}

.boye-front-speakers-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.boye-front-speakers-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.8rem;
}

.boye-front-speakers-header-copy {
    max-width: 44rem;
}

.boye-front-speakers-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    text-transform: none;
    opacity: 0.85;
    color: #f9f6f1;
}

.boye-front-speakers-title {
    margin: 0 0 0.6rem;
    font-size: 1.7rem;
    color: #f9f6f1;
    letter-spacing: -0.02em;
}

.boye-front-speakers-intro {
    margin: 0;
    max-width: 40rem;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #f9f6f1;
}

/* Grid */
.boye-front-speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

/* Card */
.boye-front-speaker-card {
    border-radius: 1.4rem;
    border: 1px solid rgba(249, 246, 241, 0.20);
    background: rgba(2, 6, 23, 0.55);
    box-shadow: var(--boye-shadow-dark);
    overflow: hidden;
}

.boye-front-speaker-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Portrait */
.boye-front-speaker-photo-wrap {
    aspect-ratio: 4 / 5;
    border-bottom: 1px solid rgba(249, 246, 241, 0.16);
    background: rgba(249, 246, 241, 0.06);
    position: relative;
}

.boye-front-speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    opacity: 0.92;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.boye-front-speaker-photo-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(249, 246, 241, 0.12), transparent 60%),
        rgba(249, 246, 241, 0.04);
}

/* Body */
.boye-front-speaker-card-body {
    padding: 1rem 1rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.boye-front-speaker-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #f9f6f1;
}

.boye-front-speaker-meta {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.85;
}

.boye-front-speaker-more {
    font-size: 0.82rem;
    opacity: 0.9;
    border-bottom: 1px dotted rgba(249, 115, 22, 0.9);
    width: fit-content;
    margin-top: 0.2rem;
}

/* Hover */
.boye-front-speaker-card:hover .boye-front-speaker-photo {
    transform: scale(1.045);
    opacity: 1;
}
.boye-front-speaker-card:hover .boye-front-speaker-more {
    border-bottom-style: solid;
    border-bottom-color: rgba(251, 146, 60, 1);
}

/* Responsive */
@media (max-width: 900px) {
    .boye-front-speakers-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .boye-front-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .boye-front-speakers-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 720px) {
    .boye-front-speakers {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}
/* Speakers page: links inside front-style cards */
.boye-front-speaker-name a,
.boye-front-speaker-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(249, 115, 22, 0.9);
}
.boye-front-speaker-name a:hover,
.boye-front-speaker-name a:focus,
.boye-front-speaker-meta a:hover,
.boye-front-speaker-meta a:focus {
  border-bottom-style: solid;
}
/* Tickets: feature Super Early Bird */
.boye-ticket-card--featured{
  border-color: rgba(249, 115, 22, 0.55) !important;
  background: rgba(2, 6, 23, 0.70) !important;
}
/* Tickets: grouped layout */
.boye-ticket-groups{
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.boye-ticket-group{
  border-radius: 1.75rem;
  border: 1px solid rgba(249, 246, 241, 0.14);
  background: rgba(2, 6, 23, 0.40);
  box-shadow: var(--boye-shadow-dark);
  padding: 1.6rem 1.6rem 1.8rem;
}

.boye-ticket-group-header{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(249, 246, 241, 0.12);
  padding-bottom: 0.9rem;
}

.boye-ticket-group-title{
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #f9f6f1;
}

.boye-ticket-group-sub{
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  color: #f9f6f1;
}

.boye-ticket-group-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

/* Make the "Super Early" group slightly more special */
.boye-ticket-group--super_early{
  border-color: rgba(249, 115, 22, 0.30);
  background: rgba(2, 6, 23, 0.55);
}

/* Responsive */
@media (max-width: 980px){
  .boye-ticket-group-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .boye-ticket-group{ padding: 1.25rem 1.25rem 1.35rem; }
  .boye-ticket-group-header{ flex-direction: column; align-items: flex-start; }
  .boye-ticket-group-grid{ grid-template-columns: 1fr; }
}
/* Front: tickets preview */
.boye-front-tickets{
  padding: clamp(44px, 6vw, 92px) 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(249,115,22,.16), transparent 55%),
    radial-gradient(circle at bottom left, rgba(96,165,250,.10), transparent 55%),
    var(--boye-bg-dark);
  border-top: 1px solid rgba(249,246,241,.10);
  border-bottom: 1px solid rgba(249,246,241,.10);
  color: #f9f6f1;
}
.boye-front-tickets-inner{ max-width:1120px; margin:0 auto; }
.boye-front-tickets-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap: 1.25rem; margin-bottom: 1.2rem;
}
.boye-front-tickets-kicker{
  margin:0 0 .4rem; font-size:.82rem; opacity:.85;
}
.boye-front-tickets-title{ margin:0 0 .35rem; font-size:1.7rem; letter-spacing:-.02em; }
.boye-front-tickets-intro{ margin:0; max-width: 44rem; opacity:.9; }
.boye-front-tickets-grid{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.1rem;
}
.boye-front-ticket-card{
  border-radius: 1.5rem;
  border: 1px solid rgba(249,246,241,.18);
  background: rgba(2,6,23,.55);
  box-shadow: var(--boye-shadow-dark);
  padding: 1.15rem 1.15rem 1.2rem;
  display:flex; flex-direction:column; gap:.9rem;
}
.boye-front-ticket-top{ display:flex; flex-direction:column; gap:.6rem; }
.boye-front-ticket-duration{ font-size:.9rem; opacity:.9; }
.boye-front-ticket-prices{ display:flex; gap:.9rem; flex-wrap:wrap; opacity:.95; }
.boye-front-ticket-prices strong{ font-weight:650; }
.boye-front-ticket-points{
  margin:0; padding-left: 1.05rem;
  display:flex; flex-direction:column; gap:.35rem;
  font-size:.9rem;
}
.boye-front-ticket-points li::marker{ color: rgba(249,115,22,.95); }
.boye-front-ticket-bottom{ margin-top:auto; display:flex; justify-content:flex-end; }
.boye-front-ticket-note{ font-size:.85rem; opacity:.8; }

@media (max-width: 980px){
  .boye-front-tickets-head{ flex-direction:column; align-items:flex-start; }
  .boye-front-tickets-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .boye-front-tickets-grid{ grid-template-columns: 1fr; }
}
/* Featured ticket card */
.boye-front-ticket-card.is-featured{
  border-color: rgba(249,115,22,.55);
  background: radial-gradient(circle at top left, rgba(249,115,22,.14), rgba(2,6,23,.60));
  position: relative;
}

.boye-front-ticket-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .78rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(249,115,22,.16);
  border: 1px solid rgba(249,115,22,.55);
  color: rgba(249,246,241,.95);
}
/* Front tickets – editorial layout fix */
@media (min-width: 981px){
  .boye-front-tickets-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "featured right1"
      "featured right2";
    gap: 14px;
    align-items: stretch;
  }

  .boye-front-ticket-card.is-featured{
    grid-area: featured;
  }

  .boye-front-tickets-grid .boye-front-ticket-card:not(.is-featured):nth-of-type(2){
    grid-area: right1;
  }

  .boye-front-tickets-grid .boye-front-ticket-card:not(.is-featured):nth-of-type(3){
    grid-area: right2;
  }
}

/* Card polish */
.boye-front-ticket-card{
  border-radius: 1.4rem;
  padding: 1.05rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 280px;
}

.boye-front-ticket-top{
  gap: .5rem;
}

.boye-front-ticket-duration{
  font-size: .86rem;
  opacity: .85;
}

.boye-front-ticket-prices{
  gap: .8rem;
  font-size: .95rem;
}

.boye-front-ticket-points{
  margin-top: .25rem;
  font-size: .88rem;
  opacity: .95;
}

.boye-front-ticket-bottom{
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: .35rem;
}

/* Featured should feel premium – not “giant empty” */
.boye-front-ticket-card.is-featured{
  padding: 1.25rem 1.25rem 1.25rem;
  border-color: rgba(249,115,22,.55);
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(249,115,22,.18), transparent 55%),
    rgba(2,6,23,.58);
}

/* Badge placement/size */
.boye-front-ticket-badge{
  top: 12px;
  right: 12px;
  font-size: .76rem;
  padding: .22rem .6rem;
  opacity: .92;
}

/* Button sizing feels calmer */
.boye-front-ticket-card .boye-button-primary{
  padding: .62rem 1.15rem;
  font-size: .92rem;
}

/* Tablet */
@media (max-width: 980px){
  .boye-front-tickets-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
  }
  .boye-front-ticket-card{ min-height: 260px; }
}

/* Mobile */
@media (max-width: 560px){
  .boye-front-tickets-grid{ grid-template-columns: 1fr; }
}
/* Tickets front: stop huge empty space */
.boye-front-ticket-card{
  min-height: 0;
  padding-bottom: .95rem;
}

.boye-front-ticket-points{
  display: -webkit-box;
  -webkit-line-clamp: 3;          /* max 3 bullets/linjer */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bottom bar (CTA always sits on a base) */
.boye-front-ticket-bottom{
  margin-top: 0;
  padding-top: .9rem;
  border-top: 1px solid rgba(249,246,241,.10);
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

/* Featured: give it a tighter “hero pricing” look */
.boye-front-ticket-card.is-featured .boye-front-ticket-prices{
  font-size: 1.08rem;
}
.boye-front-ticket-card.is-featured .boye-front-ticket-duration{
  font-size: .92rem;
}
/* Featured: compact price panel */
.boye-front-ticket-pricepanel{
  border: 1px solid rgba(249,246,241,.12);
  background: rgba(255,255,255,.03);
  border-radius: 1.1rem;
  padding: .75rem .85rem;
}

.boye-front-ticket-card.is-featured .boye-front-ticket-pricepanel{
  border-color: rgba(249,115,22,.28);
  background:
    radial-gradient(600px 220px at 15% 10%, rgba(249,115,22,.12), transparent 60%),
    rgba(255,255,255,.03);
}

.boye-front-ticket-card.is-featured .boye-front-ticket-prices{
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.boye-front-ticket-card.is-featured .boye-front-ticket-prices strong{
  font-weight: 700;
}

/* Make bullets feel less “lost” */
.boye-front-ticket-points{
  max-width: 56ch; /* stops super wide lines */
  font-size: .9rem;
  opacity: .92;
}

/* Clamp to avoid giant whitespace */
.boye-front-ticket-points{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA bar = solid baseline */
.boye-front-ticket-bottom{
  margin-top: .25rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(249,246,241,.10);
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

/* Reduce “dead height” in featured */
.boye-front-ticket-card{
  min-height: 0;
}
/* NAV: dark glass + mobile drawer */
.boye-site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(249,246,241,.12);
}

.boye-header-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.boye-logo a{ color:#f9f6f1; font-weight:600; letter-spacing:-.01em; }

.boye-nav-toggle{
  display: none;
  align-items:center;
  gap:.6rem;
  border: 1px solid rgba(249,246,241,.18);
  background: rgba(249,246,241,.06);
  color:#f9f6f1;
  border-radius: 999px;
  padding: .55rem .9rem;
  cursor: pointer;
}
.boye-nav-toggle-icon{
  width: 18px; height: 12px; position: relative; display:inline-block;
}
.boye-nav-toggle-icon::before,
.boye-nav-toggle-icon::after{
  content:""; position:absolute; left:0; right:0; height:2px;
  background: rgba(249,246,241,.9);
  border-radius: 99px;
}
.boye-nav-toggle-icon::before{ top:0; box-shadow: 0 5px 0 rgba(249,246,241,.9); }
.boye-nav-toggle-icon::after{ bottom:0; }

.boye-primary-nav{
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.boye-primary-nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 1.1rem;
  align-items:center;
  font-size: .95rem;
}

.boye-primary-nav a{
  color:#f9f6f1;
  text-decoration:none;
  opacity:.9;
  padding: .2rem 0;
  position: relative;
}
.boye-primary-nav a:hover,
.boye-primary-nav a:focus{ opacity:1; }
.boye-primary-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:-.25rem;
  height:2px; width:0;
  background: rgba(249,115,22,.9);
  transition: width .2s ease;
}
.boye-primary-nav a:hover::after,
.boye-primary-nav a:focus::after{ width:100%; }

.boye-nav-cta{ margin-left: .25rem; }

/* Mobile */
@media (max-width: 920px){
  .boye-nav-toggle{ display: inline-flex; }

  .boye-primary-nav{
    position: fixed;
    inset: 62px 12px auto 12px;
    max-height: calc(100vh - 86px);
    overflow: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .9rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(2,6,23,.92);
    border: 1px solid rgba(249,246,241,.14);
    box-shadow: var(--boye-shadow-dark);
  }
  .boye-primary-nav.is-open{ display:flex; }

  .boye-primary-nav-list{
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
  }
  .boye-primary-nav-list a{
    padding: .7rem .6rem;
    border-radius: .9rem;
  }
  .boye-primary-nav-list a:hover,
  .boye-primary-nav-list a:focus{
    background: rgba(249,246,241,.06);
  }

  .boye-nav-cta{ margin-left: 0; padding-top: .4rem; }
  .boye-nav-cta .boye-button{ width:100%; }
}

/* Optional: prevent scroll when open */
html.boye-nav-open, html.boye-nav-open body{ overflow:hidden; }
/* NAV polish */
.boye-primary-nav a{
  text-decoration: none;
}

.boye-primary-nav a:hover,
.boye-primary-nav a:focus{
  text-decoration: none;
}

/* Menu items feel “glassy”, not naked links */
.boye-primary-nav-list a{
  display: inline-flex;
  align-items: center;
  padding: .5rem .7rem;
  border-radius: 999px;
  opacity: .92;
  transition: background .15s ease, opacity .15s ease, transform .15s ease;
}

.boye-primary-nav-list a:hover,
.boye-primary-nav-list a:focus{
  background: rgba(249,246,241,.06);
  opacity: 1;
}

/* Underline stays subtle (via ::after) */
.boye-primary-nav a::after{
  bottom: .15rem;
  left: .7rem;
  right: .7rem;
  width: auto;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.boye-primary-nav a:hover::after,
.boye-primary-nav a:focus::after{
  transform: scaleX(1);
}

/* Current page looks “selected” */
.boye-primary-nav-list .current-menu-item > a,
.boye-primary-nav-list .current_page_item > a{
  background: rgba(249,246,241,.08);
  border: 1px solid rgba(249,246,241,.12);
  opacity: 1;
}

/* CTA button must NEVER underline */
.boye-nav-cta a,
.boye-nav-cta a:hover,
.boye-nav-cta a:focus{
  text-decoration: none !important;
}
.boye-nav-cta .boye-button-primary{
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

/* Mobile: make items full-width and calm */
@media (max-width: 920px){
  .boye-primary-nav-list a{
    width: 100%;
    justify-content: space-between;
    padding: .8rem .85rem;
  }

  .boye-primary-nav a::after{
    display: none; /* cleaner in drawer */
  }
}
/* NAV CTA – never underline, ever */
.boye-nav-cta a,
.boye-nav-cta a:hover,
.boye-nav-cta a:focus,
.boye-nav-cta a::after,
.boye-nav-cta a:hover::after,
.boye-nav-cta a:focus::after{
  text-decoration: none !important;
  border-bottom: none !important;
  width: auto !important;
  transform: none !important;
}
.boye-nav-cta .boye-button{
  padding: .75rem 1.6rem; /* mere Everything-agtigt */
  line-height: 1;
}
.boye-nav-cta .boye-button-primary{
  font-size: .9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
/* === SPEAKERS GRID: FORCE 4 COLS EVERYWHERE === */

/* Speakers page */
.boye-speakers-grid{
  grid-template-columns: repeat(4, 1fr);
}

/* Front page speakers section */
.section--speakers .speakers-grid{
  grid-template-columns: repeat(4, 1fr);
}

/* Tablet */
@media (max-width: 1100px){
  .boye-speakers-grid,
  .section--speakers .speakers-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 720px){
  .boye-speakers-grid,
  .section--speakers .speakers-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px){
  .boye-speakers-grid,
  .section--speakers .speakers-grid{
    grid-template-columns: 1fr;
  }
}
/* Front speakers grid: 4 columns desktop */
.boye-front-speakers-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; /* hvis du allerede har gap, kan du fjerne denne */
}

/* Tablet */
@media (max-width: 1100px){
  .boye-front-speakers-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 720px){
  .boye-front-speakers-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px){
  .boye-front-speakers-grid{
    grid-template-columns: 1fr;
  }
}
.boye-logo img{
  height: 64px;
  width: auto;
  display: block;
}
.boye-logo{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.boye-logo-tagline{
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 0.15rem;
}
.boye-logo{
  display:flex;
  flex-direction:column;
  gap: .18rem;
  line-height:1.1;
}

.boye-logo-link{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.boye-logo-img{
  height: 32px;
  width: auto;
  display:block;
}

.boye-logo-tagline{
  font-size: .75rem;
  opacity: .75;
}
.boye-nav-toggle {
  pointer-events: auto;
  touch-action: manipulation;
}
/* -------------------------------------------------
   1️⃣  Større logoer – kun for HEADLINE‑PARTNERS
   ------------------------------------------------- */

/* Øg bredden på logo‑containeren i headline‑gruppen */
.boye-partners-group--headline .boye-partner-logo-wrap {
    max-width: 240px;          /* bredere end standard 160 px */
    margin: 0 auto 1rem;      /* lidt ekstra luft under logoet */
}

/* Gør billedet større – men behold proportionerne */
.boye-partners-group--headline .boye-partner-logo-wrap img {
    max-width: 100%;           /* fyld containeren */
    max-height: 120px;         /* højere end standard 64 px */
    object-fit: contain;       /* bevar hele logoet */
}

/* (Valgfrit) Giv kortet lidt ekstra indvendig plads så logoet får luft */
.boye-partners-group--headline .boye-partner-card {
    padding: 1.6rem 1.6rem 1.8rem;   /* lidt større end de andre kort */
}

/* -------------------------------------------------
   2️⃣  Responsiv tilpasning – mobil (≤ 720 px)
   ------------------------------------------------- */
@media (max-width: 720px) {
    /* Mindre bredde på mobil, så logoet stadig passer */
    .boye-partners-group--headline .boye-partner-logo-wrap {
        max-width: 180px;
    }
    .boye-partners-group--headline .boye-partner-logo-wrap img {
        max-height: 90px;
    }
}
/* -------------------------------------------------
   1️⃣  Større logoer – kun i front‑partners‑stripen
   ------------------------------------------------- */

/* Gør containeren lidt bredere, så logoet får plads */
.boye-front-partners .boye-front-partner {
    min-height: 80px;               /* lidt højere end 64 px */
    padding: 1rem 1.2rem;           /* mere luft omkring logoet */
}

/* Øg selve billedets maksimale dimensioner */
.boye-front-partners .boye-front-partner img {
    max-height: 70px;               /* fra 40 px → 70 px */
    max-width: 200px;               /* fra 140 px → 200 px */
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.9;
    transition: filter .2s ease, opacity .2s ease;
}

/* Hover‑effekt bevarer den eksisterende overgang */
.boye-front-partners .boye-front-partner:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsiv tilpasning – tablet og mobil */
@media (max-width: 920px) {
    .boye-front-partners .boye-front-partner {
        min-height: 70px;
        padding: 0.9rem 1rem;
    }
    .boye-front-partners .boye-front-partner img {
        max-height: 60px;
        max-width: 170px;
    }
}
@media (max-width: 720px) {
    .boye-front-partners .boye-front-partner {
        min-height: 60px;
        padding: 0.8rem 0.9rem;
    }
    .boye-front-partners .boye-front-partner img {
        max-height: 50px;
        max-width: 140px;   /* tilbage til en mere kompakt størrelse på små skærme */
    }
}
/* === Program rebuild === */
.boye-page-kicker {
    margin: 0 0 0.75rem;
    color: #d96f1f;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.boye-program-page {
    background: #f4f2ef;
    color: #252320;
}

.boye-program-inner {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

.boye-program-header {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(10,16,33,0.98), rgba(17,27,53,0.98));
    color: #f6f1ea;
}

.boye-program-header .boye-page-kicker,
.boye-program-header h1,
.boye-program-header p,
.boye-program-header a,
.boye-program-header li {
    color: inherit;
}

.boye-program-title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 0.95;
}

.boye-program-intro {
    max-width: 70ch;
    margin-top: 1rem;
    color: rgba(246,241,234,0.86);
}

.boye-program-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.boye-program-overview-day,
.boye-program-day-detail,
.boye-program-track-day {
    padding: 1.5rem;
    border: 1px solid #ddd6cf;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(18, 19, 23, 0.06);
}

.boye-program-overview-day-header h2,
.boye-program-day-detail-heading h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.boye-program-overview-block + .boye-program-overview-block {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid #ece6df;
}

.boye-program-overview-block h3 {
    margin: 0 0 0.8rem;
    font-size: 1rem;
}

.boye-program-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.boye-program-link-list li {
    display: grid;
    gap: 0.2rem;
}

.boye-program-link-list span {
    color: #665f58;
    font-size: 0.92rem;
}

.boye-program-overview-cta {
    margin-top: 1.5rem;
}

.boye-program-day-detail-heading {
    display: flex;
    gap: 1rem;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.boye-program-day-detail-count {
    color: #665f58;
    font-weight: 600;
}

.boye-program-session-stack {
    display: grid;
    gap: 1rem;
}

.boye-program-session-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid #ece6df;
    border-radius: 20px;
    background: #fbfaf8;
}

.boye-program-session-card-time {
    display: grid;
    gap: 0.35rem;
    align-content: start;
}

.boye-program-session-card-clock {
    font-size: 1.05rem;
    font-weight: 700;
}

.boye-program-session-card-room {
    color: #665f58;
    font-size: 0.92rem;
}

.boye-program-session-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.boye-program-chip {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #efebe5;
    color: #252320;
    font-size: 0.82rem;
    font-weight: 700;
}

.boye-program-chip--soft {
    background: rgba(217,111,31,0.12);
    color: #a95314;
}

.boye-program-session-card-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.05;
}

.boye-program-session-card-subtitle {
    margin: 0.6rem 0 0;
    color: #544c46;
}

.boye-program-track-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.boye-program-track-link {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #d7cec3;
    color: #252320;
}

.boye-program-session-card-actions {
    margin-top: 1rem;
}

.boye-program-speakers-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.boye-program-speaker-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ece6df;
}

.boye-program-speaker-card--compact {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 0.7rem;
}

.boye-program-speaker-photo,
.boye-program-speaker-photo-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    background: #ece6df;
}

.boye-program-speaker-name {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.boye-program-speaker-meta,
.boye-program-speaker-bio {
    margin: 0;
    font-size: 0.92rem;
    color: #665f58;
}

.boye-program-track-leader-block {
    margin-top: 1.5rem;
    max-width: 540px;
}

.boye-program-day-topnav {
    margin-bottom: 1rem;
}

.boye-program-empty {
    color: #665f58;
}

@media (max-width: 1100px) {
    .boye-program-overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .boye-program-inner {
        width: min(100% - 1rem, 1240px);
        padding-top: 1.5rem;
    }

    .boye-program-header,
    .boye-program-overview-day,
    .boye-program-day-detail,
    .boye-program-track-day {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .boye-program-session-card {
        grid-template-columns: 1fr;
    }

    .boye-program-day-detail-heading {
        flex-direction: column;
        align-items: start;
    }
}

/* === Sprint 5: programme speaker card polish === */
.boye-program-session-card {
    box-shadow: 0 18px 44px rgba(10, 19, 40, 0.06);
}

.boye-program-session-card-main {
    min-width: 0;
}

.boye-program-speakers-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 1.15rem;
}

.boye-program-speaker-card,
.boye-program-speaker-card--compact {
    align-items: center;
    gap: 0.95rem;
    padding: 0.95rem;
    border: 1px solid #e6ddd4;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f2ec 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.boye-program-speaker-card-body {
    min-width: 0;
}

.boye-program-speaker-name {
    margin: 0 0 0.28rem;
    font-size: 1rem;
    line-height: 1.2;
    color: #181511;
}

.boye-program-speaker-name a {
    color: #181511;
    text-decoration: none;
}

.boye-program-speaker-name a:hover,
.boye-program-speaker-name a:focus {
    color: #a95314;
    text-decoration: none;
}

.boye-program-speaker-meta,
.boye-program-speaker-bio {
    color: #5f5750;
    line-height: 1.45;
}

.boye-program-speaker-meta a {
    color: #7b3f12;
    text-decoration: none;
}

.boye-program-speaker-meta a:hover,
.boye-program-speaker-meta a:focus {
    text-decoration: underline;
}

.boye-program-speaker-photo,
.boye-program-speaker-photo-placeholder {
    border-radius: 16px;
    border: 1px solid rgba(24, 21, 17, 0.08);
    background: #e9e0d6;
}

.boye-program-speaker-card--compact .boye-program-speaker-photo,
.boye-program-speaker-card--compact .boye-program-speaker-photo-placeholder {
    border-radius: 14px;
}

.boye-program-session-card .boye-button-secondary {
    min-height: 44px;
}

.boye-session-speaker-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border-radius: 22px;
}

.boye-session-speaker-name {
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.boye-session-speaker-name a {
    color: #f9f6f1;
    text-decoration: none;
}

.boye-session-speaker-name a:hover,
.boye-session-speaker-name a:focus {
    color: #ff9c52;
}

.boye-session-speaker-role {
    margin: 0 0 0.45rem;
    line-height: 1.45;
}

.boye-session-speaker-role a {
    color: #ffb37a;
}

.boye-session-speaker-bio {
    margin: 0;
    color: rgba(249, 246, 241, 0.82);
    line-height: 1.55;
}

@media (min-width: 900px) {
    .boye-program-session-card--compact .boye-program-speakers-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .boye-program-speaker-card,
    .boye-program-speaker-card--compact,
    .boye-session-speaker-card {
        grid-template-columns: 56px minmax(0, 1fr);
    }
}


/* === Sprint 8: dark programme surfaces === */
.boye-program-page {
    background:
        radial-gradient(circle at top left, rgba(216, 96, 27, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(69, 98, 177, 0.14), transparent 26%),
        linear-gradient(135deg, #030817 0%, #07112a 48%, #140910 100%);
    color: #f6f1ea;
}

.boye-program-overview-day,
.boye-program-day-detail,
.boye-program-track-day {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, rgba(10, 17, 35, 0.92) 0%, rgba(8, 14, 29, 0.94) 100%);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #f6f1ea;
}

.boye-program-overview-block + .boye-program-overview-block {
    border-top-color: rgba(255,255,255,0.08);
}

.boye-program-overview-block h3,
.boye-program-overview-day-header h2,
.boye-program-day-detail-heading h2,
.boye-program-day-detail-count,
.boye-program-track-assigned-day,
.boye-program-empty {
    color: #f6f1ea;
}

.boye-program-link-list li {
    gap: 0.35rem;
}

.boye-program-link-list span {
    color: rgba(246, 241, 234, 0.72);
    font-size: 0.84rem;
    text-transform: none !important;
  letter-spacing: normal !important;
}

.boye-program-link-list a,
.boye-program-link-list strong {
    color: #f6f1ea;
    font-weight: 600;
    text-decoration: none;
}

.boye-program-link-list a:hover,
.boye-program-link-list a:focus {
    color: #ff9c52;
}

.boye-program-overview-cta .boye-button-primary,
.boye-program-day-detail-heading .boye-button-ghost,
.boye-program-day-topnav .boye-button-ghost,
.boye-program-session-card .boye-button-secondary {
    border-color: rgba(255,255,255,0.16);
}

.boye-program-session-card {
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(17, 24, 44, 0.96) 0%, rgba(11, 16, 31, 0.96) 100%);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.04);
}

.boye-program-session-card-clock,
.boye-program-session-card-title,
.boye-program-speaker-name,
.boye-program-speaker-name a,
.boye-program-session-card-room,
.boye-program-session-card-subtitle,
.boye-program-speaker-meta,
.boye-program-speaker-bio,
.boye-program-track-link,
.boye-program-track-leader-block .boye-page-kicker {
    color: #f6f1ea;
}

.boye-program-session-card-room,
.boye-program-session-card-subtitle,
.boye-program-speaker-meta,
.boye-program-speaker-bio,
.boye-program-track-assigned-day,
.boye-program-empty {
    color: rgba(246, 241, 234, 0.78);
}

.boye-program-chip {
    background: rgba(255,255,255,0.08);
    color: #f6f1ea;
    border: 1px solid rgba(255,255,255,0.08);
}

.boye-program-chip--soft {
    background: rgba(255, 156, 82, 0.12);
    color: #ffb37a;
    border-color: rgba(255, 156, 82, 0.18);
}

.boye-program-track-link {
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
}

.boye-program-track-link:hover,
.boye-program-track-link:focus,
.boye-program-speaker-name a:hover,
.boye-program-speaker-name a:focus,
.boye-program-speaker-meta a:hover,
.boye-program-speaker-meta a:focus {
    color: #ff9c52;
}

.boye-program-speaker-card,
.boye-program-speaker-card--compact {
    border: 1px solid rgba(255,255,255,0.09);
    background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.boye-program-speaker-meta a {
    color: #ffb37a;
}

.boye-program-speaker-photo,
.boye-program-speaker-photo-placeholder {
    border-color: rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
}

.boye-program-track-leader-block {
    padding: 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.09);
    background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
}

.boye-program-page .boye-button-secondary,
.boye-program-page .boye-button-ghost {
    color: #f6f1ea;
    background: rgba(255,255,255,0.02);
}

.boye-program-page .boye-button-secondary:hover,
.boye-program-page .boye-button-secondary:focus,
.boye-program-page .boye-button-ghost:hover,
.boye-program-page .boye-button-ghost:focus {
    color: #fff;
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.06);
}
