/*
|--------------------------------------------------------------------------
| Feature Cards
|--------------------------------------------------------------------------
*/

.cew-fc {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f9f9f8;
}

.cew-fc-container {
    max-width: 1200px;
    margin: auto;
    padding-left: 48px;
    padding-right: 48px;
}

.cew-fc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/*
|--------------------------------------------------------------------------
| Card
|--------------------------------------------------------------------------
*/

.cew-fc-card {
    display: flex;
    flex-direction: column;
    gap: 16px;

    padding: 40px;
    border-radius: 24px;
    border: 1px solid #bfc9c1;

    background-color: rgba(244, 241, 222, 0.30);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cew-fc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/*
|--------------------------------------------------------------------------
| Icon
|--------------------------------------------------------------------------
*/

.cew-fc-icon.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 40;
    font-size: 36px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;

    color: #2D6A4F;
}

/*
|--------------------------------------------------------------------------
| Text
|--------------------------------------------------------------------------
*/

.cew-fc-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    color: #1A2F23;
    margin: 0;
}

.cew-fc-text {
    font-size: 18px;
    line-height: 1.7;
    color: #404943;
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {

    .cew-fc-grid {
        grid-template-columns: minmax(0, 1fr);
    }

}

@media (max-width: 768px) {

    .cew-fc {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .cew-fc-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .cew-fc-card {
        padding: 28px;
    }

    .cew-fc-title {
        font-size: 26px;
    }

    .cew-fc-text {
        font-size: 16px;
    }

}
