.overview-page {
    min-height: 100vh;
    padding: 130px 0 56px;
    background: radial-gradient(circle at 10% 8%, rgba(209, 177, 110, .2), transparent 32%), linear-gradient(180deg, #074f66 0%, #0a6475 36%, #0b6c66 100%);
}

.overview-shell {
    width: min(1150px, calc(100% - 24px));
    margin: 0 auto;
}

.overview-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    padding: 14px;
    border: 3px solid #bfa56d;
    border-radius: 30px;
    background: linear-gradient(120deg, rgba(8, 68, 78, .96), rgba(6, 90, 88, .96));
    box-shadow: 0 24px 40px rgba(2, 38, 48, .34);
}

.overview-hero__media {
    min-height: 320px;
    border: 3px solid #bfa56d;
    border-radius: 22px;
    background: #0b4d5f center / cover no-repeat;
}

.overview-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f7efd8;
}

.overview-hero__content h1 {
    margin: 0;
    color: #d9bf79;
    font-size: clamp(2rem, 2.8vw, 3rem);
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.overview-hero__content p {
    margin: 18px 0 0;
    white-space: pre-line;
    font-size: 1.15rem;
    line-height: 1.55;
}

.overview-cta {
    align-self: flex-start;
    margin-top: 20px;
    border: 2px solid #af9354;
    border-radius: 999px;
    padding: 12px 26px;
    background: linear-gradient(180deg, #e2cd95, #cfb277);
    color: #2f230e;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.overview-cta:hover,
.overview-cta:focus,
.overview-cta:active {
    color: #2f230e;
    text-decoration: none;
}

.overview-section {
    margin-top: 36px;
}

.overview-section__head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.overview-divider {
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(191, 165, 109, 0), #bfa56d 52%, rgba(191, 165, 109, 0));
}

.overview-section__head h2 {
    margin: 0;
    color: #d9bf79;
    font-size: clamp(1.4rem, 2.2vw, 2.1rem);
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.overview-section__head h2 a,
.overview-section__head h2 a:hover,
.overview-section__head h2 a:focus,
.overview-section__head h2 a:active {
    color: #d9bf79;
    text-decoration: none;
}

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

.overview-card {
    overflow: hidden;
    border: 2px solid #bfa56d;
    border-radius: 20px;
    background: linear-gradient(160deg, #0b6070, #0c6e65);
    box-shadow: 0 10px 20px rgba(2, 34, 43, .28);
}

.overview-card__image {
    height: 165px;
    background: #0c5f73 center / cover no-repeat;
}

.overview-card__link,
.overview-card__link:hover,
.overview-card__link:focus,
.overview-card__link:active {
    display: block;
    color: inherit;
    text-decoration: none;
}

.overview-card h3 {
    margin: 0;
    padding: 12px 10px 14px;
    color: #d9bf79;
    font-size: 1.15rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.overview-editor-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.overview-editor-tools .btn {
    height: 30px;
    color: #fff;
    text-transform: none;
    padding: 4px 10px;
}

.overview-child-row {
    padding: 10px;
    border: 1px solid #e4e9f2;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fafcff;
}

@media (max-width: 1199px) {
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .overview-page {
        padding-top: 110px;
    }

    .overview-hero {
        grid-template-columns: 1fr;
    }

    .overview-hero__media {
        min-height: 250px;
    }

    .overview-hero__content p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-section__head {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .overview-divider {
        display: none;
    }

    .overview-section__head h2 {
        white-space: normal;
        text-align: center;
    }
}
