.host-seminar {
    background: var(--color-off-white);

    .host-hero-wrapper {
        width: 100%;
        height: 500px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-bottom: 3.2rem;
    }

    .host-hero {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: flex-end;
    }

    .host-content {
        padding-block: 4.8rem 9.6rem;
    }

    .page-title {
        font-size: var(--font-xl);
        color: var(--global-palette8);
        max-width: 600px;
    }

    .page-subtitle {
        color: var(--global-palette8);
        max-width: 600px;
        margin-bottom: 1.6rem;
    }

    .description-title {
        font-size: var(--font-l);
    }

    .host-description {
        margin-bottom: 4.8rem;
    }

    h1 {
        margin-bottom: .8rem;
    }

    h2 {
        font-size: var(--font-m);
        margin-bottom: 1.2rem;
    }

    h3 {
        font-size: var(--font-xs);
        margin-bottom: 1.2rem;
        font-weight: 700;
    }

    li:not(:last-of-type) {
        margin-bottom: 1rem;
    }

    ul {
        margin: 0 0 2.4rem 1.6rem;
    }

    .host-section {
        margin-bottom: 5.6rem;
    }

    .host-what-you-learn {
        margin-bottom: 0;
    }

    .host-learn-block {
        background: var(--color-white);
        padding: 3.2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06);
        border-radius: 8px;
    }

    .host-what-you-learn-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: .8rem;
        margin-bottom: 5.6rem;
    }

    .host-learn-block ul {
        margin-bottom: 0;
    }

    .lg-button-gold {
        width: fit-content;
    }

    .host-testimonials {
        margin-top: 4.8rem;
    }

    p {
        line-height: 170%;
        margin: 0 0 3.2rem 0;
    }

    i {
        font-size: 2rem;
        color: var(--color-blue);
        margin-right: 4px;
        display: inline-block;
        vertical-align: text-bottom;
    }

    code {
        font-size: unset;
    }

    .host-testimonial {
        display: flex;
        gap: 3.2rem;
        align-items: center;
    }

    .host-testimonial-image {
        width: 150px;
        height: 150px;
        flex-shrink: 0;
    }

    .host-testimonial-image img {
        aspect-ratio: 1/1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .testimonial-text {
        max-height: 150px;
        overflow: hidden;
        position: relative;
    }

    .testimonial-text.expanded {
        max-height: none;
    }

    .host-testimonial {
        background: var(--color-white);
        padding: 3.2rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06);
    }

    .host-testimonials-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .host-testimonial-left {
        display: flex;

    }

    .host-testimonial-author {
        font-weight: 700;
        color: var(--color-blue);
        margin-bottom: .8rem;
    }

    .testimonial-text-preview {
        max-height: 150px;
        overflow: hidden;
        position: relative;
    }

    .testimonial-text-preview::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 40px;
        background: linear-gradient(
                to bottom,
                rgba(255,255,255,0.15),
                rgba(255,255,255,0.9),
                rgba(255,255,255,1)
        );
        pointer-events: none;
        z-index: 3;
    }

    .testimonial-text-preview p {
        margin: 0 0 1.6rem 0;
    }

    .testimonial-open-modal {
        text-decoration: underline;
        color: var(--color-blue);
        font-size: 1.4rem;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        font-weight: 600;
        margin-top: 8px;
    }

    .testimonial-open-modal:hover {
        color: var(--color-dark-blue);
    }

    .testimonial-modal {
        position: fixed;
        inset: 0;
        display: none;
        z-index: 9999;
    }

    .testimonial-modal.active {
        display: block;
    }

    .testimonial-modal-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

    .testimonial-modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: min(95%, 600px);
        background: #fff;
        padding: 3.2rem;
        border-radius: 12px;
        transform: translate(-50%, -50%);
        max-height: 80vh;
        overflow-y: auto;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .testimonial-modal-close {
        position: absolute;
        top: 12px;
        right: 16px;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
    }

    .testimonial-modal-image img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1.6rem;
    }

    .testimonial-modal-author {
        margin-bottom: 3.2rem;
    }

    .testimonial-modal-text p + p {
        margin-top: 1rem;
    }

    .host-testimonials-link {
        text-decoration: underline;
        color: var(--color-blue);
        text-align: end;
        margin-top: 1.2rem;
        font-weight: 500;
    }

    .testimonial-link:hover {
        text-decoration: underline;
        color: var(--color-dark-blue);
    }

    .host-testimonials-link i {
        font-size: 1.6rem!important;
        color: var(--color-blue);
    }

    .host-cta {
        background-color: var(--color-blue);
        padding: 3.2rem;
        border-radius: 8px;
    }

    .host-cta h2 {
        color: var(--color-white);
    }

    .host-cta p {
        color: var(--color-off-white);
    }


    @media (max-width: 767px) {
        .host-testimonials-grid {
            display: flex;
            gap: 1.6rem;
            flex-direction: column;
        }
    }

    @media (max-width: 565px) {
        .host-testimonial {
            flex-direction: column;
        }
    }

}