.content-hub-page {
    background: #f7f9fb;
    color: #101828;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.content-hub-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.content-hub-hero {
    padding: 96px 0 72px;
    background: #ffffff;
    border-bottom: 1px solid #e4e7ec;
}

.content-hub-eyebrow {
    margin: 0 0 16px;
    color: #175cd3;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-hub-title {
    max-width: 820px;
    margin: 0;
    color: #101828;
    font-size: 56px;
    line-height: 64px;
    font-weight: 700;
}

.content-hub-description {
    max-width: 760px;
    margin: 24px 0 0;
    color: #475467;
    font-size: 20px;
    line-height: 32px;
}

.content-hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.content-hub-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
}

.content-hub-button--primary {
    background: #175cd3;
    border: 1px solid #175cd3;
    color: #ffffff;
}

.content-hub-button--secondary {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    color: #344054;
}

.content-hub-listing {
    padding: 72px 0 96px;
}

.content-hub-section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 32px;
    margin-bottom: 32px;
    align-items: end;
}

.content-hub-section-title {
    margin: 0;
    color: #101828;
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
}

.content-hub-section-description {
    margin: 0;
    color: #475467;
    font-size: 17px;
    line-height: 28px;
}

.content-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.content-hub-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
}

.content-hub-card__link {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 24px;
    color: inherit;
    text-decoration: none;
}

.content-hub-card__label {
    color: #175cd3;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-hub-card__title {
    margin: 12px 0 0;
    color: #101828;
    font-size: 21px;
    line-height: 28px;
    font-weight: 700;
}

.content-hub-card__excerpt {
    margin: 12px 0 0;
    color: #475467;
    font-size: 15px;
    line-height: 24px;
}

.content-hub-card__cta {
    margin-top: auto;
    padding-top: 24px;
    color: #175cd3;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.content-hub-empty {
    color: #475467;
    font-size: 16px;
    line-height: 26px;
}

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

@media (max-width: 767px) {
    .content-hub-container {
        width: min(100% - 32px, 1180px);
    }

    .content-hub-hero {
        padding: 72px 0 56px;
    }

    .content-hub-title {
        font-size: 40px;
        line-height: 48px;
    }

    .content-hub-description {
        font-size: 17px;
        line-height: 28px;
    }

    .content-hub-section-header {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .content-hub-section-title {
        font-size: 30px;
        line-height: 38px;
    }

    .content-hub-grid {
        grid-template-columns: 1fr;
    }
}
