﻿.experts-container {
    margin: 40px auto;
    padding: 30px 30px;
    border: 1px solid #00b4f5;
    background: #f7f9fd;
    border-radius: 16px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.expert-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: 0.25s ease;
    cursor:pointer;
}

    .expert-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

.expert-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 1px solid #00b4f5;
}

.expert-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.expert-slogan {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

.data-page {
    cursor: pointer;
}