:root {
    --orange: #dd5c00;
    --orange-hot: #ff651b;
    --orange-dark: #a83f00;
    --ink: #151515;
    --muted: #666;
    --line: #e7e2dc;
    --paper: #fffaf5;
    --white: #fff;
    --deep: #17120f;
    --green: #1f6f5b;
    --blue: #245c73;
    --shadow: 0 22px 70px rgba(38, 25, 12, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--white);
    background: #0b0b0b;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

body::selection {
    background: var(--orange);
    color: var(--white);
}

a {
    color: inherit;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 14px clamp(20px, 5vw, 72px);
    background: linear-gradient(180deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, 0));
    border-bottom: 0;
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 140px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0;
}

.brand img {
    width: 100%;
    height: auto;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 28px;
}

nav a {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

nav a:hover {
    color: var(--orange-hot);
}

.header-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--orange-hot);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0 28px rgba(255, 101, 27, .35);
}

.hero {
    position: relative;
    min-height: 780px;
    padding: 118px clamp(20px, 5vw, 72px) 40px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .8) 32%, rgba(0, 0, 0, .35) 58%, rgba(0, 0, 0, .05) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, #0b0b0b 100%),
        url("/Content/sqldays-hero-data.png") center right / cover no-repeat;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--orange-hot);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: 82px;
    line-height: .9;
    letter-spacing: 0;
}

h1 span,
h1 strong {
    display: block;
}

h1 strong {
    color: var(--orange-hot);
}

h2 {
    margin-bottom: 18px;
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: 0;
}

.lead {
    max-width: 540px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .84);
    font-size: 22px;
}

.hero-actions,
.ticket-grid .button {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 6px;
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(21, 21, 21, .14);
}

.button.primary {
    border-color: var(--orange-hot);
    background: var(--orange-hot);
    color: var(--white);
}

.button.secondary {
    background: rgba(255, 255, 255, .04);
}

.quick-facts {
    position: absolute;
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    bottom: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    gap: 0;
    max-width: none;
    margin: 0;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    background: rgba(18, 18, 18, .78);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
    backdrop-filter: blur(18px);
}

.quick-facts div {
    padding: 4px 28px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-radius: 0;
    background: transparent;
}

.quick-facts div:last-child {
    border-right: 0;
}

