.expert-banner { padding: 60px 0; background: #fff; }
.expert-banner__card {
    background: linear-gradient(135deg, #0f1923 0%, #1c2535 60%, #0f1923 100%);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.expert-banner__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.expert-banner__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}
.expert-banner__media img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}
@media (max-width: 1024px) { .expert-banner__card { grid-template-columns: 1fr; padding: 40px; } }
@media (max-width: 768px)  { .expert-banner__title { font-size: 26px; } .expert-banner__card { padding: 32px 24px; } }
