/* About Page Hero */
.about-hero {
    /*background: linear-gradient(45deg, rgba(0,0,0,.8),rgba(0,0,0,.5)), url('../images/about.png');*/
    background: linear-gradient(45deg, #800000, #800000);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    /* margin-bottom: 50px; */
    border-bottom: 3px solid var(--red);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "ABOUT";
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-family: var(--serif);
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.about-hero-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    /*background: var(--red);*/
    background: #dfdfdf;
    
}

.about-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    max-width: 600px;
}

/* About Content */
.about-content-section {
    padding: 30px 0 60px 0;
}

.about-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.about-text {
    color: var(--ink3);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 16px;
    text-align: justify;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-quote {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: var(--red);
    border-left: 4px solid var(--red);
    padding-left: 25px;
    margin: 30px 0;
    line-height: 1.6;
}

.about-highlight {
    background: rgba(200, 16, 46, 0.03);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--red);
    margin: 30px 0;
}

.about-section-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--red);
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.author-name {
    padding: 8px 0;
    color: var(--ink3);
    border-bottom: 1px dashed var(--line);
    font-size: 15px;
}

.author-name::before {
    content: '•';
    color: var(--red);
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        padding: 25px;
    }

    .about-hero::before {
        font-size: 80px;
    }

    .about-section-title {
        font-size: 24px;
    }

    .about-quote {
        font-size: 18px;
        padding-left: 20px;
    }

    .authors-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-card {
        padding: 20px;
    }

    .about-text {
        font-size: 15px;
    }
}