/* Expert Insight Section */
.expert-insight {
    width: 100%;
    background: #181818;
    padding: 80px 90px;
    box-sizing: border-box;
}

.expert-insight-content {
    display: flex;
    gap: 72px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.expert-insight-icon {
    width: 231.829px;
    height: 316.06px;
    flex-shrink: 0;
    overflow: hidden;
}

.expert-insight-text {
    display: flex;
    flex-direction: column;
    gap: 58px;
    width: 466px;
    flex-shrink: 0;
}

.expert-insight-title {
    font-family: 'Costaline', serif;
    font-weight: 100;
    font-size: 48px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    text-align: center;
    white-space: pre;
}

.expert-insight-quote-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.expert-insight-quote,
.expert-insight-author {
    font-family: 'General Sans Variable', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #fff;
    margin: 0;
    white-space: pre-wrap;
}

/* Mobile View (600px and below) */
@media (max-width: 600px) {
    .expert-insight {
        padding: 60px 32px;
    }

    .expert-insight-content {
        flex-direction: column;
        gap: 40px;
        position: relative;
    }

    .expert-insight-icon {
        width: 72.616px;
        height: 99px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .expert-insight-icon img {
        width: 80.26%;
        height: 96.15%;
    }

    .expert-insight-text {
        width: 100%;
        gap: 40px;
        padding-top: 99px;
        text-align: center;
    }

    .expert-insight-title {
        font-size: 24px;
    }

    .expert-insight-quote-wrapper {
        gap: 24px;
    }

    .expert-insight-quote,
    .expert-insight-author {
        font-size: 16px;
    }
}

/* Tablet View (601px to 900px) */
@media (min-width: 601px) and (max-width: 900px) {
    .expert-insight {
        padding: 70px 48px;
    }

    .expert-insight-content {
        gap: 48px;
    }

    .expert-insight-icon {
        width: 180px;
        height: 245px;
    }

    .expert-insight-text {
        width: 400px;
        gap: 48px;
    }

    .expert-insight-title {
        font-size: 36px;
    }

    .expert-insight-quote,
    .expert-insight-author {
        font-size: 20px;
    }

    .expert-insight-quote-wrapper {
        gap: 32px;
    }
}