/* ============================================
   HOME.CSS — Home page styles (Mobile-First)
   Breakpoints: 320, 375, 425, 768, 1024, 1200, 1620
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --mobile-body-font: 'Inter', sans-serif;
    --mobile-heading-font: 'Anton', sans-serif;
    --mobile-primary: #f49e0d;
    --mobile-text: #1c1d1f;
    --mobile-container-padding: clamp(12px, 4vw, 20px);
    --mobile-page-bg: #FBF9E8;
}

/* ===== HERO SECTION (mobile base) ===== */
.hero {
    position: relative;
    overflow: visible;
    background: #fffceb url('/static/images/career.webp') top center / cover no-repeat;
    z-index: 1;
    padding-top: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: clamp(8px, 2.5vw, 12px);
    padding-top: 0;
    align-items: start;
    padding-bottom: calc(var(--home-info-card-height) / 2);

}

.hero-copy {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 12px;
    margin-bottom: 10px;
    margin-top: 10px;
    border: 1px solid #ffc51b;
    background: rgba(255, 217, 70, 0.1);
    color: #d48400;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: wrap;
    border-radius: 8px;
}

.hero-heading {
    font-size: clamp(34px, 11vw, 62px);
    font-weight: 400;
    color: #1c1d1f;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -2px;
}

.hero-line-italic {
    display: block;
    font-style: italic;
    color: #E27A01;
}

.hero-line {
    display: block;
    font-weight: 400;
}

.hero-career {
    display: inline-block;
    position: relative;
    color: #E27A01;
    padding: 2px 18px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 0;
    animation: careerTextColor 3s ease infinite;
}

.hero-career::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f49e0d;
    border-radius: 4px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: careerBgSlide 3s ease infinite;
}

@keyframes careerBgSlide {
    0%, 10% { transform: scaleX(0); }
    30%, 80% { transform: scaleX(1); }
    95%, 100% { transform: scaleX(0); }
}

@keyframes careerTextColor {
    0%, 10% { color: #E27A01; }
    30%, 80% { color: #1c1d1f; }
    95%, 100% { color: #E27A01; }
}

.btn-enroll-hero {
    display: none;
}

.hero-tagline {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 100%;
    font-size: clamp(10px, 2.8vw, 11px);
    font-weight: 400;
    font-style: italic;
    color: #3f4347;
    line-height: 1.35;
}

.tagline-bar {
    display: inline-block;
    width: 3px;
    min-height: 40px;
    background: #F0B10D;
    border-radius: 2px;
    flex-shrink: 0;
    align-self: stretch;
}

.hero-media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0;
    position: relative;
    object-fit: contain;
    z-index: 1;
}


/* ===== IACET / INFO CARD (mobile base) ===== */
.iacet-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 2;
}

.info-card-wrapper {
    position: relative;
    z-index: 3;
    margin-bottom: calc(var(--home-info-card-height) / -2);
}

.info-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    gap: 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    z-index: 3;
}

.info-card-text {
    width: 100%;
    display: block;
    padding-right: 0;
    padding-top: 18px;
}

.info-card-text > div:last-child {
    width: 100%;
}

.info-card h2 {
    max-width: 170px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #1c1d1f;
}

.info-card p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #2a2a2a;
}

.accent-bar-iacet {
    display: none;
}

.info-card-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    flex-shrink: 0;
}

.iacet-logo {
    width: 72px;
    height: auto;
    object-fit: contain;
    display: block;
}


/* ===== COURSES DARK SECTION (mobile base) ===== */
.courses-section {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
    margin-top: calc(var(--home-info-card-height) / -2);
}

.courses-dark {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 0 auto;
    opacity: 1;
    background: #090909;
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding-top: calc((var(--home-info-card-height) / 2) + 55px) 
}

.courses-dark::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 74px;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: rgba(208, 154, 33, 0.88);
    filter: blur(165px);
    opacity: 0.92;
    border-radius: 50%;
    z-index: 0;
}

.courses-dark::after {
    content: '';
    position: absolute;
    right: -84px;
    top: 122px;
    width: 200px;
    height: 200px;
    background: rgba(88, 58, 4, 0.9);
    filter: blur(155px);
    opacity: 0.6;
    border-radius: 50%;
    z-index: 0;
}

