/* Experts */

.section-experts {
    background: #f5f7fb;
}

.experts-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .experts-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        align-items: start;
    }
}

.experts-intro .section-title {
    text-align: left;
}

.experts-photo-placeholder {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 16 / 9;
    background: #e5e7eb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experts-photo {
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experts-photo-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 22px 48px rgba(17,24,39,0.16);
    border: 6px solid rgba(255,255,255,0.02);
}

@media (min-width: 900px) {
    .experts-photo { justify-content: flex-end; }
}

@media (max-width: 899px) {
    .experts-photo-img { max-width: 420px; }
}

.experts-grid {
    display: grid;
    gap: 1rem;
}

.expert-card {
    background: #ffffff;
    padding: 1.2rem 1.1rem;
    border-radius: 0.9rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.expert-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.expert-card p {
    font-size: 0.9rem;
    color: #4b5563;
}
