/*
|--------------------------------------------------------------------------
| Activities & Schedule
|--------------------------------------------------------------------------
*/

.cew-as {
    --cew-accent: #0f5238;

    position: relative;
    overflow: hidden;

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

    background-color: #e8e8e7;
}

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

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

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

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

.cew-as-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cew-as-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1A2F23;
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| Activity list
|--------------------------------------------------------------------------
*/

.cew-as-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cew-as-item {
    display: flex;
    gap: 16px;
}

.cew-as-item-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' 24;
    font-size: 24px;
    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: var(--cew-accent);
}

.cew-as-item-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1c1c;
    margin: 0;
}

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

/*
|--------------------------------------------------------------------------
| Opening hours card
|--------------------------------------------------------------------------
*/

.cew-as-hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    background-color: rgba(255,255,255,0.60);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    padding: 32px;
    border-radius: 16px;
    border: 1px solid #ffffff;

    margin-top: 8px;
}

.cew-as-hours-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2D6A4F;
    margin: 0 0 8px 0;
}

.cew-as-hours-time {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: #1A2F23;
    margin: 0;
}

.cew-as-hours-days {
    font-size: 16px;
    line-height: 1.6;
    color: #404943;
    margin: 4px 0 0 0;
}

.cew-as-hours-icon.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    font-size: 100px;
    line-height: 1;

    flex-shrink: 0;
    color: rgba(45, 106, 79, 0.20);
}

/*
|--------------------------------------------------------------------------
| Staggered images
|--------------------------------------------------------------------------
*/

.cew-as-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.cew-as-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cew-as-col--offset {
    padding-top: 32px;
}

.cew-as-image {
    border-radius: 12px;
    overflow: hidden;

    border: 4px solid #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.10);

    background-color: #dadad9;
}

.cew-as-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

@media (max-width: 900px) {

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

    .cew-as-heading {
        font-size: 36px;
    }

}

@media (max-width: 768px) {

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

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

    .cew-as-heading {
        font-size: 30px;
    }

    .cew-as-item-title {
        font-size: 20px;
    }

    /* the giant watermark icon crowds the text on phones */
    .cew-as-hours {
        padding: 24px;
        gap: 16px;
    }

    .cew-as-hours-time {
        font-size: 28px;
    }

    .cew-as-hours-icon.material-symbols-outlined {
        display: none;
    }

    .cew-as-col--offset {
        padding-top: 0;
    }

}
