/*
|--------------------------------------------------------------------------
| Management & Staffing
|--------------------------------------------------------------------------
*/

.cew-ms {
    position: relative;
    overflow: hidden;

    padding-top: 80px;
    padding-bottom: 80px;

    background-color: #0f5238;
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Dot pattern
|--------------------------------------------------------------------------
*/

.cew-ms-pattern {
    position: absolute;
    top: 0;
    right: 0;

    width: 50%;
    height: 100%;

    opacity: 0.10;
    pointer-events: none;

    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
}

/*
|--------------------------------------------------------------------------
| Container
|--------------------------------------------------------------------------
*/

.cew-ms-container {
    position: relative;
    z-index: 10;

    max-width: 1200px;
    margin: auto;
    padding-left: 48px;
    padding-right: 48px;
}

.cew-ms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    align-items: center;
}

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

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

.cew-ms-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #b1f0ce;
    margin: 0 0 16px 0;
}

.cew-ms-body {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.90;
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| Stats
|--------------------------------------------------------------------------
*/

.cew-ms-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.cew-ms-stat {
    background-color: rgba(14, 81, 56, 0.20);
    padding: 16px;
    border-radius: 8px;
}

.cew-ms-stat-number {
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.cew-ms-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 2px;
}

/*
|--------------------------------------------------------------------------
| Checklist card
|--------------------------------------------------------------------------
*/

.cew-ms-card {
    background-color: #f9f9f8;
    color: #1a1c1c;

    padding: 32px;
    border-radius: 16px;

    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
    transform: rotate(3deg);
}

.cew-ms-card-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #0f5238;
    margin: 0 0 16px 0;
}

.cew-ms-card-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cew-ms-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    font-size: 16px;
    line-height: 1.5;
}

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

    flex-shrink: 0;
    color: #2D6A4F;
}

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

@media (max-width: 900px) {

    .cew-ms-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 56px;
    }

    /* the tilt crowds neighbours once stacked */
    .cew-ms-card {
        transform: rotate(0deg) !important;
    }

}

@media (max-width: 768px) {

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

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

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

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

    .cew-ms-card {
        padding: 24px;
    }

}
