/**
 * Widget: offer|feature
 */

.offer-feature {
    background-color: var(--website-bkg-white);
    padding: var(--website-padding-top-bottom) 0;
}

.offer-feature > .container {
    max-width: var(--website-container-max-width);
}

/* -----------------------------------------------------------------------
   Header: titolo + CTA prenota
----------------------------------------------------------------------- */
.offer-feature .feature-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3.25rem;
    max-width: 661px;
}

.offer-feature .feature-title {
    font-size: 2.625rem;
    font-weight: 500;
    line-height: 1.1;
    color: #3D3D3D;
    margin: 0;
}

.offer-feature .feature-content {
    color: var(--website-secondary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.offer-feature .feature-title-emphasis {
    color: var(--website-accent);
    font-style: italic;
    font-weight: 500;
}

/* -----------------------------------------------------------------------
   Griglia feature
----------------------------------------------------------------------- */
.offer-feature .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* -----------------------------------------------------------------------
   Singola card
----------------------------------------------------------------------- */
.offer-feature .feature-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #FFF5E2;
    border-radius: 12px;
}

.offer-feature .feature-card-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.offer-feature .feature-card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
    color: #6A3400;
}

/* -----------------------------------------------------------------------
   Responsive
----------------------------------------------------------------------- */
@media (max-width: 992px) {
    .offer-feature .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-feature {
        padding: var(--website-padding-top-bottom-mobile) 0;
    }

    .offer-feature .feature-header {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .offer-feature .feature-title {
        font-size: 2rem;
    }

    .offer-feature .feature-grid {
        grid-template-columns: 1fr;
    }
}
