.feature-callout {
    padding: 40px 20px;
    position: relative;
}

.feature-callout__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-callout.text-left .feature-callout__inner {
    flex-direction: row;
}

.feature-callout.text-right .feature-callout__inner {
    flex-direction: row-reverse;
}

.feature-callout__text-section {
    flex: 1;
    position: relative;
    min-width: 0;
}

.feature-callout.text-left .feature-callout__text-section {
    text-align: left;
}

.feature-callout.text-right .feature-callout__text-section {
    text-align: right;
}

.feature-callout__arrow {
    position: absolute;
    top: -15px;
    left: -10px;
}

.feature-callout.text-right .feature-callout__arrow {
    left: auto;
    right: -10px;
    transform: scaleX(-1);
}

.feature-callout__starburst {
    position: absolute;
    top: -8px;
    right: 0;
}

.feature-callout.text-right .feature-callout__starburst {
    right: auto;
    left: 0;
}

.feature-callout__headings {
    padding-top: 35px;
}

.feature-callout__line1 {
    font-family: 'BNTillsdale', 'Georgia', serif;
    font-style: italic;
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 2px 0;
}

.feature-callout__line2 {
    font-family: 'Mindset', 'Impact', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0;
    letter-spacing: -0.02em;
}

.feature-callout__line3 {
    font-family: 'Mindset', 'Impact', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    margin: 2px 0 0 0;
    letter-spacing: 0.02em;
}

.feature-callout__image-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-callout.text-left .feature-callout__image-section {
    justify-content: flex-end;
}

.feature-callout.text-right .feature-callout__image-section {
    justify-content: flex-start;
}

.feature-callout__polaroid {
    background: #ffffff;
    padding: 8px;
    border: 3px solid;
    border-radius: 2px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s ease;
}

.feature-callout__polaroid img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .feature-callout__inner {
        flex-direction: column !important;
        gap: 25px;
        align-items: flex-start;
    }

    .feature-callout.text-right .feature-callout__inner {
        align-items: flex-end;
    }

    .feature-callout__text-section,
    .feature-callout__image-section {
        width: 100%;
    }

    .feature-callout__image-section {
        justify-content: center !important;
    }

    .feature-callout__polaroid {
        max-width: 250px;
    }

    .feature-callout__arrow svg {
        width: 60px;
        height: 52px;
    }

    .feature-callout__starburst svg {
        width: 38px;
        height: 38px;
    }
}
