/* Featured Quote Block */
.featured-quote {
    border-radius: var(--border-radius-cards, 54px);
    display: flex;
    align-items: stretch;
    margin: 0;
    overflow: hidden;
}

.featured-quote .featured-quote__photo {
    flex: 0 0 40%;
    max-width: 460px;
    align-self: stretch;
    position: relative;
    border-radius: var(--border-radius-cards, 54px);
    overflow: hidden;
}

.featured-quote .featured-quote__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-quote .featured-quote__content {
    flex: 1;
    min-width: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.featured-quote .featured-quote__mark {
    flex-shrink: 0;
    width: 56px;
    height: auto;
}

/* Quote — Elementor token ebc00cc (Quote Large: Poppins italic 28/1.3) */
.featured-quote .featured-quote__text {
    font-family: var(--e-global-typography-ebc00cc-font-family, "Poppins"), sans-serif;
    font-size: var(--e-global-typography-ebc00cc-font-size, 28px);
    font-weight: 600;
    font-style: var(--e-global-typography-ebc00cc-font-style, italic);
    line-height: var(--e-global-typography-ebc00cc-line-height, 1.3);
    margin: 0;
    color: inherit;
}

.featured-quote .featured-quote__attribution {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Author name — Elementor token 75ec20d (H5: Young Serif 25/1.16) */
.featured-quote .featured-quote__name {
    font-family: var(--e-global-typography-75ec20d-font-family, "Young Serif"), serif;
    font-size: var(--e-global-typography-75ec20d-font-size, 25px);
    font-weight: var(--e-global-typography-75ec20d-font-weight, 400);
    line-height: var(--e-global-typography-75ec20d-line-height, 1.16);
}

/* Author title — Elementor token 8b26941 (Body Default: Poppins 16/1.4) */
.featured-quote .featured-quote__title {
    font-family: var(--e-global-typography-8b26941-font-family, "Poppins"), sans-serif;
    font-size: var(--e-global-typography-8b26941-font-size, 16px);
    font-weight: var(--e-global-typography-8b26941-font-weight, 400);
    line-height: var(--e-global-typography-8b26941-line-height, 1.4);
}

@media (max-width: 900px) {
    .featured-quote {
        flex-direction: column;
        align-items: stretch;
    }
    .featured-quote .featured-quote__photo {
        flex: 0 0 auto;
        max-width: none;
        /* 4:3 keeps the photo from dominating tall narrow screens */
        aspect-ratio: 4 / 3;
    }
    .featured-quote .featured-quote__content {
        padding: 32px 40px;
        gap: 16px;
    }
    .featured-quote .featured-quote__mark { width: 40px; }
}

@media (max-width: 480px) {
    .featured-quote .featured-quote__photo { aspect-ratio: 3 / 2; }
    .featured-quote .featured-quote__content { padding: 24px 32px; }
    .featured-quote .featured-quote__mark { width: 32px; }
}
