.learnHub {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.learnHub .contentContainer {
    max-width: 1280px;
    margin-inline: auto;
}

.learnHub h2 {
    text-align: center;
    margin: 0 0 2.5rem;
}

.learnHubGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

.learnHubCard {
    overflow: hidden;
    border: 1px solid #e5e2e7;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(40, 38, 42, .08);
}

.learnHubCardLink {
    display: block;
    height: 100%;
    color: #353039;
    text-decoration: none;
}

.learnHubCard:hover, .learnHubCard:focus-within {
    box-shadow: 0 14px 34px rgba(40, 38, 42, .14);
}

.learnHubCard img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.learnHubCardBody { padding: 1.5rem; }
.learnHubCardBody h3 { margin: .35rem 0 .75rem; line-height: 1.25; }
.learnHubCardBody p { margin: 0 0 1rem; }
.learnHubCardBody .learnHubCategory {
    color: #1366b0;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.learnHubRead { color: #1366b0; font-weight: 700; }
.learnHubCardLink:hover .learnHubRead,
.learnHubCardLink:focus-visible .learnHubRead { text-decoration: underline; }
