/* HH ABOUT PAGE CSS */

.hh-about {
    --about-lighter-bg: #3c4b35;
    --about-bg: #4a6670;
    --about-accent: #c64e8b;
    --about-text: #dfdfdf;

    background: linear-gradient(to bottom, var(--about-lighter-bg), var(--about-bg));

    color: var(--about-text);
    padding: 1.5rem 4rem 3rem;
}

.hh-about-header {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 2rem;
    padding: 0 0 2rem;
}

.hh-about-logo {
    flex-shrink: 0;
    width: 140px;
}

.hh-about-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.hh-about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--about-text);
}

.hh-about-section {
    min-height: 35vh;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.hh-about-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.hh-about-section-body {
    flex: 1;
    max-width: 150ch;
}

.hh-about-section-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.hh-about-section .hh-about-section-title {
    text-align: center;
}

.hh-about-section .hh-about-section-body {
    margin: 0 auto;
    text-align: center;
}

.hh-founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hh-founder-card {
    background: var(--founder-bg, #555);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-height: 220px;
}

.hh-founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.hh-founder-description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .hh-about {
        padding: 1rem 1.5rem 2rem;
    }

    .hh-about-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0.5rem 0 1.5rem;
    }

    .hh-about-logo {
        width: 100px;
    }

    .hh-about-title {
        font-size: 2rem;
    }

    .hh-about-section {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .hh-founders-grid {
        grid-template-columns: 1fr;
    }
}