/* ==========================================
   ABOUT.CSS - About Page Specific Styles
   ========================================== */

/* About Hero */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: var(--light);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

/* About Content */
.about-content {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-section p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1rem;
    text-align: justify;
    text-align-last: left;
}

/* Author Card */
.author-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 3rem;
}

.author-card img {
    width: min(150px, 40vw);
    height: min(150px, 40vw);
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.author-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.author-card p {
    color: var(--gray);
    text-align: center;
}