.courses-dark > .container,
.courses-dark .container {
    position: relative;
    z-index: 1;
}

.courses-header {
    position: relative;
    margin-bottom: 28px;
}

.courses-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: 170px;
    border-radius: 999px;
}

.courses-title {
    margin-top: 0;
    margin-bottom: 8px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 7vw, 34px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #ffffff;
    text-align: left;
}

.courses-title em {
    font-style: normal;
    color: #f49e0d;
}

.courses-title br { display: none; }

.courses-subtitle {
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    line-height: 1.2;
}

.courses-subtitle strong {
    font-weight: 600;
    color: #f49e0d;
}

.courses-toolbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.filter-pills {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    padding-bottom: 4px;
    position: relative;
}

.courses-container {
    position: absolute;
    width: 100%;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    top: calc(var(--course-category-btn-height)*3 + 50px);
    margin-bottom: 40px;
}

.courses-toolbar .filter-pills {
    padding-bottom: var(--courses-container-height);
}

.pill {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 16px 20px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #2d2d2d;
    border: 1px solid #4F4F4F;
    text-align: center;
    width: 100%;
    height: 54px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.pill h3 {
    font-weight: 400;
    font-size: 18px;
    color: inherit;
    margin: 0;
}

.pill.active {
    background: #F49E0D;
    border-color: #F49E0D;
    color: #fff;
}

.pill.active h3 { font-weight: 600; }

.pill:hover:not(.active) {
    background: #E27A01;
    border-color: #E27A01;
    color: #fff;
}

.see-all {
    display: none;
}

.courses-grid::-webkit-scrollbar { display: none; }

.program-card {
    width: min(80vw, 335px);
    height: auto;
    flex: 0 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: background 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    aspect-ratio: 335 / 406;
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.program-card-overlay {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 12px;
    border-radius: 20px;
    opacity: 1;
    overflow-x: auto;
    padding-bottom: 12px;
    transition: opacity 0.4s ease;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(191deg, rgba(28, 29, 31, 0.00) 32.85%, #1C1D1F 80.44%);
}

.program-card:hover .program-card-overlay { opacity: 0; }

.program-card::after { display: none; }

.program-card h3,
.program-card h4 {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 50px;
    width: 66%;
    margin: 0;
    font-size: 20px;
    font-weight: 200;
    line-height: 1.2;
    color: #fff;
    z-index: 2;
}

.program-card h3 strong,
.program-card h4 strong {
    color: #F49E0D;
    font-weight: 400;
}

.program-arrow {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 62px;
    height: 20px;
    background-image: url('/static/images/Arrow 1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.program-card-content {
    padding: 16px;
}


/* ===== ACCREDITATION SECTION (mobile base) ===== */
.accreditation-section {
    padding: 38px 0px 24px;
    background: #FFF;
    position: relative;
    z-index: 1;
}

.accreditation-section h2 {
    margin: 0 0 30px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 7.5vw, 36px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #0e0e11;
}

.accreditation-section h2 .highlight { color: #f49e0d; }

.accred-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
    align-items: start;
}

.accred-item .accred-content p a.accredited-providers-list-link {
    word-break: break-all;
}

.accred-content p a { color: #F49E0D; }

.accred-item-divider {
    border-top: 1px solid rgba(28, 29, 31, 0.1);
    padding-top: 20px;
}

.accred-logo {
    margin: 0 0 5px;
    width: 146px;
}

.accred-logo img {
    max-width: 100%;
    object-fit: contain;
    width: 80%;
    height: auto;
}

.accred-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0e0e11;
    margin-bottom: 10px;
    line-height: normal;
}

.accred-content p {
    font-size: 14px;
    font-weight: 400;
    color: #1c1d1f;
    line-height: 1.6;
}

.accreditation-section .featured-tag { display: none; }
.accred-desktop-copy { display: none; }
.accred-mobile-copy { display: block !important; }

.accred-mobile-copy p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: #24313d;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.accred-mobile-copy p:last-child { margin-bottom: 0; }
.accred-mobile-copy a { color: #24313d; word-break: break-word; }

.national-desktop-copy { display: none; }
.national-mobile-copy {
    display: block !important;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: #24313d;
    text-decoration: none;
}

.accred-content .featured-tag { color: #F49E0D; }


/* ===== VR SECTION (mobile base) ===== */
.vr-section {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.vr-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 60%, #0d0d0d 100%);
    padding-top: 13%;
}

.vr-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    display: block;
}

.vr-overlay-img {
    width: 150%;
    height: 100%;
    object-fit: cover;
}

.vr-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 50% 70%,
            rgba(244, 158, 13, 0.35) 0%,
            rgba(244, 158, 13, 0.2) 25%,
            rgba(244, 158, 13, 0) 70%
        ),
        #0f0f0f;
}

.vr-svg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1);
    transition: none;
}

.vr-banner .vr-svg-img {
    animation: svgZoomIn 10s ease-in-out infinite;
}

@keyframes svgZoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.vr-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column-reverse;
}

