.am-mentors {
    margin: 2rem 0;
}

.am-mentors__title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.am-mentors__error,
.am-mentors__empty {
    text-align: center;
    color: #6b7280;
}

.am-mentors__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.am-mentors__grid--cols-1 { grid-template-columns: 1fr; }
.am-mentors__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.am-mentors__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.am-mentors__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
    .am-mentors__grid--cols-3,
    .am-mentors__grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .am-mentors__grid {
        grid-template-columns: 1fr !important;
    }
}

.am-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.am-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.am-card__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f3f4f6;
    flex-shrink: 0;
}

.am-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.am-card__name {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.am-card__occupation {
    margin: 0 0 0.1rem;
    font-weight: 500;
    color: #374151;
}

.am-card__org {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.am-card__description {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

.am-card__link {
    display: inline-block;
    margin-top: auto;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: #1d4ed8;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.am-card__link:hover {
    background: #1e40af;
    color: #fff;
}
