/*
|--------------------------------------------------------------------------
| Specialist Support
|--------------------------------------------------------------------------
*/

.cew-support {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f3f4f3;
}

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

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.cew-support-header {
    text-align: center;
    margin-bottom: 64px;
}

.cew-support-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    color: #0f5238;
    margin: 0 0 8px 0;
}

.cew-support-subheading {
    font-size: 16px;
    line-height: 1.6;
    color: #404943;
    max-width: 576px;
    margin: 0 auto;
}

/*
|--------------------------------------------------------------------------
| Grid
|--------------------------------------------------------------------------
*/

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

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

.cew-support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background-color: #ffffff;
    padding: 32px;

    border-radius: 12px;
    border: 1px solid #bfc9c1;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);

    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.cew-support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

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

.cew-support-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    margin-bottom: 24px;

    background-color: #95d4b3;
}

.cew-support-icon .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-variation-settings: 'FILL' 0, '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: #0f5238;
}

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

.cew-support-card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #0f5238;
    margin: 0 0 8px 0;
}

.cew-support-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #404943;
    margin: 0;
}

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

@media (max-width: 1024px) {

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

}

@media (max-width: 768px) {

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

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

    .cew-support-header {
        margin-bottom: 40px;
    }

    .cew-support-heading {
        font-size: 28px;
    }

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

}
