.center-page {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    color: #233047;
}

.center-hero {
    padding: 28px 30px;
    margin-bottom: 18px;
    border: 1px solid #dce8f3;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7fafd 0%, #fff 62%, #fcfaf7 100%);
}

.center-hero--management {
    border-color: #e8e1d8;
    background: linear-gradient(135deg, #fcfaf7 0%, #fff 58%, #f7fafd 100%);
}

.center-hero > span {
    color: #356ea8;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.center-hero h1 {
    margin: 9px 0 0;
    color: #233047;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
    letter-spacing: -.025em;
}

.center-hero p {
    max-width: 700px;
    margin: 8px 0 0;
    color: #718096;
    font-size: 13px;
    line-height: 1.7;
}

.center-grid {
    display: grid;
    gap: 16px;
}

.center-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.center-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.center-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.center-grid--1 {
    grid-template-columns: minmax(0, 390px);
}

.center-card {
    display: flex;
    min-width: 0;
    min-height: 176px;
    padding: 20px;
    border: 1px solid #e3e8ef;
    border-radius: 16px;
    background: #fff;
    color: #233047;
    text-decoration: none;
    transition: border-color .16s ease, background-color .16s ease;
}

.center-card:hover {
    border-color: #b9cfe3;
    background: #fbfdff;
}

.center-card__icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: #eaf2fa;
    color: #356ea8;
}

.center-card__icon svg {
    width: 21px;
    height: 21px;
}

.center-card__body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    margin-left: 13px;
}

.center-card__body strong {
    font-size: 14px;
    font-weight: 500;
}

.center-card__body small {
    margin-top: 8px;
    color: #718096;
    font-size: 12px;
    line-height: 1.65;
}

.center-card__arrow {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    margin-left: 8px;
    color: #9aa5b5;
}

.fi-topbar .fi-topbar-item-label {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.fi-topbar .fi-topbar-item-btn {
    gap: .4rem;
}

@media (max-width: 1100px) {
    .center-grid--4,
    .center-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .center-page {
        max-width: 100%;
    }

    .center-hero {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .center-grid--4,
    .center-grid--3,
    .center-grid--2,
    .center-grid--1 {
        grid-template-columns: 1fr;
    }

    .center-card {
        min-height: 146px;
        padding: 17px;
    }
}
