/*
|--------------------------------------------------------------------------
| PAV Facilities
|--------------------------------------------------------------------------
*/

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

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

.cew-pav-fac-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #1A2F23;
    margin: 0 0 32px 0;
}

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

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

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

.cew-pav-fac-card {
    --cew-accent: #2D6A4F;

    display: flex;
    flex-direction: column;

    padding: 32px;

    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #bfc9c1;
    overflow: hidden;

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

.cew-pav-fac-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

.cew-pav-fac-card-icon {
    width: 48px;
    height: 48px;

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

    border-radius: 999px;
    background-color: rgba(15, 82, 56, 0.10);

    margin-bottom: 16px;
}

.cew-pav-fac-card-icon .material-symbols-outlined {
    font-size: 24px;
    line-height: 1;
    color: var(--cew-accent);
}

.cew-pav-fac-card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #1A2F23;
    margin: 0 0 16px 0;
}

/*
|--------------------------------------------------------------------------
| List
|--------------------------------------------------------------------------
*/

.cew-pav-fac-list {
    display: flex;
    flex-direction: column;
    gap: 12px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.cew-pav-fac-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cew-pav-fac-list-icon {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    color: var(--cew-accent);
}

.cew-pav-fac-list-label {
    font-size: 16px;
    line-height: 26px;
    color: #404943;
}

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

@media (max-width: 768px) {

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

    .cew-pav-fac-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cew-pav-fac-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .cew-pav-fac-card {
        padding: 24px;
    }

    .cew-pav-fac-card-title {
        font-size: 20px;
        line-height: 28px;
    }

}
