/* ===== Layout ===== */
.mi-testimonial-section {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.mi-testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mi-testimonial-slider {
    position: relative;
    overflow: hidden;
}

.mi-testimonial-card {
    position: relative;
    background-color: #eaf1f2;
    padding: 40px 90px 40px 100px;
    border-radius: 2px;
}

.mi-quote-icon {
    position: absolute;
    top: 40px;
    left: 30px;
    width: 40px;
}

    .mi-quote-icon img {
        width: 100%;
        display: block;
    }

.mi-testimonial-content {
    max-width: 780px;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

    .mi-testimonial-content.is-fading {
        opacity: 0;
    }

/* ===== Typography ===== */
.mi-testimonial-heading {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 700;
    color: #0d4b73;
    text-align: center;
    margin: 0 0 50px;
    line-height: 1.2;
}

.mi-testimonial-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 12px 0;
}

.mi-recommendation-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1b6e78;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 14px;
    border-bottom: 1px solid #c7d6d8;
    margin-bottom: 18px;
    width: 100%;
    max-width: 780px;
}

    .mi-recommendation-link img.mi-link-arrow {
        width: 12px;
        margin-left: 2px;
    }

.mi-author-name {
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    font-size: 14px;
}

.mi-author-title,
.mi-author-company {
    color: #555555;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* ===== Nav Arrows ===== */
.mi-nav-arrows {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.mi-arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background-color: #1b8fa8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease;
}

    .mi-arrow-btn img {
        width: 14px;
        height: 14px;
    }

    /* ===== Hover ===== */
    .mi-arrow-btn:hover {
        background-color: #146a7d;
    }

.mi-recommendation-link:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
    .mi-testimonial-card {
        padding: 40px 80px 70px 80px;
    }

    .mi-nav-arrows {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .mi-testimonial-heading {
        font-size: 22px;
    }

    .mi-testimonial-card {
        padding: 60px 20px 70px 20px;
    }

    .mi-quote-icon {
        top: 20px;
        left: 20px;
        width: 28px;
    }

    .mi-testimonial-content p {
        font-size: 13px;
    }

    .mi-recommendation-link {
        flex-wrap: wrap;
    }
}