.vr-person {
    margin-top: -80px;
}

.vr-person picture { display: block; }

.vr-person-img {
    display: block;
    width: 100%;
    max-width: 368px;
    height: auto;
    object-fit: contain;
}

.vr-content {
    position: relative;
    z-index: 3;
    max-width: 320px;
}

.vr-tag {
    font-size: 20px;
    font-weight: 400;
    color: #f49e0d;
    margin-bottom: 10px;
    line-height: 1.2;
}

.vr-heading {
    font-size: 36px;
    font-weight: 700;
    color: #F59C00;
    line-height: 96%;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.vr-heading span {
    color: #fff;
    font-weight: 280;
    font-style: italic;
}

.vr-desc {
    margin-bottom: 18px;
    width: 100%;
    max-width: 368px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    color: #cfcfcf;
}

/* .vr-desc-desktop { display: none; } */
.vr-desc-mobile { display: block; }
.vr-desc-line { display: block; white-space: nowrap; }

.btn-enroll-vr {
    display: inline-block;
    min-width: 124px;
    padding: 12px 24px;
    font-size: 16px;
    background: #f49e0d;
    color: #000;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-enroll-vr:hover {
    background: #ffca44;
    transform: scale(1.05);
}

/* ===== TOP PROGRAMS SECTION (mobile base) ===== */
.top-programs-section {
    padding: 60px 0 100px 0;
    background: #1C1D1F;
    position: relative;
    overflow: hidden;
}

.top-programs-section::before { display: none; }
.top-programs-section::after { display: none; }

.mobile-top-programs-section {
    padding: 56px 0 60px;
    background: #050505;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.mobile-top-programs-section::before {
    content: '';
    display: block;
    position: absolute;
    width: 320px;
    height: 320px;
    background: #BB5503;
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
    top: 36%;
    left: 8%;
    transform: translate(-50%, -50%);
}

.mobile-top-programs-section::after {
    content: '';
    display: block;
    position: absolute;
    width: 300px;
    height: 300px;
    background: #FFC51B;
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    left: 92%;
    top: 22%;
    transform: translate(-50%, -50%);
}

.mobile-top-programs-section .featured-tag-dark {
    padding-top: 0;
    margin: 0 0 10px;
    text-align: center;
    color: #f5a623;
}

.top-programs-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.featured-tag-dark {
    font-size: 16px;
    font-weight: 400;
    color: #f59c00;
    margin-bottom: 2px;
}

.mobile-top-programs-section .top-programs-header {
    margin-bottom: 28px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.mobile-top-programs-section .top-programs-header h2 {
    margin: 0;
    font-size: clamp(36px, 8vw, 44px);
    line-height: 1.02;
    color: #ffffff;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.mobile-top-programs-section .top-programs-header h2 .highlight {
    color: #f5a623;
}

.top-programs-header h2 {
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.top-programs-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    text-align: center;
    max-width: 320px;
    margin: 12px auto 0;
    padding: 0;
}

.top-programs-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 1;
    padding-inline: 12px;
}

.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFD946;
    border: none;
    color: #1C1D1F;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-prev { left: -22px; }
.slider-next { right: -22px; }
.slider-arrow:hover { background: #ffce00; transform: scale(1.1); }

.mobile-top-programs-section .slider-arrow { display: none; }

.top-programs-grid {
    display: flex;
    gap: 24px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.top-programs-grid::-webkit-scrollbar { display: none; }

.mobile-top-programs-section .top-programs-grid {
    gap: 16px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    align-items: stretch;
}

.mobile-top-programs-section .top-programs-grid::-webkit-scrollbar { display: none; }

.top-program-card {
    background: #fff;
    border-radius: 10px;
    width: calc(25% - 18px);
    min-width: calc(25% - 18px);
    max-width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.mobile-top-programs-section .top-program-card {
    flex: 0 0 auto;
    width: min(calc(95vw - 68px), 322px);
    max-width: min(calc(100vw - 68px), 322px);
    min-width: unset;
    border-radius: 16px;
    scroll-snap-align: start;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
    background: #ffffff;
}

.top-program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.mobile-top-programs-section .top-program-image {
    height: 220px;
    background-position: center top;
    background-size: cover;
}

/* Top Program Card Background Images */
.top-program-image.bg-hr { background: url('/static/images/hr-home.webp') center/cover no-repeat; }
.top-program-image.bg-aba { background: url('/static/images/aba-home.webp') center/cover no-repeat; }
.top-program-image.bg-gba { background: url('/static/images/gba-home.webp') center/cover no-repeat; }
.top-program-image.bg-banking { background: url('/static/images/banking-home2.webp') center/cover no-repeat; }
.top-program-image.bg-neuro { background: url('/static/images/neuro-home.webp') center/cover no-repeat; }
.top-program-image.bg-hospital { background: url('/static/images/ha-home.webp') center/cover no-repeat; }

.program-person {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 200px;
    width: auto;
    object-fit: contain;
}

.mobile-top-programs-section .program-person {
    right: 14px;
    height: 220px;
}

.program-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FFC51B;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 5px;
    min-width: 100px;
    text-align: center;
}

.mobile-top-programs-section .program-badge {
    top: 25px;
    left: 22px;
    background-color: #FFC51B;
    min-width: 102px;
    height: 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #111111;
}

.program-image-text {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
}

.program-image-text strong { font-weight: 700; }

.mobile-top-programs-section .program-image-text {
    display: block;
    position: absolute;
    left: 22px;
    right: 136px;
    bottom: 26px;
    top: auto;
    transform: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.mobile-top-programs-section .program-image-text.mobile-only { display: none; }

.mobile-top-programs-section .program-image-text strong {
    display: inline;
    font-weight: 800;
}

.top-program-content {
    padding: 24px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-top-programs-section .top-program-content {
    padding: 20px 20px 22px;
    background: #f8f8f8;
}

.top-program-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1c1d1f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.mobile-top-programs-section .top-program-content h3 {
    font-size: 19px;
    line-height: 1.18;
    margin-bottom: 14px;
    color: #202124;
}

.top-program-content p {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.mobile-top-programs-section .top-program-content p {
    color: #52545a;
    font-family: 'Inter', sans-serif;
}

.btn-view-courses {
    display: block;
    background: #F59C00;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border: 2px solid #F59C00;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.btn-view-courses:hover {
    background: #e08e00;
    border-color: #e08e00;
    color: #fff;
}

.mobile-top-programs-section .btn-view-courses {
    margin-top: auto;
    min-height: 50px;
    height: 50px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f49e0d;
    border: 0;
    color: #ffffff;
    font-weight: 700;
}


/* ============================================
   RESPONSIVE: ≥320px
   ============================================ */
@media (min-width: 320px) {
    /* Styles that apply at 320px and up are already the base styles above */
}


/* ============================================
   RESPONSIVE: ≥375px
   ============================================ */
@media (min-width: 375px) {
    .pill { padding: 14px 16px; font-size: 14px; height: 48px; }
    .info-card h2 { font-size: 18px; }
    .info-card p { font-size: 13px; }
    .mobile-top-programs-section .top-programs-header h2 {
        font-size: clamp(28px, 8vw, 36px);
    }
}


/* ============================================
   RESPONSIVE: ≥425px
   ============================================ */
@media (min-width: 425px) {
    :root { --mobile-container-padding: 20px; }
    .info-card { padding: 24px 28px; }
    .courses-grid { gap: 20px;}
}

/* ============================================
   RESPONSIVE: ≥600px
   ============================================ */
@media (min-width: 600px) {
    .vr-svg-bg{
        background: radial-gradient(circle at 24% 70%, rgba(244, 158, 13, 0.35) -8%, rgba(244, 158, 13, 0.2) 25%, rgba(244, 158, 13, 0) 45%), #0f0f0f;
    }
    .vr-banner{
        padding-top: 0;
    }
    .vr-inner{
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding-right: 20px;
    }
    .vr-person {
        align-self: flex-end;
    }
    .vr-content {
        padding: 60px 0;
    } 
}

/* ============================================
   RESPONSIVE: ≥768px
   ============================================ */
@media (min-width: 768px) {
    .courses-toolbar .filter-pills{
        padding-bottom: calc(var(--courses-container-height) + 50px);
    }
    .filter-pills{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .info-card-text { padding-right: 12px; }
    .courses-container {
        top: calc(var(--course-category-btn-height) + 30px);
    }
    /* .program-card { width: min(44vw, 260px); } */
    .accred-item { grid-template-columns: 146px 1fr; gap: 24px; }
    .vr-heading { font-size: 31px; }
    .home-page .courses-toolbar .filter-pills .pill { width: 225px; padding: 12px 17px; }
}


/* ============================================
   RESPONSIVE: ≥900px (Desktop)
   ============================================ */
@media (min-width: 900px) {
    .home-page .courses-toolbar .filter-pills .pill {
        width: 250px;
    }
}

/* ============================================
   RESPONSIVE: ≥1024px (Desktop)
   ============================================ */
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .hero-copy { padding-bottom: 56px; width:105% }
    .hero-top-badge {
        width: fit-content;
        min-height: 34px;
        padding: 0 14px;
        white-space: nowrap;
        line-height: 1.15;
        margin-top: 0;
    }
    .hero-heading {
        font-size: clamp(55px, 5vw, 90px);
        font-weight: 500;
        line-height: 1.15;
    }
    .btn-enroll-hero {
        display: inline-block;
        background: #f59c00;
        color: #000;
        font-size: 15px;
        font-weight: 600;
        padding: 10px 34px;
        border: 2px solid #f59c00;
        border-radius: 40px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        margin-bottom: 68px;
    }
    .btn-enroll-hero:hover {
        background: #ffda45;
        border-color: #ffda45;
        color: #000;
    }
    .hero-tagline {
        font-size: 14px;
        max-width: 480px;
        color: #555;
        line-height: 1.7;
    }
    .tagline-bar { width: 4px; background: #f49e0d; }
    .hero-media { align-self: auto; margin-right: -13%; }

    .courses-dark{
        padding-top: calc((var(--home-info-card-height) / 2) + 116px);
    }

    section.hero .container.hero-grid { padding-top: 20px; }

    /* Info Card desktop */
    .accent-bar-iacet {
        display: block;
        width: 5px;
        min-height: 100%;
        align-self: stretch;
        background: #ffc51b;
        border-radius: 30px;
        flex-shrink: 0;
    }
    .info-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 45px;
        gap: 40px;
    }
    .info-card-text {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        flex: 1;
        padding-top: 0;
    }
    .info-card h2 {
        font-size: 24px;
        max-width: none;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .info-card p {
        font-size: 15px;
        color: #444;
        line-height: 1.6;
        letter-spacing: -0.2px;
    }
    .info-card-logo { position: static; }
    .iacet-logo { width: clamp(140px, 12.46vw, 202px); }

    /* Courses desktop */
    .courses-dark::before {
        left: -200px; top: -200px; width: 600px; height: 600px;
        background: #E27A01; filter: blur(400px); transform: none;
    }
    .courses-dark::after {
        right: -200px; bottom: -200px; top: auto;
        width: 600px; height: 600px;
        background: #FFD946; filter: blur(600px);
    }
    .courses-title { font-size: 42px; letter-spacing: -1px; }
    .courses-title br { display: inline; }
    .courses-subtitle { font-size: 16px; margin-bottom: 40px; }
    .courses-toolbar { flex-direction: row; justify-content: space-between; }
    .filter-pills { gap: 12px; }
    .pill {
        padding: 12px 36px; border-radius: 15px; width: auto; height: auto;
        background: rgba(217, 217, 217, 0.10);
        border: 1px solid rgba(244, 158, 13, 0.10) !important;
    }
    .pill h3 { font-size: 16px; }
    .courses-header { padding-left: 0; margin-bottom: 24px; }
    .courses-header::before { display: none; }
    .courses-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .top-programs-section .slider-arrow { display: flex; }   
    .program-card {
        width: 100%;
        border-radius: 14px;
        scroll-snap-align: unset;
        aspect-ratio: 350 / 389;
    }
    .program-card img { border-radius: 14px; }
    .program-card:hover img { opacity: 0; }
    .program-card:nth-child(odd):hover { background: #E27A01; }
    .program-card:nth-child(even):hover { background: #F49E0D; }
    .program-card::after {
        display: block;
        content: '';
        position: absolute;
        top: 16px; right: 16px;
        width: 36px; height: 36px;
        background: transparent;
        border: 5px solid #f49e0d;
        border-radius: 8px;
        z-index: 2;
        transition: all 0.4s ease;
    }
    .program-card:hover::after {
        width: 140px; height: 140px;
        border-color: rgba(255, 255, 255, 0.45);
        border-width: 7px; border-radius: 20px;
    }
    .program-card-overlay {
        position: absolute; bottom: 0; left: 0; right: 0;
        height: 70%;
        background: linear-gradient(to top, #1C1D1F 0%, #1C1D1F99 40%, #1C1D1F00 100%);
        width: auto; display: block; border-radius: 0 0 14px 14px;
        overflow-x: visible; padding-bottom: 0;
    }
    .program-card h3, .program-card h4 {
        width: auto;
        bottom: 16px; left: 18px; right: 18px;
        font-size: 20px; font-weight: 300; line-height: 1.35;
    }
    .program-card h3 strong,
    .program-card h4 strong {
        color: #fff;
    }
    .program-arrow{
        display: none;
    }
    .see-all {
        display: flex;
        font-size: 15px; font-weight: 600; color: #fff;
        text-decoration: none; white-space: nowrap;
        justify-content: center; align-items: center;
        margin-left: auto;
    }
    .see-all:hover { text-decoration: underline; }

    /* Accreditation desktop */
    .accreditation-section { padding: 60px 0; }
    .accreditation-section h2 {
        font-size: 42px; margin-bottom: 80px;
        letter-spacing: 0; line-height: 1.1;
    }
    .accreditation-section .featured-tag { display: block; }
    .accred-item { grid-template-columns: 269px 1fr; gap: 60px; margin-bottom: 80px; }
    .accred-logo { width: auto;}
    .accred-content h3 { font-size: 28px; margin-bottom: 20px; }
    .accred-desktop-copy { display: block; }
    .accred-mobile-copy { display: none !important; }
    .national-desktop-copy { display: block; }
    .national-mobile-copy { display: none !important; }

    /* VR desktop */
    .vr-person-img{
        max-width: 510px;
    }
    .vr-banner:hover .vr-svg-img { animation: svgZoomIn 10s ease-out forwards; }
    .vr-banner .vr-svg-img { animation: none; }
    .vr-tag { font-size: 14px; }
    .vr-content{
        max-width: clamp(550px, 47.95vw, 777px);
    }
    .vr-heading { font-size: 42px; font-weight: 800; line-height: 1.15; letter-spacing: -1px; }
    .vr-desc { font-size: 14px; font-weight: 400; color: #ccc; line-height: 1.7; margin-bottom: 28px; max-width: none; }
    /* .vr-desc-desktop { display: block; } */
    .vr-desc-mobile { display: none; }
    .btn-enroll-vr { padding: 12px 36px; font-size: 15px; border-radius: 40px; }
    .vr-overlay-bg { left: -13%; }

    /* Top programs desktop */
    .top-programs-subtitle {
        max-width: none;
    }
    .home-page .courses-toolbar .filter-pills .pill { width: 215px; }
    .top-programs-slider{
        padding-inline: 0;
    }
    .top-program-card { width: calc(33% - 18px); }
}


/* ============================================
   RESPONSIVE: ≥1200px (Large Desktop)
   ============================================ */
@media (min-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ============================================
   RESPONSIVE: ≥1620px (Wide)
   ============================================ */
@media (min-width: 1620px) {
    .info-card { padding: 24px 32px; gap: 30px; }
    .hero { min-height: auto; }
}

/* ============================================
   RESPONSIVE: Tall screens (min-height)
   ============================================ */
@media (min-height: 1081px) {
    .hero-img { height: auto; right: 0; }
}
