/* =========================================
   Mentors Page Specific Styles
   ========================================= */

/* Override the 100vh hero height from base.css for this specific page */
.mentors-hero-override {
    height: 65vh;
    border-bottom: 4px solid var(--primary-blue);
}

/* =========================================
   Quote Area
   ========================================= */
.mentors-main {
    padding-bottom: 5rem;
    background-color: var(--bg-light); /* Pulled from base.css */
}

.quote-section {
    text-align: center;
    padding: 4rem 1.25rem;
    max-width: 62.5rem;
    margin: 0 auto;
}

.quote-container blockquote {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark); /* Pulled from base.css */
    margin-bottom: 1.25rem;
}

.attribution {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4rem;
    text-align: right;
    padding-right: 10%;
}

.section-titles h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.625rem;
}

.section-titles h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    letter-spacing: 0.0625rem;
}

/* =========================================
   Mentors Grid
   ========================================= */
.mentors-grid-container {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem;
    margin-top: 2.5rem;
}

.mentor-card {
    display: flex;
    flex-direction: column;
}

.mentor-card img {
    width: 100%;
    height: 31.25rem;
    object-fit: cover;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
}

.mentor-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: #111;
}

.mentor-title {
    display: block;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.mentor-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

/* =========================================
   Responsive Adjustments for Grid
   ========================================= */
@media (max-width: 1100px) {
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quote-container blockquote { font-size: 1.8rem; }
    .attribution { font-size: 1.5rem; }
    .section-titles h2 { font-size: 1.8rem; }
    .section-titles h3 { font-size: 2.2rem; }
    
    .mentors-grid {
        grid-template-columns: 1fr;
    }
}