/*
|--------------------------------------------------------------------------
| TRN Bento (Mission & Philosophy)
|--------------------------------------------------------------------------
*/

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

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

.cew-trn-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.cew-trn-bento-card {
    border-radius: 12px;
}

/*
|--------------------------------------------------------------------------
| Mission (8 cols)
|--------------------------------------------------------------------------
*/

.cew-trn-bento-mission {
    grid-column: span 8;
    padding: 32px;

    background-color: #ffffff;
    border: 1px solid #bfc9c1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

    transition: box-shadow 0.3s ease;
}

.cew-trn-bento-mission:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10);
}

.cew-trn-bento-mission-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #0f5238;
    margin: 0 0 16px 0;
}

.cew-trn-bento-mission-text {
    font-size: 18px;
    line-height: 30px;
    color: #404943;
    margin: 0 0 16px 0;
}

.cew-trn-bento-mission-text strong {
    font-weight: 700;
    color: #2D6A4F;
}

/*
|--------------------------------------------------------------------------
| Mission feature items
|--------------------------------------------------------------------------
*/

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

.cew-trn-bento-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cew-trn-bento-feature-icon {
    flex-shrink: 0;
    padding: 12px;
    border-radius: 8px;

    background-color: rgba(45, 106, 79, 0.10);
    color: #2D6A4F;

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

.cew-trn-bento-feature-icon .material-symbols-outlined {
    font-size: 24px;
    line-height: 1;
}

.cew-trn-bento-feature-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #1a1c1c;
    margin: 0 0 4px 0;
}

.cew-trn-bento-feature-text {
    font-size: 16px;
    line-height: 26px;
    color: #404943;
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| Expertise (4 cols)
|--------------------------------------------------------------------------
*/

.cew-trn-bento-expertise {
    grid-column: span 4;
    padding: 32px;

    background-color: #2D6A4F;
    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10);
}

.cew-trn-bento-expertise-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin: 0 0 8px 0;
}

.cew-trn-bento-expertise-text {
    font-size: 16px;
    line-height: 26px;
    opacity: 0.9;
    margin: 0;
}

.cew-trn-bento-rows {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cew-trn-bento-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.cew-trn-bento-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cew-trn-bento-row-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cew-trn-bento-row .material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
}

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

@media (max-width: 768px) {

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

    .cew-trn-bento-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cew-trn-bento-mission,
    .cew-trn-bento-expertise {
        grid-column: span 12;
    }

    .cew-trn-bento-mission,
    .cew-trn-bento-expertise {
        padding: 24px;
    }

    .cew-trn-bento-mission-heading {
        font-size: 28px;
        line-height: 36px;
    }

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

}
