/* Experts Block */
.experts-block {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.experts-header {
    text-align: center;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.experts-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    text-align: left;
}

.experts-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.experts-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.experts-grid {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.expert-card {
    position: relative;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.expert-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .experts-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .experts-title {
        text-align: center;
    }

    .experts-subtitle-wrapper {
        align-items: center;
        text-align: center;
    }
    
    .experts-subtitle {
        text-align: center;
    }
    
    .experts-grid {
        justify-content: center;
    }

    .experts-grid {
        gap: 1rem;
    }

    .expert-card {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .experts-block {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    .experts-header {
        margin-bottom: 2rem;
    }

    .experts-grid {
        gap: 0.75rem;
    }

    .expert-card {
        width: 45px;
        height: 45px;
    }
}

