/* About page styling to match site theme */

.about-main {
    position: relative;
    z-index: 10;
    padding: 9rem 6% 5rem;
    color: var(--c);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.about-hero h1 {
    font-family: 'Fira Code', monospace;
    font-size: 2.4rem;
    max-width: 900px;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    text-shadow: 0 8px 30px rgba(0, 161, 156, 0.25);
}

.about-hero .subhead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 700px;
    margin: 0;
}

.about-content {
    display: flex;
    justify-content: center;
}

.about-card {
    width: min(100%, 1100px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
}

.card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.card-body p {
    margin: 0;
}

.card-meta {
    border-left: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.35);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Fira Code', monospace;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--a);
    font-size: 1.3rem;
}

@media (max-width: 960px) {
    .about-main {
        padding: 8rem 6% 4rem;
    }

    .about-card {
        grid-template-columns: 1fr;
    }

    .card-meta {
        border-left: none;
        border-top: 1px solid var(--glass-border);
    }
}

@media (max-width: 600px) {
    .about-main {
        padding: 7rem 5% 3.5rem;
    }

    .about-hero h1 {
        font-size: 1.9rem;
    }

    .card-body {
        padding: 1.75rem;
    }

    .card-meta {
        padding: 1.5rem;
    }
}