.quick-facts dt {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.quick-facts dd {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
}

.quick-facts strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.quick-facts span {
    display: block;
    margin-top: 4px;
}

.topic-callouts {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.callout {
    position: absolute;
    color: rgba(255, 255, 255, .92);
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 0 22px rgba(255, 101, 27, .35);
}

.callout::before {
    content: "";
    display: block;
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    border: 2px solid var(--orange-hot);
    border-radius: 50%;
    box-shadow: 0 0 22px rgba(255, 101, 27, .42);
}

.callout.sql {
    left: 47%;
    top: 32%;
}

.callout.ai {
    left: 72%;
    top: 18%;
}

.callout.fabric {
    right: 7%;
    top: 43%;
}

.callout.cloud {
    right: 8%;
    top: 63%;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px clamp(20px, 5vw, 72px);
    background: var(--ink);
    color: var(--white);
}

.trust-strip span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.section {
    padding: clamp(58px, 8vw, 72px) clamp(20px, 5vw, 72px);
    background: #101010;
}

.split {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
    background: linear-gradient(180deg, #121212, #0c0c0c);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.benefit-grid article,
.ticket,
.speaker-grid article,
.workshop-row article {
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .11);
    box-shadow: none;
}

.benefit-grid article {
    padding: 24px;
    border-top: 1px solid rgba(255, 101, 27, .35);
}

.benefit-grid p,
.ticket p,
.workshop-row p,
.location p,
.speaker-grid p {
    color: rgba(255, 255, 255, .72);
}

.card-icon {
    display: block;
    margin-bottom: 18px;
    color: var(--orange-hot);
    font-size: 34px;
    line-height: 1;
}

.dark {
    background: var(--deep);
    color: var(--white);
}

.dark .eyebrow {
    color: #ffad73;
}

.dark p {
    color: rgba(255, 255, 255, .78);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 32px;
}

.workshop-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.workshop-row article {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 26px;
    background: #241b16;
    border: 1px solid rgba(255, 255, 255, .12);
}

.workshop-row span,
.ticket-label {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.workshop-row a {
    margin-top: auto;
    color: #ffb47b;
    font-weight: 900;
    text-decoration: none;
}

.speakers {
    background: #101010;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.speaker-grid article {
    overflow: hidden;
}

.speaker-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.speaker-grid h3,
.speaker-grid p {
    padding: 0 18px;
}

.speaker-grid h3 {
    margin-top: 18px;
}

.speaker-grid p {
    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;
    margin-top: 24px;
    color: #ffb47b;
    font-weight: 900;
    text-decoration: none;
}

.session-details summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    list-style: none;
}

    .session-details summary::-webkit-details-marker {
        display: none;
    }

    .session-details summary h3 {
        margin: 0;
        font-size: 1rem;
    }

.session-labels {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

    .session-labels span {
        font-size: 0.75rem;
        padding: 2px 6px;
        border-radius: 4px;
        background: #eee;
    }

.session-details summary::after {
    content: "+";
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: auto;
}

.session-details[open] summary::after {
    content: "?";
}

.session-details p {
    margin-top: 0.75rem;
    line-height: 1.5;
}

.location {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(280px, .9fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background: #0c0c0c;
}

.location-photo {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.location-photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.tickets {
    background: #101010;
}

.ticket-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 16px;
}

.ticket {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
}

.ticket.featured {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.ticket h3 {
    font-size: 40px;
}

.ticket .button {
    margin-top: auto;
}

.site-footer {
    padding: 30px clamp(20px, 5vw, 72px);
    background: var(--ink);
    color: rgba(255, 255, 255, .74);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--white);
}

.content-hero {
    min-height: 520px;
    padding: 152px 52px 76px;
    background:
        linear-gradient(90deg, rgba(5, 6, 7, .96) 0%, rgba(5, 6, 7, .78) 48%, rgba(5, 6, 7, .36) 100%),
        url("/Content/sqldays-hero-data.png") center / cover no-repeat;
}

.content-hero-inner {
    max-width: 980px;
}

.content-kicker {
    margin: 0 0 18px;
    color: var(--orange);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.content-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: 64px;
    line-height: .96;
}

.content-hero p {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 21px;
    line-height: 1.55;
}

.content-section {
    padding: 72px 52px;
    background: #0b0b0b;
}

.content-section.alt {
    background: #101010;
}

.content-wrap {
    max-width: 1260px;
    margin: 0 auto;
}

.seo-intro {
    max-width: 960px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .76);
    font-size: 19px;
    line-height: 1.65;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.page-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.person-card,
.route-card {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.content-card,
.route-card {
    padding: 26px;
}

.content-card h3,
.route-card h3,
.person-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.content-card p,
.route-card p,
.person-card p {
    color: rgba(255, 255, 255, .72);
}

.meta-line {
    display: block;
    margin-bottom: 14px;
    color: var(--orange);
    font-weight: 800;
}

.person-card {
    overflow: hidden;
    position: relative;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.person-card:hover,
.person-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(255, 101, 27, .5);
    box-shadow: 0 24px 70px rgba(221, 92, 0, .18);
}

.person-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #151515;
}

.person-card div {
    padding: 20px;
}

.speaker-role {
    min-height: 76px;
    margin-bottom: 16px;
}

.speaker-bio {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 14px;
}

.speaker-bio summary {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 101, 27, .6);
    border-radius: 999px;
    color: var(--white);
    background: rgba(221, 92, 0, .14);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

.speaker-bio summary::-webkit-details-marker {
    display: none;
}

.speaker-bio summary::after {
    content: "+";
    margin-left: 10px;
    color: var(--orange-hot);
    font-size: 18px;
    line-height: 1;
}

.speaker-bio[open] summary::after {
    content: "-";
}

.speaker-bio p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.58;
}

.session-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.session-labels span {
    padding: 4px 8px;
    border: 1px solid rgba(255, 101, 27, .42);
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    background: rgba(221, 92, 0, .12);
    font-size: 12px;
    font-weight: 800;
}

.speaker-session-groups {
    display: grid;
    gap: 34px;
}

.speaker-session-group {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 101, 27, .11), rgba(255, 255, 255, .025) 42%);
}

.speaker-session-heading {
    padding: 24px 26px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.speaker-session-heading h2 {
    margin: 0;
    color: var(--white);
    font-size: 36px;
    line-height: 1.05;
}

.speaker-session-group .session-list {
    padding: 22px;
}

.session-topic-row {
    grid-template-columns: 120px 1fr;
    background: rgba(5, 7, 8, .42);
}

.session-topic-row .session-labels {
    margin: 0 0 14px;
}

.session-list,
.workshop-list,
.route-list {
    display: grid;
    gap: 18px;
}

.list-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
}

.list-row h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.list-row p {
    color: rgba(255, 255, 255, .72);
}

.list-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.location-photo {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.imprint-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.agenda-days {
    display: grid;
    gap: 42px;
}

.agenda-day {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, .025);
}

.agenda-day-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(90deg, rgba(221, 92, 0, .2), rgba(255, 255, 255, .02));
}

.agenda-day-header h2 {
    margin: 0;
    font-size: 34px;
}

.agenda-day-header p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.agenda-grid {
    display: grid;
    gap: 0;
}

.agenda-row {
    display: grid;
    grid-template-columns: 112px repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.agenda-row:last-child {
    border-bottom: 0;
}

.agenda-time {
    padding: 22px 18px;
    color: var(--orange-hot);
    font-size: 18px;
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.agenda-slot {
    min-height: 150px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.agenda-slot:last-child {
    border-right: 0;
}

.agenda-room {
    display: block;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.agenda-slot h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.agenda-slot p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.agenda-break {
    grid-column: 2 / -1;
    min-height: auto;
    background: rgba(221, 92, 0, .08);
}

.summer-hero {
    position: relative;
    min-height: 760px;
    padding: 148px clamp(20px, 5vw, 72px) 42px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .78) 42%, rgba(0, 0, 0, .2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, #0b0b0b 100%),
        url("/Content/sqldays-social-2026.png") center right / cover no-repeat;
}

.summer-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.summer-hero h1 {
    margin-bottom: 24px;
    font-size: 76px;
    line-height: .9;
}

.summer-facts {
    position: absolute;
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    bottom: 34px;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background: rgba(18, 18, 18, .82);
    backdrop-filter: blur(18px);
}

.summer-facts div {
    padding: 4px 24px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.summer-facts div:last-child {
    border-right: 0;
}

.summer-facts dt {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 700;
}

.summer-facts dd {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .74);
}

.summer-facts strong {
    display: block;
    color: var(--white);
    font-size: 20px;
    line-height: 1.2;
}

.summer-facts span {
    display: block;
    margin-top: 4px;
}

.summer-band {
    background: linear-gradient(180deg, #121212, #0b0b0b);
}

.summer-ticket-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 20px;
}

.summer-ticket,
.summer-reasons article,
.summer-workshop-list article {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
}

.summer-ticket {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 30px;
}

.summer-ticket.featured {
    border-color: rgba(255, 101, 27, .62);
    background: linear-gradient(145deg, rgba(221, 92, 0, .24), rgba(255, 255, 255, .035) 58%);
}

.summer-ticket h3 {
    margin-top: 16px;
    font-size: 34px;
}

.summer-price {
    margin: 0 0 18px;
    color: var(--orange-hot);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.summer-ticket .button {
    margin-top: auto;
}

.summer-reasons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 42px;
}

.summer-reasons article {
    padding: 24px;
}

.summer-reasons span {
    color: var(--orange-hot);
    font-size: 28px;
    font-weight: 900;
}

.summer-workshop-days {
    display: grid;
    gap: 34px;
}

.summer-workshop-days > section {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
}

.summer-workshop-days header {
    margin-bottom: 20px;
}

.summer-workshop-days h3 {
    margin: 0;
    font-size: 30px;
}

.summer-workshop-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.summer-workshop-list article {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 22px;
    background: rgba(5, 7, 8, .42);
}

.summer-workshop-list h4 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 21px;
    line-height: 1.18;
}

.summer-workshop-list p,
.summer-ticket p,
.summer-reasons p,
.summer-closer p {
    color: rgba(255, 255, 255, .74);
}

.summer-workshop-list .list-row-actions {
    margin-top: auto;
}

.summer-closer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.summer-contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 980px) {
    .brand {
        width: 136px;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 40px;
    }

    .lead {
        font-size: 20px;
    }

    .hero,
    .split,
    .location,
    .page-grid,
    .page-grid.two,
    .imprint-grid,
    .ticket-grid,
    .summer-ticket-grid,
    .summer-reasons,
    .summer-workshop-list,
    .summer-closer {
        grid-template-columns: 1fr;
    }

    .summer-hero {
        min-height: 900px;
    }

    .summer-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summer-facts div:nth-child(2) {
        border-right: 0;
    }

    .summer-facts div:nth-child(-n+2) {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .summer-facts div:nth-child(n+3) {
        padding-top: 18px;
    }

    .agenda-row {
        grid-template-columns: 96px repeat(3, minmax(0, 1fr));
    }

    .hero {
        min-height: 900px;
        padding-top: 140px;
    }

    .workshop-row,
    .speaker-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-facts div:nth-child(2) {
        border-right: 0;
    }

    .quick-facts div:nth-child(-n+2) {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .quick-facts div:nth-child(n+3) {
        padding-top: 18px;
    }

    .callout {
        display: none;
    }
}

@media (max-width: 680px) {
    .brand {
        width: 126px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .lead {
        font-size: 18px;
    }

    .site-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
        background: #070707;
    }

    nav {
        justify-content: flex-start;
    }

    .header-ticket {
        width: 100%;
    }

    .hero {
        min-height: 920px;
        padding-top: 48px;
        background-position: 58% top;
    }

    .quick-facts,
    .benefit-grid,
    .workshop-row,
    .speaker-grid,
    .page-grid,
    .page-grid.two,
    .imprint-grid,
    .summer-facts {
        grid-template-columns: 1fr;
    }

    .summer-hero {
        min-height: 960px;
        padding-top: 56px;
    }

    .summer-hero h1 {
        font-size: 42px;
    }

    .summer-facts {
        position: static;
        margin-top: 36px;
        padding: 0;
    }

    .summer-facts div,
    .summer-facts div:nth-child(2),
    .summer-facts div:nth-child(-n+2),
    .summer-facts div:nth-child(n+3) {
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .summer-facts div:last-child {
        border-bottom: 0;
    }

    .summer-ticket,
    .summer-workshop-days > section {
        padding: 20px;
    }

    .summer-price {
        font-size: 42px;
    }

    .content-hero,
    .content-section {
        padding-right: 24px;
        padding-left: 24px;
    }

    .content-hero {
        min-height: 520px;
        padding-top: 60px;
    }

    .content-hero h1 {
        font-size: 40px;
    }

    .list-row {
        grid-template-columns: 1fr;
    }

    .speaker-session-heading {
        padding: 20px 18px 16px;
    }

    .speaker-session-heading h2 {
        font-size: 28px;
    }

    .speaker-session-group .session-list {
        padding: 16px;
    }

    .quick-facts {
        position: static;
        margin-top: 36px;
        padding: 0;
        border-radius: 8px;
    }

    .quick-facts div,
    .quick-facts div:nth-child(2),
    .quick-facts div:nth-child(-n+2),
    .quick-facts div:nth-child(n+3) {
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .quick-facts div:last-child {
        border-bottom: 0;
    }

    .button {
        width: 100%;
    }

    .agenda-day-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .agenda-row {
        grid-template-columns: 1fr;
    }

    .agenda-time {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .04);
    }

    .agenda-slot {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .agenda-slot:last-child {
        border-bottom: 0;
    }

    .agenda-break {
        grid-column: auto;
    }
}
