/* ── GBP Headliner ── */

.gbp-headliner {
    display: flex;
    flex-direction: column;
}

/* Breadcrumbs */
.gbp-headliner__breadcrumbs {
    margin-bottom: 24px;
}

.gbp-headliner__breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.gbp-headliner__breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gbp-headliner__breadcrumbs a {
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
}

.gbp-headliner__breadcrumbs a:hover {
    opacity: 1;
    text-decoration: underline;
}

.gbp-headliner__breadcrumb-sep {
    opacity: 0.7;
}

.gbp-headliner__breadcrumbs--yoast {
    font-size: 14px;
}

.gbp-headliner__breadcrumbs--yoast a {
    color: inherit;
    opacity: 0.9;
    text-decoration: none;
}

.gbp-headliner__breadcrumbs--yoast a:hover {
    opacity: 1;
    text-decoration: underline;
}

.gbp-headliner__headline {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
    color: #8475B6;
}

.gbp-headliner__headline:last-child {
    margin-bottom: 0;
}

.gbp-headliner__subheadline {
    color: var(--Brand-Colours-colour-brand-white, #FFF);
    /* Typeface/H2 */
    font-family: var(--Brand-Typography-Primary-H2-font-family-type, Rubik);
    font-size: var(--Responsiveness-Typography-Text-Size-text-h2-responsive, 32px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 38.4px */
    letter-spacing: var(--Brand-Typography-Primary-H1-H1-letter-spacing, 0);
}

.gbp-headliner__subheadline:last-child {
    margin-bottom: 0;
}

.gbp-headliner__description {
   color: var(--Brand-Colours-colour-brand-white, #FFF);
/* Typeface/Body/Body */
font-family: var(--Brand-Typography-Secondary-font-family-brand-secondary, "Plus Jakarta Sans");
font-size: var(--Responsiveness-Typography-Text-Size-text-body-responsive, 19px);
font-style: normal;
font-weight: 300;
line-height: 160%; /* 30.4px */
letter-spacing: var(--Brand-Typography-Primary-H1-H1-letter-spacing, 0);
}

.gbp-headliner__description p {
    margin: 0 0 1em;
}

.gbp-headliner__description p:last-child {
    margin-bottom: 0;
}

.gbp-headliner__button-wrap {
    margin-top: 40px;
}

.gbp-headliner__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    transition: opacity 0.2s ease;
}

.gbp-headliner__button:hover {
    opacity: 0.85;
}

.gbp-headliner__button-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
}

.gbp-headliner__button-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .gbp-headliner__headline {
        font-size: 34px;
    }

.gbp-headliner__description {
        font-size: 16px;
    }
}
