.mentor-hero {
    padding: 2rem 0 3rem;
    background: var(--gradient-hero);
    border-bottom: 1px solid var(--border-color);
}

.mentor-hero-headline {
    font-size: 1.05rem;
    line-height: 1.55;
}

.mentor-about-p {
    line-height: 1.75;
}

.mentor-skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mentor-skill-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    line-height: 1.55;
}

.mentor-skill-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.mentor-about-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}
.mentor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(99, 102, 241, 0.5);
    box-shadow: var(--shadow-lg);
}
.mentor-stat {
    text-align: center;
    padding: 0.75rem;
}
.mentor-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-light);
}
.service-card-mentor {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    height: 100%;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.service-card-mentor:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}
.service-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(99, 102, 241, 0.2);
    color: #c7d2fe;
}
.review-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    height: 100%;
}

/* Reviews page — avoid footer covering the list / sticky sidebar overlap */
.mentor-reviews-page {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}

.mentor-reviews-layout {
    align-items: flex-start;
}

.mentor-reviews-list .review-card {
    height: auto;
}

.mentor-reviews-list {
    padding-bottom: 1.5rem;
}

body:has(.mentor-reviews-page) .site-footer {
    position: relative;
    z-index: 2;
    margin-top: 0;
    clear: both;
}
.stars-mentor {
    color: #fbbf24;
    font-size: 0.9rem;
}
.price-mentor {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--success-light, #34d399);
}
.price-mentor del {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.35rem;
}
@media (max-width: 767.98px) {
    .mentor-hero { padding: 100px 0 40px; }
    .mentor-avatar { width: 88px; height: 88px; }
}
