/* ==========================================================================
   SECTION 11: INTERNATIONAL STUDENTS
   ========================================================================== */

.pu-insight-page-international-section {
    background-color: #FFFFFF;
    padding: 85px 0 95px;
    color: #0F0445;
    position: relative;
    overflow: hidden;
}

.pu-insight-page-international-header {
    margin-bottom: 36px;
}

.pu-insight-page-international-kicker {
    font-family: var(--pu-insight-font-body);
    font-size: 36px;
    font-weight: 600;
    color: #0F0445;
    display: block;
    margin-bottom: 8px;
}

.pu-insight-page-international-header h2 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.14;
    color: #0F0445;
    margin-bottom: 20px;
    max-width: 900px;
}

.pu-insight-page-international-header p {
    font-family: var(--pu-insight-font-body);
    font-size: 18px;
    line-height: 1.5;
    color: #4A4D54;
    margin: 0 0 14px 0;
}

.pu-insight-page-international-subtitle {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #0F0445;
    margin-top: 36px;
    margin-bottom: 24px;
}

.pu-insight-page-international-slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.pu-insight-page-international-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.pu-insight-page-intl-card {
    background: 
        linear-gradient(#FFFFFF, #FFFFFF) padding-box, 
        linear-gradient(90deg, #B53C72 0%, #5641E0 100%) border-box;
    border: 2.5px solid transparent;
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    height: 270px;
    transition: transform 0.3s ease;
}

.pu-insight-page-intl-card-num {
    background-color: #ECE8FA;
    color: #5641E0;
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 18px;
    padding: 4px 14px;
    border-radius: 8px;
    align-self: flex-start;
    margin-bottom: 18px;
}

.pu-insight-page-intl-card h3 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #0F0445;
    margin-bottom: 12px;
    min-height: 58px;
    display: flex;
    align-items: flex-end;
}

.pu-insight-page-intl-card p {
    font-family: var(--pu-insight-font-body);
    font-size: 16px;
    line-height: 1.48;
    color: #4A4D54;
    margin: 0;
}

.pu-insight-page-international-dots {
    display: none;
}

/* Responsive Mobile Layout for International Section (< 991.98px) */
@media (max-width: 991.98px) {
    .pu-insight-page-international-section {
        padding: 50px 0 60px;
    }

    .pu-insight-page-international-header {
        margin-bottom: 24px;
    }

    .pu-insight-page-international-kicker {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .pu-insight-page-international-header h2 {
        font-size: 28px;
        line-height: 1.18;
        margin-bottom: 14px;
    }

    .pu-insight-page-international-header p {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .pu-insight-page-international-subtitle {
        font-size: 22px;
        margin-top: 24px;
        margin-bottom: 18px;
    }

    .pu-insight-page-international-slider-wrapper {
        overflow: visible;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 12px;
        padding: 0;
    }

    .pu-insight-page-international-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 15px;
        scroll-padding-right: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .pu-insight-page-international-grid::-webkit-scrollbar {
        display: none;
    }

    .pu-insight-page-intl-card {
        flex: 0 0 calc(100% - 54px);
        width: calc(100% - 54px);
        max-width: 336px;
        height: 210px;
        scroll-snap-align: start;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .pu-insight-page-intl-card-num {
        font-size: 14px;
        padding: 3px 12px;
        margin-bottom: 14px;
    }

    .pu-insight-page-intl-card h3 {
        font-size: 20px;
        min-height: auto;
        margin-bottom: 10px;
    }

    .pu-insight-page-intl-card p {
        font-size: 13.5px;
        line-height: 1.42;
		overflow: scroll;
    }

    .pu-insight-page-international-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .pu-insight-page-international-dots .pu-insight-page-dot {
        background-color: #D1D1D8;
    }

    .pu-insight-page-international-dots .pu-insight-page-dot.active {
        background-color: #0F0445;
        width: 24px;
        border-radius: 50px;
    }
}