/* =============================================================
   About Hub CSS — /about/ archive page
   ============================================================= */

.about-hub { max-width: 1440px; margin: 0 auto; }

/* --- Hero --- */
.about-hub__hero {
    background: linear-gradient(135deg, #7C2D3B 0%, #5A1F2C 100%);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    color: #fff;
}
.about-hub__hero-inner { max-width: 700px; margin: 0 auto; }
.about-hub__title {
    font-family: 'Lexend', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 1rem;
}
.about-hub__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0 0 2rem;
}

/* --- Stats --- */
.about-hub__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}
.about-hub__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-hub__stat strong {
    font-family: 'Lexend', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #D4A853;
}
.about-hub__stat span {
    font-size: 0.8125rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* --- Card Grid --- */
.about-hub__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hub__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E8E0D8;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
}
.about-hub__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-hub__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9F2F3;
    border-radius: 12px;
    color: #7C2D3B;
    margin-bottom: 1rem;
}

.about-hub__card-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 0.5rem;
}

.about-hub__card-desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1rem;
    flex: 1;
}

.about-hub__card-cta {
    font-family: 'Lexend', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #7C2D3B;
}

/* --- CTA --- */
.about-hub__cta {
    background: linear-gradient(135deg, #7C2D3B 0%, #5A1F2C 100%);
    padding: 3rem 1.5rem;
    text-align: center;
    color: #fff;
}
.about-hub__cta-inner { max-width: 600px; margin: 0 auto; }
.about-hub__cta h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.75rem;
    margin: 0 0 0.75rem;
    color: #fff;
}
.about-hub__cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .about-hub__hero { padding: 3rem 1rem 2rem; }
    .about-hub__title { font-size: 2rem; }
    .about-hub__stats { gap: 1.5rem; }
    .about-hub__stat strong { font-size: 1.5rem; }
    .about-hub__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 2rem 1rem; }
    .about-hub__card { padding: 1.5rem; }
    .about-hub__card-title { font-size: 1.0625rem; }
}
@media (max-width: 480px) {
    .about-hub__title { font-size: 1.75rem; }
    .about-hub__grid { grid-template-columns: 1fr; }
    .about-hub__stats { flex-direction: column; gap: 1rem; }
}
