.agenda-header {
    position: relative;
    background: var(--dark-blue);
    padding: 180px 24px 96px;
    overflow: hidden;
}

.agenda-header-media {
    position: absolute;
    inset: 0;
}
.agenda-header-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.3;
    display: block;
}

.agenda-header-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 55, 109, 0.82) 0%,
        rgba(10, 55, 109, 0.72) 55%,
        rgba(10, 55, 109, 0.9) 100%
    );
    pointer-events: none;
}

.agenda-header-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.agenda-header-heading {
    display: flex;
    gap: 24px;
}
.agenda-header-rule {
    width: 3px;
    background: var(--orange);
    flex-shrink: 0;
    align-self: stretch;
}
.agenda-header-heading-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.agenda-header-eyebrow {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--light-blue);
    text-transform: uppercase;
}
.agenda-header-heading-text h1 {
    margin: 0;
    max-width: 325px;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 56px;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #fff;
}

.agenda-header-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 6px;
}
.agenda-header-body p {
    margin: 0;
    font-size: 18px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.82);
}
.agenda-header-body p + p {
    margin-top: 20px;
}

.agenda-header-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}
.agenda-header-actions > a {
    display: inline-flex;
    align-items: center;
    height: 50px;
    padding: 0 28px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background 120ms;
}
.agenda-header-actions > a:hover {
    background: var(--orange-500);
    color: #fff;
    text-decoration: none;
}

.agenda-header-cpe {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    width: fit-content;
}
.agenda-header-cpe-number {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 26px;
    color: var(--yellow);
    line-height: 1;
}
.agenda-header-cpe-label {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.4;
}

@media screen and (max-width: 1024px) {
    .agenda-header-inner {
        grid-template-columns: 1fr;
    }
    .agenda-header-heading-text h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 640px) {
    .agenda-header {
        padding-top: 120px;
        padding-bottom: 56px;
    }
    .agenda-header-inner {
        gap: 32px;
    }
    .agenda-header-heading-text h1 {
        font-size: 28px;
    }
}
