.cms-page-content {
    background: #f7f9fb;
    min-height: 700px;
    padding: 42px 32px 72px;
}

.page-subpages {
    margin: 0 auto;
    max-width: 1080px;
}

.page-subpages-heading {
    align-items: center;
    display: flex;
    margin-bottom: 24px;
}

.page-subpages-heading-icon {
    align-items: center;
    background: linear-gradient(135deg, #007dbb, #2499dc);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 91, 145, .18);
    color: #fff;
    display: flex;
    flex: 0 0 58px;
    font-size: 24px;
    height: 58px;
    justify-content: center;
    margin-right: 16px;
}

.page-subpages-kicker {
    color: #0879b2;
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.page-subpages-heading h2 {
    color: #123b59;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 4px;
}

.page-subpages-heading p {
    color: #687b8c;
    font-size: 14px;
    margin: 0;
}

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

.page-subpage-card,
.page-subpage-card:link,
.page-subpage-card:visited {
    align-items: center;
    background: linear-gradient(135deg, #fff 70%, #f1f8fc);
    border: 1px solid #dce6ed;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(20, 58, 83, .06);
    color: #263f52;
    display: flex;
    min-height: 106px;
    overflow: hidden;
    padding: 18px 20px;
    position: relative;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.page-subpage-card::before {
    background: #1593d2;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}

.page-subpage-card:hover,
.page-subpage-card:focus {
    border-color: #8ac7e7;
    box-shadow: 0 10px 24px rgba(20, 83, 122, .13);
    color: #0b6598;
    outline: none;
    transform: translateY(-2px);
}

.page-subpage-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(21, 147, 210, .2), 0 10px 24px rgba(20, 83, 122, .13);
}

.page-subpage-icon {
    align-items: center;
    background: #e8f5fb;
    border-radius: 11px;
    color: #087db9;
    display: flex;
    flex: 0 0 48px;
    font-size: 20px;
    height: 48px;
    justify-content: center;
    margin-right: 15px;
    transition: background .18s ease, color .18s ease;
}

.page-subpage-card:hover .page-subpage-icon,
.page-subpage-card:focus .page-subpage-icon {
    background: #1593d2;
    color: #fff;
}

.page-subpage-main {
    min-width: 0;
}

.page-subpage-main strong,
.page-subpage-main small {
    display: block;
}

.page-subpage-main strong {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.page-subpage-main small {
    color: #81909d;
    font-size: 11px;
    margin-top: 5px;
    text-transform: uppercase;
}

.page-subpage-arrow {
    align-items: center;
    border: 1px solid #d7e6ef;
    border-radius: 50%;
    color: #1688c3;
    display: flex;
    flex: 0 0 30px;
    font-size: 16px;
    height: 30px;
    justify-content: center;
    margin-left: auto;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.page-subpage-card:hover .page-subpage-arrow,
.page-subpage-card:focus .page-subpage-arrow {
    background: #1593d2;
    border-color: #1593d2;
    color: #fff;
}

.page-subpages-empty {
    background: #fff;
    border: 1px dashed #bfccd5;
    border-radius: 10px;
    color: #718392;
    grid-column: 1 / -1;
    margin: 0;
    padding: 24px;
    text-align: center;
}

@media (max-width: 767px) {
    .cms-page-content {
        padding: 30px 18px 56px;
    }

    .page-subpages-grid {
        grid-template-columns: 1fr;
    }

    .page-subpages-heading {
        align-items: flex-start;
    }

    .page-subpages-heading-icon {
        border-radius: 11px;
        flex-basis: 48px;
        font-size: 20px;
        height: 48px;
        margin-right: 12px;
    }

    .page-subpages-heading h2 {
        font-size: 22px;
    }

    .page-subpage-card {
        min-height: 94px;
        padding: 15px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-subpage-card,
    .page-subpage-icon,
    .page-subpage-arrow {
        transition: none;
    }
}
