:root {
    --purple-950: #3a0808;
    --purple-900: #5a1111;
    --purple-800: #7b1d17;
    --purple-700: #b53622;
    --purple-soft: #d69a67;
    --orange: #ffb22e;
    --orange-soft: #ffd27a;
    --ink: #3a120b;
    --muted: #7e675f;
    --line: #f2ded4;
    --paper: #ffffff;
    --soft: #fff8f1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    color: var(--ink);
    background: #fffaf6;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    opacity: 0.32;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.28), rgba(255, 248, 243, 0.24)),
        url("../img/batik-floral.svg") center top / 280px 280px repeat;
}

body > * {
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.inner-body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background:
        linear-gradient(135deg, rgba(255, 250, 246, 0.92), rgba(250, 247, 251, 0.9));
}

.inner-body main {
    flex: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px clamp(20px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(58, 8, 74, 0.06);
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
}

.brand-mark,
.logo-shield {
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-700), var(--orange));
    font-weight: 900;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 10px;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand strong {
    color: var(--purple-800);
    font-size: 18px;
    line-height: 1.05;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
}

.main-nav a {
    padding: 10px 10px;
    border-radius: 8px;
}

.main-nav .unit-menu > span {
    min-height: auto;
    padding: 10px 9px;
    border-radius: 8px;
}

.main-nav .unit-menu div {
    top: 38px;
}

.main-nav a:hover,
.main-nav .nav-cta,
.main-nav .unit-menu:hover > span {
    color: #ffffff;
    background: var(--orange);
}

.main-nav a.active,
.main-nav .unit-menu > span.active {
    color: var(--orange);
    background: #fff3ea;
}

.main-nav .nav-cta.active,
.main-nav .nav-cta:hover {
    color: #ffffff;
    background: var(--orange);
}

.landing-body {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 243, 0.9));
}
.split-title span {
    color: var(--orange);
}
.landing-wrap {
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}

.campus-hero-card {
    overflow: hidden;
    width: 100%;
    max-width: none;
    margin: 0;
    background: rgba(255, 255, 255, 0.76);
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.landing-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px 28px;
    min-height: 92px;
    padding: 16px clamp(28px, 5vw, 64px);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-shield {
    width: 62px;
    height: 62px;
    border-radius: 18px 18px 24px 24px;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.35);
}

.landing-logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.landing-brand strong {
    display: block;
    color: var(--purple-800);
    font-size: 20px;
    line-height: 0.96;
}

.landing-brand small {
    display: block;
    margin-top: 5px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
}

.landing-menu {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.2vw, 22px);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.landing-menu > a,
.unit-menu > span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    cursor: pointer;
}

.landing-menu > a.active,
.landing-menu > a:hover,
.unit-menu:hover > span {
    color: var(--orange);
}

.landing-menu > a.active::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--orange);
}

.unit-menu {
    position: relative;
}

.unit-menu div {
    position: absolute;
    top: 42px;
    left: 50%;
    z-index: 30;
    display: none;
    width: 190px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(32, 4, 45, 0.16);
    transform: translateX(-50%);
}

.unit-menu:hover div {
    display: grid;
}

.unit-menu div a {
    padding: 10px;
    border-radius: 6px;
}

.unit-menu div a:hover {
    color: #ffffff;
    background: var(--purple-700);
}

.landing-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.pmb-button,
.login-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 900;
}

.pmb-button {
    color: #ffffff;
    background: var(--orange);
    box-shadow: 0 14px 28px rgba(255, 131, 47, 0.28);
}

.login-button {
    color: var(--purple-800);
    background: #ffffff;
    border: 1px solid #d9c9e4;
}

.hero-scene {
    position: relative;
    min-height: 640px;
    padding: 78px 42px 156px;
    color: #ffffff;
    background:
        radial-gradient(circle at 10% 64%, rgba(255, 131, 47, 0.3), transparent 10%),
        radial-gradient(circle at 95% 72%, rgba(255, 131, 47, 0.9), transparent 10%),
        linear-gradient(90deg, rgba(94, 8, 125, 0.871), rgba(94, 13, 155, 0.88)),
        url("../img/container.jpg") center/cover;
}

.hero-scene::before,
.hero-scene::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.hero-scene::before {
    top: 170px;
    left: 48px;
    width: 132px;
    height: 132px;
    border: 42px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.hero-scene::after {
    right: 70px;
    bottom: 210px;
    width: 88px;
    height: 88px;
    opacity: 0.75;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 18px 18px;
}

.hero-center {
    position: relative;
    z-index: 6;
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}

.hero-kicker {
    margin: 0 0 14px;
    color: #f6d8c1;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-center h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4.8vw, 66px);
    line-height: 1.08;
    letter-spacing: 0;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.hero-center h1 span {
    display: block;
    color: var(--orange);
}

.hero-center p:not(.hero-kicker) {
    max-width: 640px;
    margin: 22px auto 0;
    color: #eadfed;
    font-size: 19px;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.primary-hero,
.outline-hero {
    display: inline-flex;
    min-width: 190px;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 900;
}

.primary-hero {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
}

.outline-hero {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.student {
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: auto;
    height: min(60vw, 560px);
    max-height: 96%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.38));
}

.student-left {
    left: clamp(48px, 9vw, 150px);
}

.student-right {
    right: clamp(58px, 8vw, 150px);
    height: min(55vw, 520px);
}

.hero-benefits {
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    z-index: 7;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 820px;
    margin: 0 auto;
}

.hero-benefits article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.hero-benefits span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--orange);
    background: var(--purple-700);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.hero-benefits h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.hero-benefits p {
    margin: 0;
    color: #f0e8f2;
    font-size: 13px;
    line-height: 1.45;
}

.landing-content {
    position: relative;
    overflow: hidden;
    padding: 72px clamp(22px, 5vw, 72px) 82px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 248, 243, 0.82) 100%);
}

.landing-content::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    opacity: 0.42;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.32), rgba(255, 248, 243, 0.26)),
        url("../img/batik-floral.svg") center top / 260px 260px repeat;
}

.landing-content::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 179, 111, 0.18), transparent 18%),
        radial-gradient(circle at 92% 52%, rgba(100, 32, 120, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 250, 246, 0.58));
}

.landing-section-head,
.landing-card-grid {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.landing-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 0;
    margin-bottom: 24px;
    padding-top: 42px;
}

.landing-section-head:first-child {
    padding-top: 0;
}

.landing-section-head p {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-section-head h2,
.landing-section-head h3 {
    max-width: 720px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.16;
}

.landing-section-head a {
    flex: 0 0 auto;
    color: var(--purple-700);
    font-weight: 900;
}

.landing-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 34px;
}

.landing-card-grid.two-card-grid,
.landing-card-grid.gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-info-card,
.landing-gallery-card {
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid #f0e5f4;
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(58, 8, 74, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.landing-info-card:hover,
.landing-gallery-card:hover,
.document-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(58, 8, 74, 0.12);
}

.landing-info-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-700), var(--orange));
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.landing-info-card h3,
.landing-gallery-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.25;
}

.landing-info-card p,
.landing-gallery-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.card-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 40px;
    margin-top: auto;
    padding: 0 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-700), var(--orange));
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(255, 131, 47, 0.2);
}

.card-detail-link:hover {
    transform: translateY(-1px);
}

.card-detail-link.is-disabled {
    opacity: 0.72;
}

.gallery-grid {
    margin-bottom: 0;
}

.gallery-thumb {
    display: flex;
    min-height: 120px;
    align-items: end;
    margin: -24px -24px 18px;
    padding: 18px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 22%, rgba(255, 179, 111, 0.78), transparent 26%),
        linear-gradient(135deg, var(--purple-800), var(--purple-700));
    border-radius: 12px 12px 0 0;
}

.gallery-thumb.has-image {
    background-position: center;
    background-size: cover;
}

.gallery-thumb span {
    display: inline-flex;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.prodi-showcase,
.campus-stats,
.news-magazine,
.announcement-strip,
.gallery-collage {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.landing-band {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: min(1280px, 100%);
    margin: 58px auto 0;
    padding: clamp(36px, 5vw, 58px) clamp(22px, 5vw, 58px);
    border-radius: 26px;
}

.landing-band::before,
.landing-band::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 74px;
    content: "";
    pointer-events: none;
    opacity: 0.35;
    border: 7px solid rgba(255, 255, 255, 0.18);
}

.landing-band::before {
    left: -42px;
    border-right: 0;
    border-radius: 0 42px 42px 0;
}

.landing-band::after {
    right: -42px;
    border-left: 0;
    border-radius: 42px 0 0 42px;
}

.landing-band .landing-section-head {
    padding-top: 0;
}

.landing-band-dark {
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 131, 47, 0.34), transparent 22%),
        radial-gradient(circle at 12% 90%, rgba(255, 179, 111, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(33, 3, 47, 0.98), rgba(100, 32, 120, 0.95));
    box-shadow: 0 26px 70px rgba(33, 3, 47, 0.2);
}

.landing-band-dark .landing-section-head h3,
.landing-band-dark .landing-section-head a {
    color: #ffffff;
}

.landing-band-dark .landing-section-head p {
    color: var(--orange-soft);
}

.landing-band-dark .news-list article {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.landing-band-dark .news-list h3 {
    color: #ffffff;
}

.landing-band-dark .news-list p {
    color: rgba(255, 255, 255, 0.76);
}

.landing-band-dark .news-list a {
    color: var(--orange-soft);
}

.landing-band-soft {
    background:
        radial-gradient(circle at 88% 16%, rgba(255, 131, 47, 0.2), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 243, 0.82));
    border: 1px solid rgba(234, 223, 240, 0.9);
    box-shadow: 0 24px 62px rgba(58, 8, 74, 0.08);
}

.landing-band-gallery {
    background:
        radial-gradient(circle at 8% 20%, rgba(100, 32, 120, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 243, 0.9));
    border: 1px solid rgba(234, 223, 240, 0.8);
}

.prodi-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 22px;
    margin-bottom: 44px;
}

.prodi-featured,
.prodi-stack article,
.news-main,
.news-list article,
.announcement-strip article,
.gallery-collage article {
    border: 1px solid #f0e5f4;
    box-shadow: 0 18px 42px rgba(58, 8, 74, 0.08);
}

.prodi-featured {
    position: relative;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 16%, rgba(255, 179, 111, 0.72), transparent 26%),
        linear-gradient(135deg, rgba(75, 18, 96, 0.96), rgba(100, 32, 120, 0.9));
    border-radius: 18px;
}

.prodi-featured::before {
    position: absolute;
    top: -72px;
    right: -42px;
    width: 210px;
    height: 210px;
    content: "";
    border: 42px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.prodi-featured > * {
    position: relative;
    z-index: 1;
}

.prodi-featured span,
.prodi-stack span,
.news-main span,
.news-list span,
.announcement-strip span,
.gallery-collage span {
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 30px;
    padding: 7px 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-700), var(--orange));
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.prodi-featured h3,
.news-main h3 {
    max-width: 620px;
    margin: 24px 0 12px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.prodi-featured p,
.news-main p {
    max-width: 620px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.6;
}

.prodi-stack,
.news-list {
    display: grid;
    gap: 18px;
}

.prodi-stack article,
.news-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
}

.prodi-stack h3,
.news-list h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.22;
}

.prodi-stack p,
.news-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.prodi-stack a,
.news-list a,
.announcement-strip a,
.gallery-collage a {
    width: max-content;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.campus-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
    margin-bottom: 28px;
}

.campus-stats article {
    padding: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 179, 111, 0.42), transparent 28%),
        linear-gradient(135deg, rgba(75, 18, 96, 0.96), rgba(100, 32, 120, 0.92));
    border-radius: 16px;
}

.campus-stats strong {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
}

.campus-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.news-magazine {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 22px;
    margin-bottom: 34px;
}

.news-main {
    display: flex;
    min-height: 380px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(33, 3, 47, 0.88), rgba(100, 32, 120, 0.78)),
        url("../img/container.jpg") center/cover;
    border-radius: 18px;
}

.announcement-strip {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
}

.announcement-strip article {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
}

.announcement-strip h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 22px;
}

.announcement-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.gallery-collage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-auto-rows: 210px;
    gap: 18px;
}

.gallery-collage article {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 22%, rgba(255, 179, 111, 0.72), transparent 26%),
        linear-gradient(135deg, var(--purple-800), var(--purple-700));
    background-position: center;
    background-size: cover;
    border-radius: 18px;
}

.gallery-collage article.is-large {
    grid-row: span 2;
}

.gallery-collage h3 {
    margin: 16px 0 8px;
    font-size: 26px;
    line-height: 1.14;
}

.gallery-collage p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.gallery-collage a {
    margin-top: 16px;
    color: #ffffff;
}

.landing-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    padding: 18px 52px;
    overflow: hidden;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid var(--line);
}

.landing-footer p {
    margin: 0 0 12px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-links a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #ffffff;
    background: var(--purple-700);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.footer-dots {
    width: 110px;
    height: 46px;
    opacity: 0.7;
    background-image: radial-gradient(var(--purple-soft) 2px, transparent 2px);
    background-size: 16px 16px;
}

.footer-arc {
    width: 180px;
    height: 70px;
    align-self: flex-end;
    background: var(--orange);
    border-radius: 100px 100px 0 0;
}

.site-footer {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: center;
    padding: 24px clamp(20px, 6vw, 86px);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid var(--line);
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-weight: 600;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px clamp(20px, 6vw, 86px) 76px;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 18%, rgba(255, 131, 47, 0.42), transparent 19%),
        linear-gradient(135deg, var(--purple-900), var(--purple-700));
}

.page-hero::after {
    position: absolute;
    right: clamp(26px, 6vw, 92px);
    bottom: 26px;
    width: 110px;
    height: 62px;
    content: "";
    opacity: 0.45;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 16px 16px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
}

.page-hero p:last-child {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 18px 0 0;
    color: #efe4f2;
    font-size: 18px;
    line-height: 1.7;
}

.section {
    padding: 72px clamp(20px, 6vw, 86px);
}

.content-box,
.program-grid article {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(73, 18, 94, 0.08);
}

.content-box h2 {
    margin: 0 0 12px;
    font-size: 32px;
}

.content-image {
    display: block;
    width: 100%;
    max-height: 460px;
    margin: 0 0 24px;
    object-fit: cover;
    border-radius: 8px;
}

.content-text,
.content-box p,
.program-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.detail-section {
    background: transparent;
}

.detail-hero h1 {
    max-width: 980px;
}

.detail-box {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 36px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 22px 52px rgba(58, 8, 74, 0.1);
}

.detail-image {
    display: block;
    width: 100%;
    max-height: 460px;
    margin: 0 0 24px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.detail-meta div {
    padding: 16px;
    background: #fff8f3;
    border: 1px solid #f0e1ea;
    border-radius: 10px;
}

.detail-meta span {
    display: block;
    margin-bottom: 6px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-meta strong {
    color: var(--ink);
    font-size: 15px;
}

.detail-content-block + .detail-content-block {
    margin-top: 28px;
}

.detail-content-block h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
}

.detail-text {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.detail-download {
    margin-top: 24px;
}

.detail-back {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 18px;
    color: var(--purple-800);
    background: #ffffff;
    border: 1px solid #dac7e4;
    border-radius: 8px;
    font-weight: 900;
}

.listing-section {
    background: transparent;
}

.public-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.public-list-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(58, 8, 74, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.public-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(58, 8, 74, 0.12);
}

.public-list-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    background:
        radial-gradient(circle at 88% 22%, rgba(255, 179, 111, 0.78), transparent 26%),
        linear-gradient(135deg, var(--purple-800), var(--purple-700));
}

.public-list-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.public-list-card span {
    display: inline-flex;
    width: max-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-700), var(--orange));
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.public-list-card h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.25;
}

.public-list-card p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.document-section {
    background: transparent;
}

.section-title-row,
.document-grid {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-title-row h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 40px);
}

.section-title-row > span {
    flex: 0 0 auto;
    color: var(--purple-700);
    font-weight: 900;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.document-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(58, 8, 74, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.document-icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-800), var(--orange));
    border-radius: 16px;
    font-size: 14px;
    font-weight: 900;
}

.document-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.document-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.25;
}

.document-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
}

.download-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    background: var(--orange);
    border-radius: 8px;
    font-weight: 900;
}

.empty-state {
    text-align: center;
}

.contact-section {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(58, 8, 74, 0.08);
}

.contact-info h2 {
    margin: 0 0 22px;
    font-size: 30px;
}

.contact-info dl,
.contact-info dd {
    margin: 0;
}

.contact-info dl {
    display: grid;
    gap: 18px;
}

.contact-info dt {
    margin-bottom: 6px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-info dd {
    color: var(--muted);
    line-height: 1.65;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.contact-action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: var(--purple-800);
    background: #ffffff;
    border: 1px solid #dac7e4;
    border-radius: 8px;
    font-weight: 900;
}

.contact-action.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-700), var(--orange));
    border-color: transparent;
    box-shadow: 0 12px 26px rgba(255, 131, 47, 0.18);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.contact-form label,
.contact-form .full,
.contact-form button,
.form-alert {
    grid-column: 1 / -1;
}

.contact-form label:not(.full) {
    grid-column: span 1;
}

.contact-form label {
    display: block;
}

.contact-form span {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fffefd;
    color: var(--ink);
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 131, 47, 0.16);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    min-height: 48px;
    border: 0;
    color: #ffffff;
    background: var(--orange);
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.form-alert {
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.form-alert p {
    margin: 0;
}

.form-alert p + p {
    margin-top: 6px;
}

.form-alert.success {
    color: #1f6f43;
    background: #eaf8ef;
}

.form-alert.error {
    color: #8a2732;
    background: #fff0f2;
}

.contact-map {
    grid-column: 1 / -1;
    overflow: hidden;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(58, 8, 74, 0.08);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    margin-top: 12px;
    border: 0;
    border-radius: 10px;
}

.map-empty {
    margin-top: 12px;
    padding: 34px;
    background:
        radial-gradient(circle at 92% 18%, rgba(255, 131, 47, 0.15), transparent 20%),
        linear-gradient(135deg, #fff8f3, #ffffff);
    border: 1px dashed #dcc9e6;
    border-radius: 10px;
}

.map-empty h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 24px;
}

.map-empty p {
    max-width: 680px;
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
}

.map-empty a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: #ffffff;
    background: var(--orange);
    border-radius: 8px;
    font-weight: 900;
}

.info-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.info-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.info-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(33, 3, 47, 0.58);
    backdrop-filter: blur(5px);
}

.info-popup-card {
    position: relative;
    overflow: hidden;
    width: min(420px, calc(100vw - 32px));
    padding: 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 131, 47, 0.2), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    box-shadow: 0 24px 66px rgba(33, 3, 47, 0.32);
    transform: translateY(14px) scale(0.98);
    transition: transform 180ms ease;
}

.info-popup.is-visible .info-popup-card {
    transform: translateY(0) scale(1);
}

.info-popup-card::before {
    position: absolute;
    right: -30px;
    bottom: -42px;
    width: 110px;
    height: 110px;
    content: "";
    opacity: 0.16;
    background:
        radial-gradient(circle, transparent 42%, var(--purple-700) 43% 50%, transparent 51%),
        radial-gradient(circle at 50% 50%, var(--orange) 0 12%, transparent 13%);
    border-radius: 50%;
}

.info-popup-image {
    display: block;
    width: 100%;
    height: clamp(170px, 22vw, 210px);
    object-fit: cover;
    object-position: center top;
    background: #fff8f3;
    filter: saturate(1.12) contrast(1.04) brightness(1.04);
}

.info-popup-body {
    position: relative;
    z-index: 1;
    padding: 20px 22px 22px;
}

.info-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--purple-800);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    z-index: 2;
}

.info-popup-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 10px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-700), var(--orange));
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.info-popup-date {
    margin: 0 0 6px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.info-popup-card h2 {
    max-width: 340px;
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.16;
}

.info-popup-body p:not(.info-popup-date) {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.info-popup-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.info-popup-actions a,
.info-popup-actions button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.info-popup-actions a {
    color: #ffffff;
    background: var(--orange);
}

.info-popup-actions button {
    color: var(--purple-800);
    background: #ffffff;
    border: 1px solid #dac7e4;
}

@media (max-width: 1180px) {
    .landing-nav {
        grid-template-columns: 1fr;
    }

    .landing-menu {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .landing-actions {
        justify-content: flex-start;
    }

    .student {
        opacity: 0.24;
    }

    .hero-center {
        max-width: 620px;
    }

    .landing-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prodi-showcase,
    .news-magazine {
        grid-template-columns: 1fr;
    }

    .campus-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .landing-wrap {
        padding: 14px;
    }

    .hero-scene {
        min-height: auto;
        padding: 58px 22px 28px;
    }

    .student {
        display: block;
        bottom: 150px;
        height: clamp(220px, 52vw, 330px);
        max-height: none;
        opacity: 0.36;
    }

    .student-left {
        left: -24px;
    }

    .student-right {
        right: -24px;
        height: clamp(210px, 48vw, 310px);
    }

    .hero-center {
        margin-bottom: 34px;
    }

    .hero-center p:not(.hero-kicker) {
        font-size: 17px;
    }

    .hero-benefits {
        position: relative;
        bottom: auto;
        grid-template-columns: 1fr;
        max-width: none;
    }

    .landing-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .landing-card-grid {
        grid-template-columns: 1fr;
    }

    .prodi-showcase,
    .news-magazine,
    .gallery-collage {
        grid-template-columns: 1fr;
    }

    .landing-band {
        width: 100%;
        margin-top: 42px;
        border-radius: 20px;
    }

    .prodi-featured,
    .news-main {
        min-height: 310px;
    }

    .prodi-stack article,
    .news-list article,
    .announcement-strip article {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .campus-stats {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-collage {
        grid-auto-rows: minmax(230px, auto);
    }

    .gallery-collage article.is-large {
        grid-row: span 1;
    }

    .public-card-grid {
        grid-template-columns: 1fr;
    }

    .document-grid {
        grid-template-columns: 1fr;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }

    .document-card {
        grid-template-columns: 1fr;
    }

    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .contact-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .landing-footer {
        align-items: center;
        flex-direction: column;
        padding: 26px;
    }

    .footer-arc,
    .footer-dots {
        display: none;
    }

    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .student {
        bottom: 205px;
        height: clamp(190px, 64vw, 270px);
        opacity: 0.42;
    }

    .student-left {
        left: -42px;
    }

    .student-right {
        right: -42px;
        height: clamp(180px, 60vw, 250px);
    }

    .prodi-featured,
    .news-main {
        min-height: 280px;
        padding: 24px;
    }

    .landing-band {
        padding: 28px 18px;
    }

    .landing-band::before,
    .landing-band::after {
        display: none;
    }

    .prodi-featured h3,
    .news-main h3 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .campus-stats {
        grid-template-columns: 1fr;
    }

    .announcement-strip article {
        padding: 18px;
    }
    .split-title {
    color: var(--purple-950);
}


}

/* INABA-inspired portal refinements */
.landing-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 9px clamp(18px, 5vw, 72px);
    color: rgba(255, 255, 255, 0.88);
    background: linear-gradient(90deg, var(--purple-950), var(--purple-800));
    font-size: 13px;
    font-weight: 800;
}

.landing-topbar div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.landing-topbar a {
    color: #ffffff;
}

.landing-nav {
    box-shadow: 0 14px 34px rgba(33, 3, 47, 0.09);
}

.hero-scene {
    min-height: 690px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.portal-access {
    position: relative;
    z-index: 12;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: min(1180px, calc(100% - 44px));
    margin: -58px auto 0;
}

.portal-access a {
    display: grid;
    gap: 8px;
    min-height: 112px;
    padding: 22px;
    color: var(--purple-950);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(58, 8, 74, 0.12);
    backdrop-filter: blur(12px);
}

.portal-access span {
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 28px;
    padding: 6px 11px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-700), var(--orange));
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.portal-access strong {
    font-size: 17px;
    line-height: 1.25;
}

.landing-content {
    padding-top: clamp(82px, 8vw, 118px);
}

@media (max-width: 920px) {
    .portal-access {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -34px;
    }
}

@media (max-width: 540px) {
    .landing-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-scene {
        min-height: auto;
    }

    .portal-access {
        grid-template-columns: 1fr;
        width: calc(100% - 28px);
        margin-top: -20px;
    }

    .portal-access a {
        min-height: auto;
        padding: 18px;
    }
}

/* Hero carousel refinement */
.hero-scene[data-hero-carousel] {
    background: linear-gradient(90deg, rgba(73, 7, 96, 0.92), rgba(99, 17, 128, 0.86));
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image:
        radial-gradient(circle at 12% 64%, rgba(255, 131, 47, 0.32), transparent 12%),
        radial-gradient(circle at 92% 72%, rgba(255, 131, 47, 0.8), transparent 13%),
        linear-gradient(90deg, rgba(74, 7, 101, 0.9), rgba(97, 12, 148, 0.82)),
        var(--hero-slide-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: opacity 720ms ease, transform 6200ms ease;
}

.hero-slide:nth-child(2) {
    background-image:
        radial-gradient(circle at 16% 30%, rgba(255, 183, 92, 0.26), transparent 14%),
        radial-gradient(circle at 88% 58%, rgba(109, 28, 138, 0.45), transparent 18%),
        linear-gradient(90deg, rgba(38, 5, 67, 0.92), rgba(112, 33, 120, 0.84)),
        var(--hero-slide-image);
}

.hero-slide:nth-child(3) {
    background-image:
        radial-gradient(circle at 8% 76%, rgba(255, 131, 47, 0.34), transparent 13%),
        radial-gradient(circle at 96% 26%, rgba(255, 174, 91, 0.34), transparent 16%),
        linear-gradient(90deg, rgba(78, 9, 101, 0.94), rgba(54, 5, 86, 0.82)),
        var(--hero-slide-image);
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-scene[data-hero-carousel]::before,
.hero-scene[data-hero-carousel]::after,
.hero-scene[data-hero-carousel] .student,
.hero-scene[data-hero-carousel] .hero-center,
.hero-scene[data-hero-carousel] .hero-benefits {
    z-index: 2;
}

.hero-copy {
    display: none;
}

.hero-copy.is-active {
    display: block;
    animation: heroCopyIn 520ms ease both;
}

.hero-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.hero-carousel-dots button {
    width: 34px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: width 220ms ease, background 220ms ease;
}

.hero-carousel-dots button.is-active {
    width: 56px;
    background: var(--orange);
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 820px) {
    .hero-carousel-dots {
        margin-top: 16px;
    }

    .hero-carousel-dots button {
        width: 26px;
    }

    .hero-carousel-dots button.is-active {
        width: 42px;
    }
}

/* Full hero horizontal slider */
.hero-scene[data-hero-carousel] {
    padding: 0;
    min-height: 640px;
}

.hero-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    width: 100%;
    transform: translateX(0);
    transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-panel {
    position: relative;
    flex: 0 0 100%;
    min-height: 640px;
    padding: 78px 42px 156px;
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-panel .hero-slide {
    opacity: 1;
    transform: none;
    transition: none;
}

.hero-panel:nth-child(2) .hero-slide {
    background-image:
        radial-gradient(circle at 14% 28%, rgba(255, 183, 92, 0.26), transparent 14%),
        radial-gradient(circle at 88% 58%, rgba(109, 28, 138, 0.45), transparent 18%),
        linear-gradient(90deg, rgba(38, 5, 67, 0.92), rgba(112, 33, 120, 0.84)),
        var(--hero-slide-image);
}

.hero-panel:nth-child(3) .hero-slide {
    background-image:
        radial-gradient(circle at 8% 76%, rgba(255, 131, 47, 0.34), transparent 13%),
        radial-gradient(circle at 96% 26%, rgba(255, 174, 91, 0.34), transparent 16%),
        linear-gradient(90deg, rgba(78, 9, 101, 0.94), rgba(54, 5, 86, 0.82)),
        var(--hero-slide-image);
}

.hero-panel .student,
.hero-panel .hero-center,
.hero-panel .hero-benefits {
    position: relative;
    z-index: 3;
}

.hero-panel .student {
    position: absolute;
}

.hero-panel.is-active .hero-center {
    animation: heroPanelContentIn 540ms ease both;
}

.hero-scene[data-hero-carousel] > .hero-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 106px;
    z-index: 8;
    transform: translateX(-50%);
    margin-top: 0;
}

@keyframes heroPanelContentIn {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 820px) {
    .hero-scene[data-hero-carousel],
    .hero-panel {
        min-height: auto;
    }

    .hero-panel {
        padding: 58px 22px 86px;
    }

    .hero-scene[data-hero-carousel] > .hero-carousel-dots {
        bottom: 22px;
    }
}

/* Warm yellow-red palette override */
.hero-scene,
.hero-scene[data-hero-carousel] {
    background: linear-gradient(90deg, rgba(84, 14, 8, 0.94), rgba(183, 52, 27, 0.86));
}

.hero-slide,
.hero-panel .hero-slide {
    background-image:
        radial-gradient(circle at 12% 64%, rgba(255, 178, 46, 0.42), transparent 12%),
        radial-gradient(circle at 92% 72%, rgba(255, 92, 44, 0.72), transparent 13%),
        linear-gradient(90deg, rgba(83, 14, 8, 0.92), rgba(196, 58, 26, 0.84)),
        var(--hero-slide-image);
}

.hero-slide:nth-child(2),
.hero-panel:nth-child(2) .hero-slide {
    background-image:
        radial-gradient(circle at 16% 30%, rgba(255, 210, 122, 0.34), transparent 14%),
        radial-gradient(circle at 88% 58%, rgba(197, 51, 25, 0.52), transparent 18%),
        linear-gradient(90deg, rgba(72, 10, 6, 0.94), rgba(205, 78, 24, 0.84)),
        var(--hero-slide-image);
}

.hero-slide:nth-child(3),
.hero-panel:nth-child(3) .hero-slide {
    background-image:
        radial-gradient(circle at 8% 76%, rgba(255, 178, 46, 0.42), transparent 13%),
        radial-gradient(circle at 96% 26%, rgba(255, 118, 42, 0.38), transparent 16%),
        linear-gradient(90deg, rgba(91, 12, 8, 0.94), rgba(153, 38, 23, 0.84)),
        var(--hero-slide-image);
}

.hero-center h1 span,
.landing-section-head p,
.primary-hero,
.pmb-button {
    color: #ffb22e;
}

.primary-hero,
.pmb-button,
.info-popup-actions a,
.hero-carousel-dots button.is-active,
.news-feature > span,
.news-list article span,
.announcement-strip article > span,
.prodi-card .prodi-level,
.prodi-main .prodi-level,
.gallery-collage article span {
    background: linear-gradient(135deg, #7b1d17, #e75624 58%, #ffb22e);
}

.landing-band-dark,
.landing-band-gallery .gallery-collage article {
    background:
        radial-gradient(circle at 85% 16%, rgba(255, 178, 46, 0.28), transparent 18%),
        linear-gradient(135deg, #6c140f, #ad2b1e 54%, #d85224);
}

.landing-band-soft {
    background:
        linear-gradient(rgba(255, 248, 241, 0.88), rgba(255, 248, 241, 0.88)),
        var(--batik-pattern, none);
}

.portal-access,
.landing-footer {
    background: linear-gradient(90deg, #fff7ed, #fff0dc);
}

.social-links a,
.footer-arc,
.logo-shield,
.hero-benefits article span {
    background: linear-gradient(135deg, #7b1d17, #e75624 55%, #ffb22e);
}

/* Button contrast after warm palette */
.primary-hero,
.pmb-button,
.info-popup-actions a,
.news-feature > a,
.news-list article a,
.announcement-strip article a,
.gallery-collage article a,
.prodi-card a,
.prodi-main a {
    color: #ffffff;
}

.hero-center h1 span {
    color: #ffb22e;
}

/* Final yellow-gold palette override */
:root {
    --purple-950: #2f2300;
    --purple-900: #4a3600;
    --purple-800: #6f5100;
    --purple-700: #d7a900;
    --purple-soft: #f0d782;
    --orange: #f6c400;
    --orange-soft: #ffe28a;
    --ink: #2f2300;
    --muted: #74684a;
    --line: #f1dfad;
    --soft: #fff9df;
}

.hero-scene,
.hero-scene[data-hero-carousel],
.hero-slide,
.hero-panel .hero-slide {
    background-image:
        radial-gradient(circle at 12% 64%, rgba(255, 226, 138, 0.46), transparent 12%),
        radial-gradient(circle at 92% 72%, rgba(246, 196, 0, 0.54), transparent 13%),
        linear-gradient(90deg, rgba(68, 47, 0, 0.86), rgba(190, 149, 0, 0.74)),
        var(--hero-slide-image);
}

.hero-panel:nth-child(2) .hero-slide,
.hero-panel:nth-child(3) .hero-slide,
.hero-slide:nth-child(2),
.hero-slide:nth-child(3) {
    background-image:
        radial-gradient(circle at 16% 30%, rgba(255, 232, 151, 0.42), transparent 14%),
        radial-gradient(circle at 88% 58%, rgba(246, 196, 0, 0.42), transparent 18%),
        linear-gradient(90deg, rgba(55, 39, 0, 0.88), rgba(174, 137, 0, 0.72)),
        var(--hero-slide-image);
}

.hero-center h1 span,
.landing-section-head p,
.landing-section-head h3 span,
.landing-section-head h2 span,
.section-title span {
    color: #f6c400 !important;
}

.primary-hero,
.pmb-button,
.info-popup-actions a,
.hero-carousel-dots button.is-active,
.news-feature > span,
.news-list article span,
.announcement-strip article > span,
.prodi-card .prodi-level,
.prodi-main .prodi-level,
.gallery-collage article span,
.hero-benefits article span,
.logo-shield,
.social-links a {
    color: #2f2300 !important;
    background: linear-gradient(135deg, #fff0a8, #f6c400 58%, #c99a00) !important;
}

.prodi-main,
.campus-stat,
.news-feature,
.landing-band-gallery .gallery-collage article,
.gallery-collage article {
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 240, 168, 0.24), transparent 19%),
        linear-gradient(135deg, #5b4100, #9d7700 58%, #d7a900) !important;
}

.prodi-main h3,
.prodi-main p,
.campus-stat strong,
.campus-stat span,
.news-feature h3,
.news-feature p,
.gallery-collage article h3,
.gallery-collage article p {
    color: #ffffff !important;
}

.prodi-main a,
.news-feature a,
.news-list article a,
.announcement-strip article a,
.gallery-collage article a,
.prodi-card a {
    color: #2f2300 !important;
    background: linear-gradient(135deg, #fff0a8, #f6c400 58%, #c99a00) !important;
}

.landing-band-dark,
.landing-band-soft,
.landing-band-gallery {
    background:
        linear-gradient(rgba(255, 249, 223, 0.86), rgba(255, 249, 223, 0.86)),
        var(--batik-pattern, none) !important;
}

.landing-band-dark .landing-section-head h3,
.landing-band-dark .landing-section-head a,
.landing-band-gallery .landing-section-head h3,
.landing-band-gallery .landing-section-head a {
    color: #2f2300 !important;
}

.portal-access,
.landing-footer {
    background: linear-gradient(90deg, #fffbea, #fff3bd) !important;
}

.footer-arc {
    background: #f6c400 !important;
}

/* Program studi as three equal cards */
.prodi-showcase.prodi-three-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.prodi-three-cards .prodi-card-item {
    position: relative;
    min-height: 280px;
    padding: 34px 32px;
    overflow: hidden;
    border: 1px solid rgba(246, 196, 0, 0.28);
    border-radius: 18px;
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 240, 168, 0.24), transparent 18%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 234, 0.9));
    box-shadow: 0 22px 50px rgba(87, 62, 0, 0.12);
}

.prodi-three-cards .prodi-card-item::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    content: "";
    background: linear-gradient(180deg, #fff0a8, #f6c400, #c99a00);
}

.prodi-three-cards .prodi-card-item span {
    display: inline-flex;
    min-width: 46px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    color: #2f2300;
    font-weight: 900;
    background: linear-gradient(135deg, #fff0a8, #f6c400 58%, #c99a00);
}

.prodi-three-cards .prodi-card-item h3 {
    margin: 28px 0 14px;
    color: #2f2300;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.12;
}

.prodi-three-cards .prodi-card-item p {
    margin: 0;
    color: #74684a;
    font-size: 18px;
    line-height: 1.65;
}

.prodi-three-cards .prodi-card-item .card-detail-link {
    display: inline-flex;
    margin-top: 28px;
    padding: 12px 20px;
    border-radius: 10px;
    color: #2f2300 !important;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #fff0a8, #f6c400 58%, #c99a00) !important;
}

@media (max-width: 980px) {
    .prodi-showcase.prodi-three-cards {
        grid-template-columns: 1fr;
    }

    .prodi-three-cards .prodi-card-item {
        min-height: auto;
    }
}

/* Clean final prodi card layout */
.landing-section-head:has(+ .prodi-three-cards) {
    max-width: 1180px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 24px;
    align-items: end;
}

.landing-section-head:has(+ .prodi-three-cards) p {
    color: #e0ad00 !important;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.landing-section-head:has(+ .prodi-three-cards) h3 {
    max-width: 760px;
    margin: 0;
    color: #2f2300 !important;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
}

.landing-section-head:has(+ .prodi-three-cards) h3 span {
    color: #e0ad00 !important;
}

.landing-section-head:has(+ .prodi-three-cards) a {
    color: #b88d00 !important;
    font-weight: 900;
    text-decoration: none;
}

.prodi-showcase.prodi-three-cards {
    max-width: 1180px !important;
    margin: 0 auto 58px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
}

.prodi-three-cards .prodi-card-item {
    position: relative !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 30px !important;
    overflow: hidden !important;
    border: 1px solid #f0dfab !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 18px 40px rgba(79, 58, 0, 0.1) !important;
}

.prodi-three-cards .prodi-card-item::before {
    display: none !important;
}

.prodi-three-cards .prodi-card-item::after {
    position: absolute;
    right: -46px;
    top: -46px;
    width: 128px;
    height: 128px;
    content: "";
    border-radius: 50%;
    background: rgba(246, 196, 0, 0.16);
}

.prodi-three-cards .prodi-card-item span {
    width: fit-content !important;
    min-width: 48px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    background: #f6c400 !important;
}

.prodi-three-cards .prodi-card-item h3 {
    margin: 26px 0 14px !important;
    color: #2f2300 !important;
    font-size: clamp(25px, 2vw, 32px) !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
}

.prodi-three-cards .prodi-card-item p {
    margin: 0 !important;
    color: #6f6248 !important;
    font-size: 17px !important;
    line-height: 1.62 !important;
}

.prodi-three-cards .prodi-card-item .card-detail-link {
    width: fit-content !important;
    margin-top: auto !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    color: #2f2300 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    background: #f6c400 !important;
}

@media (max-width: 1100px) {
    .landing-section-head:has(+ .prodi-three-cards) {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .prodi-showcase.prodi-three-cards {
        grid-template-columns: 1fr !important;
    }

    .prodi-three-cards .prodi-card-item {
        min-height: auto !important;
    }
}

/* Clean news feature section */
.landing-band.landing-band-dark {
    max-width: 1360px !important;
    margin: 70px auto !important;
    padding: 72px 64px 84px !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    color: #ffffff !important;
    background:
        radial-gradient(circle at 86% 16%, rgba(246, 196, 0, 0.2), transparent 20%),
        radial-gradient(circle at 12% 90%, rgba(255, 240, 168, 0.12), transparent 26%),
        linear-gradient(135deg, #231000, #604500 48%, #8a6900) !important;
    box-shadow: 0 30px 80px rgba(58, 38, 0, 0.24) !important;
}

.landing-band.landing-band-dark::before,
.landing-band.landing-band-dark::after {
    position: absolute;
    width: 96px;
    height: 96px;
    content: "";
    border: 2px solid rgba(255, 240, 168, 0.16);
    border-radius: 28px;
    pointer-events: none;
}

.landing-band.landing-band-dark::before {
    left: -42px;
    top: -42px;
}

.landing-band.landing-band-dark::after {
    right: -42px;
    bottom: -42px;
}

.landing-band.landing-band-dark .landing-section-head {
    max-width: none !important;
    margin: 0 0 34px !important;
    display: grid !important;
    grid-template-columns: 150px 1fr 150px !important;
    gap: 24px !important;
    align-items: center !important;
}

.landing-band.landing-band-dark .landing-section-head p {
    margin: 0 !important;
    color: #f6c400 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.landing-band.landing-band-dark .landing-section-head h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: clamp(36px, 4vw, 58px) !important;
    line-height: 1.05 !important;
    text-align: center !important;
}

.landing-band.landing-band-dark .landing-section-head h3 span {
    color: #f6c400 !important;
}

.landing-band.landing-band-dark .landing-section-head a {
    justify-self: end !important;
    color: #fff2b3 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.landing-band.landing-band-dark .news-magazine {
    display: grid !important;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.9fr) !important;
    gap: 28px !important;
    margin: 0 !important;
}

.landing-band.landing-band-dark .news-main {
    min-height: 470px !important;
    padding: 38px !important;
    justify-content: flex-end !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 245, 190, 0.48) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(135deg, rgba(35, 16, 0, 0.8), rgba(96, 69, 0, 0.68)),
        url("../img/container.jpg") center/cover !important;
    box-shadow: none !important;
}

.landing-band.landing-band-dark .news-main span,
.landing-band.landing-band-dark .news-list span {
    min-height: 34px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    background: #f6c400 !important;
}

.landing-band.landing-band-dark .news-main h3 {
    max-width: 620px !important;
    margin: 28px 0 18px !important;
    color: #ffffff !important;
    font-size: clamp(38px, 4.5vw, 64px) !important;
    line-height: 1.06 !important;
}

.landing-band.landing-band-dark .news-main p {
    max-width: 620px !important;
    margin: 0 0 32px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 20px !important;
    line-height: 1.55 !important;
}

.landing-band.landing-band-dark .news-main .card-detail-link,
.landing-band.landing-band-dark .news-list a {
    width: fit-content !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    color: #2f2300 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    background: #f6c400 !important;
}

.landing-band.landing-band-dark .news-list {
    display: grid !important;
    gap: 22px !important;
}

.landing-band.landing-band-dark .news-list article {
    min-height: 224px !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 28px !important;
    border: 1px solid rgba(255, 245, 190, 0.22) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: none !important;
}

.landing-band.landing-band-dark .news-list h3 {
    margin: 20px 0 16px !important;
    color: #ffffff !important;
    font-size: clamp(22px, 2vw, 30px) !important;
    line-height: 1.16 !important;
}

.landing-band.landing-band-dark .news-list p {
    margin: 0 0 22px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 18px !important;
    line-height: 1.55 !important;
}

.landing-band.landing-band-dark .news-list a {
    margin-top: auto !important;
}

@media (max-width: 980px) {
    .landing-band.landing-band-dark {
        margin: 44px 18px !important;
        padding: 42px 22px !important;
        border-radius: 20px !important;
    }

    .landing-band.landing-band-dark .landing-section-head {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        text-align: left !important;
    }

    .landing-band.landing-band-dark .landing-section-head h3 {
        text-align: left !important;
    }

    .landing-band.landing-band-dark .landing-section-head a {
        justify-self: start !important;
    }

    .landing-band.landing-band-dark .news-magazine {
        grid-template-columns: 1fr !important;
    }

    .landing-band.landing-band-dark .news-main {
        min-height: 360px !important;
        padding: 26px !important;
    }
}

/* Clean gallery feature section */
.landing-band.landing-band-gallery {
    max-width: 1360px !important;
    margin: 70px auto !important;
    padding: 66px 58px !important;
    overflow: hidden !important;
    border: 1px solid rgba(246, 196, 0, 0.18) !important;
    border-radius: 28px !important;
    background:
        linear-gradient(rgba(255, 249, 223, 0.9), rgba(255, 249, 223, 0.9)),
        var(--batik-pattern, none) !important;
    box-shadow: 0 24px 70px rgba(79, 58, 0, 0.12) !important;
}

.landing-band.landing-band-gallery .landing-section-head {
    max-width: none !important;
    margin: 0 0 32px !important;
    display: grid !important;
    grid-template-columns: 150px 1fr 150px !important;
    gap: 24px !important;
    align-items: center !important;
}

.landing-band.landing-band-gallery .landing-section-head p {
    margin: 0 !important;
    color: #e0ad00 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.landing-band.landing-band-gallery .landing-section-head h3 {
    max-width: 760px !important;
    margin: 0 !important;
    color: #2f2300 !important;
    font-size: clamp(36px, 4vw, 56px) !important;
    line-height: 1.08 !important;
}

.landing-band.landing-band-gallery .landing-section-head a {
    justify-self: end !important;
    color: #2f2300 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.landing-band.landing-band-gallery .gallery-collage {
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr) !important;
    grid-auto-rows: 220px !important;
    gap: 22px !important;
    margin: 0 !important;
}

.landing-band.landing-band-gallery .gallery-collage article {
    min-height: 0 !important;
    padding: 28px !important;
    justify-content: flex-end !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    background:
        radial-gradient(circle at 86% 16%, rgba(255, 240, 168, 0.22), transparent 22%),
        linear-gradient(135deg, #5b4100, #9d7700 58%, #d7a900) !important;
    box-shadow: 0 18px 40px rgba(79, 58, 0, 0.14) !important;
}

.landing-band.landing-band-gallery .gallery-collage article.has-image {
    background-size: cover !important;
    background-position: center !important;
}

.landing-band.landing-band-gallery .gallery-collage article.has-image::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(63, 45, 0, 0.72), rgba(169, 128, 0, 0.62));
}

.landing-band.landing-band-gallery .gallery-collage article.is-large {
    grid-row: span 2 !important;
    min-height: 462px !important;
}

.landing-band.landing-band-gallery .gallery-collage article > * {
    position: relative;
    z-index: 1;
}

.landing-band.landing-band-gallery .gallery-collage span {
    width: fit-content !important;
    min-height: 34px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    background: #f6c400 !important;
}

.landing-band.landing-band-gallery .gallery-collage h3 {
    max-width: 620px !important;
    margin: 24px 0 10px !important;
    color: #ffffff !important;
    font-size: clamp(28px, 3vw, 42px) !important;
    line-height: 1.12 !important;
}

.landing-band.landing-band-gallery .gallery-collage article:not(.is-large) h3 {
    font-size: clamp(24px, 2vw, 32px) !important;
}

.landing-band.landing-band-gallery .gallery-collage p {
    max-width: 620px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
}

.landing-band.landing-band-gallery .gallery-collage a {
    width: fit-content !important;
    margin-top: 18px !important;
    padding: 0 !important;
    color: #fff2b3 !important;
    font-weight: 900 !important;
    text-decoration: underline !important;
    background: transparent !important;
}

@media (max-width: 980px) {
    .landing-band.landing-band-gallery {
        margin: 44px 18px !important;
        padding: 42px 22px !important;
        border-radius: 20px !important;
    }

    .landing-band.landing-band-gallery .landing-section-head {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .landing-band.landing-band-gallery .landing-section-head a {
        justify-self: start !important;
    }

    .landing-band.landing-band-gallery .gallery-collage {
        grid-template-columns: 1fr !important;
        grid-auto-rows: minmax(260px, auto) !important;
    }

    .landing-band.landing-band-gallery .gallery-collage article.is-large {
        grid-row: span 1 !important;
        min-height: 320px !important;
    }
}

/* Gallery explicit final layout */
.gallery-feature-panel {
    width: min(1360px, calc(100% - 96px)) !important;
    max-width: 1360px !important;
    margin: 72px auto !important;
    padding: 58px 56px 64px !important;
    border-radius: 28px !important;
    border: 1px solid rgba(246, 196, 0, 0.22) !important;
    background:
        linear-gradient(rgba(255, 249, 223, 0.92), rgba(255, 249, 223, 0.92)),
        var(--batik-pattern, none) !important;
    box-shadow: 0 26px 74px rgba(68, 47, 0, 0.12) !important;
}

.gallery-feature-panel .landing-section-head {
    max-width: none !important;
    margin: 0 0 30px !important;
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) 150px !important;
    gap: 24px !important;
    align-items: center !important;
}

.gallery-feature-panel .landing-section-head p {
    margin: 0 !important;
    color: #e0ad00 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.gallery-feature-panel .landing-section-head h3 {
    max-width: 760px !important;
    margin: 0 !important;
    color: #2f2300 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(34px, 3.4vw, 48px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

.gallery-feature-panel .landing-section-head a {
    justify-self: end !important;
    color: #2f2300 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.gallery-feature-panel .gallery-collage {
    max-width: none !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr) !important;
    grid-template-rows: repeat(2, 220px) !important;
    gap: 22px !important;
}

.gallery-feature-panel .gallery-collage article {
    position: relative !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 28px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    background:
        radial-gradient(circle at 86% 15%, rgba(255, 240, 168, 0.22), transparent 24%),
        linear-gradient(135deg, #6a4b00 0%, #a78200 58%, #d7a900 100%) !important;
    box-shadow: none !important;
}

.gallery-feature-panel .gallery-collage article.is-large {
    grid-row: 1 / span 2 !important;
    min-height: 462px !important;
}

.gallery-feature-panel .gallery-collage article.has-image {
    background-size: cover !important;
    background-position: center !important;
}

.gallery-feature-panel .gallery-collage article.has-image::before {
    position: absolute !important;
    inset: 0 !important;
    content: "" !important;
    background: linear-gradient(135deg, rgba(66, 46, 0, 0.72), rgba(180, 139, 0, 0.62)) !important;
}

.gallery-feature-panel .gallery-collage article > * {
    position: relative !important;
    z-index: 1 !important;
}

.gallery-feature-panel .gallery-collage span {
    width: fit-content !important;
    min-height: 34px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    background: #f6c400 !important;
}

.gallery-feature-panel .gallery-collage h3 {
    max-width: 640px !important;
    margin: 22px 0 8px !important;
    color: #ffffff !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(28px, 3vw, 40px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

.gallery-feature-panel .gallery-collage article:not(.is-large) h3 {
    font-size: clamp(24px, 2vw, 31px) !important;
}

.gallery-feature-panel .gallery-collage p {
    max-width: 620px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
}

.gallery-feature-panel .gallery-collage a {
    width: fit-content !important;
    margin-top: 16px !important;
    padding: 0 !important;
    color: #fff2b3 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-decoration: underline !important;
    background: transparent !important;
}

@media (max-width: 980px) {
    .gallery-feature-panel {
        width: calc(100% - 36px) !important;
        margin: 44px auto !important;
        padding: 38px 22px !important;
        border-radius: 20px !important;
    }

    .gallery-feature-panel .landing-section-head {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .gallery-feature-panel .landing-section-head a {
        justify-self: start !important;
    }

    .gallery-feature-panel .gallery-collage {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
    }

    .gallery-feature-panel .gallery-collage article,
    .gallery-feature-panel .gallery-collage article.is-large {
        grid-row: auto !important;
        min-height: 280px !important;
    }
}

/* Gallery simple 3-card layout */
.gallery-simple-panel {
    width: min(1360px, calc(100% - 96px)) !important;
    max-width: 1360px !important;
    margin: 72px auto !important;
    padding: 58px 56px 64px !important;
    border-radius: 28px !important;
    border: 1px solid rgba(246, 196, 0, 0.22) !important;
    background:
        linear-gradient(rgba(255, 249, 223, 0.92), rgba(255, 249, 223, 0.92)),
        var(--batik-pattern, none) !important;
    box-shadow: 0 26px 74px rgba(68, 47, 0, 0.12) !important;
}

.gallery-simple-panel .landing-section-head {
    max-width: none !important;
    margin: 0 0 30px !important;
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) 150px !important;
    gap: 24px !important;
    align-items: center !important;
}

.gallery-simple-panel .landing-section-head p {
    margin: 0 !important;
    color: #e0ad00 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.gallery-simple-panel .landing-section-head h3 {
    max-width: 780px !important;
    margin: 0 !important;
    color: #2f2300 !important;
    font-size: clamp(34px, 3.4vw, 48px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

.gallery-simple-panel .landing-section-head a {
    justify-self: end !important;
    color: #2f2300 !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.gallery-simple-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.gallery-simple-card {
    overflow: hidden !important;
    border: 1px solid rgba(246, 196, 0, 0.28) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 18px 44px rgba(79, 58, 0, 0.1) !important;
}

.gallery-card-media {
    position: relative !important;
    min-height: 190px !important;
    display: flex !important;
    align-items: flex-end !important;
    padding: 22px !important;
    overflow: hidden !important;
    background-color: #8a6800 !important;
    background-image:
        radial-gradient(circle at 86% 15%, rgba(255, 240, 168, 0.24), transparent 24%),
        linear-gradient(135deg, #6a4b00, #a78200 58%, #d7a900);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.gallery-simple-card.has-image .gallery-card-media {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.gallery-card-media img {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.gallery-simple-card.has-image .gallery-card-media::before {
    position: absolute !important;
    inset: 0 !important;
    content: "" !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background: linear-gradient(135deg, rgba(66, 46, 0, 0.58), rgba(180, 139, 0, 0.36)) !important;
}

.gallery-card-media span {
    position: relative !important;
    z-index: 2 !important;
    width: fit-content !important;
    min-height: 34px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    background: #f6c400 !important;
}

.gallery-card-body {
    padding: 28px !important;
}

.gallery-card-body h3 {
    margin: 0 0 12px !important;
    color: #2f2300 !important;
    font-size: clamp(24px, 2.2vw, 34px) !important;
    line-height: 1.14 !important;
    letter-spacing: 0 !important;
}

.gallery-card-body p {
    margin: 0 !important;
    color: #6f6248 !important;
    font-size: 17px !important;
    line-height: 1.58 !important;
}

.gallery-card-body a {
    display: inline-flex !important;
    width: fit-content !important;
    margin-top: 24px !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    color: #2f2300 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    background: #f6c400 !important;
}

@media (max-width: 980px) {
    .gallery-simple-panel {
        width: calc(100% - 36px) !important;
        margin: 44px auto !important;
        padding: 38px 22px !important;
        border-radius: 20px !important;
    }

    .gallery-simple-panel .landing-section-head {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .gallery-simple-panel .landing-section-head a {
        justify-self: start !important;
    }

    .gallery-simple-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Proportional news section sizing */
.landing-band.landing-band-dark {
    width: min(1240px, calc(100% - 96px)) !important;
    max-width: 1240px !important;
    margin: 54px auto !important;
    padding: 44px 48px 52px !important;
    border-radius: 22px !important;
}

.landing-band.landing-band-dark .landing-section-head {
    margin: 0 0 26px !important;
    grid-template-columns: 120px 1fr 120px !important;
}

.landing-band.landing-band-dark .landing-section-head h3 {
    font-size: clamp(32px, 3.2vw, 46px) !important;
}

.landing-band.landing-band-dark .landing-section-head p {
    font-size: 13px !important;
}

.landing-band.landing-band-dark .landing-section-head a {
    font-size: 16px !important;
}

.landing-band.landing-band-dark .news-magazine {
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr) !important;
    gap: 24px !important;
}

.landing-band.landing-band-dark .news-main {
    min-height: 420px !important;
    padding: 30px !important;
    border-radius: 16px !important;
}

.landing-band.landing-band-dark .news-main span,
.landing-band.landing-band-dark .news-list span {
    min-height: 30px !important;
    padding: 7px 14px !important;
    font-size: 13px !important;
}

.landing-band.landing-band-dark .news-main h3 {
    max-width: 540px !important;
    margin: 22px 0 14px !important;
    font-size: clamp(34px, 3.4vw, 50px) !important;
    line-height: 1.08 !important;
}

.landing-band.landing-band-dark .news-main p {
    max-width: 540px !important;
    margin: 0 0 24px !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
}

.landing-band.landing-band-dark .news-main .card-detail-link,
.landing-band.landing-band-dark .news-list a {
    padding: 10px 16px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
}

.landing-band.landing-band-dark .news-list {
    gap: 20px !important;
}

.landing-band.landing-band-dark .news-list article {
    min-height: 200px !important;
    padding: 24px !important;
    border-radius: 16px !important;
}

.landing-band.landing-band-dark .news-list h3 {
    margin: 18px 0 12px !important;
    font-size: clamp(22px, 1.8vw, 28px) !important;
    line-height: 1.16 !important;
}

.landing-band.landing-band-dark .news-list p {
    margin: 0 0 18px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

@media (max-width: 980px) {
    .landing-band.landing-band-dark {
        width: calc(100% - 36px) !important;
        margin: 38px auto !important;
        padding: 34px 22px !important;
    }

    .landing-band.landing-band-dark .news-main {
        min-height: 330px !important;
        padding: 24px !important;
    }
}

/* Compact final news sizing */
.landing-band.landing-band-dark {
    width: min(1080px, calc(100% - 80px)) !important;
    max-width: 1080px !important;
    margin: 42px auto !important;
    padding: 34px 38px 38px !important;
    border-radius: 20px !important;
}

.landing-band.landing-band-dark .landing-section-head {
    margin: 0 0 22px !important;
    grid-template-columns: 96px 1fr 96px !important;
    gap: 18px !important;
}

.landing-band.landing-band-dark .landing-section-head h3 {
    font-size: clamp(28px, 2.8vw, 38px) !important;
    line-height: 1.06 !important;
}

.landing-band.landing-band-dark .landing-section-head p,
.landing-band.landing-band-dark .landing-section-head a {
    font-size: 13px !important;
}

.landing-band.landing-band-dark .news-magazine {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr) !important;
    gap: 20px !important;
}

.landing-band.landing-band-dark .news-main {
    min-height: 330px !important;
    padding: 24px 28px !important;
    border-radius: 14px !important;
}

.landing-band.landing-band-dark .news-main span,
.landing-band.landing-band-dark .news-list span {
    min-height: 28px !important;
    padding: 6px 13px !important;
    font-size: 12px !important;
}

.landing-band.landing-band-dark .news-main h3 {
    max-width: 470px !important;
    margin: 18px 0 10px !important;
    font-size: clamp(28px, 3vw, 40px) !important;
    line-height: 1.08 !important;
}

.landing-band.landing-band-dark .news-main p {
    max-width: 470px !important;
    margin: 0 0 18px !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
}

.landing-band.landing-band-dark .news-main .card-detail-link,
.landing-band.landing-band-dark .news-list a {
    padding: 9px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
}

.landing-band.landing-band-dark .news-list {
    gap: 16px !important;
}

.landing-band.landing-band-dark .news-list article {
    min-height: 157px !important;
    padding: 20px 22px !important;
    border-radius: 14px !important;
}

.landing-band.landing-band-dark .news-list h3 {
    margin: 16px 0 9px !important;
    font-size: clamp(19px, 1.55vw, 24px) !important;
    line-height: 1.18 !important;
}

.landing-band.landing-band-dark .news-list p {
    margin: 0 0 14px !important;
    font-size: 14px !important;
    line-height: 1.42 !important;
}

@media (max-width: 980px) {
    .landing-band.landing-band-dark {
        width: calc(100% - 32px) !important;
        margin: 34px auto !important;
        padding: 30px 18px !important;
    }

    .landing-band.landing-band-dark .landing-section-head {
        grid-template-columns: 1fr !important;
    }

    .landing-band.landing-band-dark .news-magazine {
        grid-template-columns: 1fr !important;
    }

    .landing-band.landing-band-dark .news-main {
        min-height: 280px !important;
    }
}

/* Announcement two-card clean layout */
.landing-band.landing-band-soft {
    width: min(1180px, calc(100% - 80px)) !important;
    max-width: 1180px !important;
    margin: 54px auto !important;
    padding: 46px 48px 52px !important;
    border: 1px solid rgba(246, 196, 0, 0.2) !important;
    border-radius: 24px !important;
    background:
        linear-gradient(rgba(255, 249, 223, 0.9), rgba(255, 249, 223, 0.9)),
        var(--batik-pattern, none) !important;
    box-shadow: 0 24px 64px rgba(79, 58, 0, 0.1) !important;
}

.landing-band.landing-band-soft .landing-section-head {
    max-width: none !important;
    margin: 0 0 30px !important;
    display: grid !important;
    grid-template-columns: 140px minmax(0, 1fr) 130px !important;
    gap: 24px !important;
    align-items: center !important;
}

.landing-band.landing-band-soft .landing-section-head p {
    margin: 0 !important;
    color: #e0ad00 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.landing-band.landing-band-soft .landing-section-head h3 {
    max-width: 690px !important;
    margin: 0 !important;
    color: #2f2300 !important;
    font-size: clamp(32px, 3.4vw, 46px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

.landing-band.landing-band-soft .landing-section-head a {
    justify-self: end !important;
    color: #2f2300 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.announcement-strip.announcement-card-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin: 0 !important;
}

.announcement-card-grid article {
    position: relative !important;
    min-height: 250px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 30px !important;
    overflow: hidden !important;
    border: 1px solid rgba(246, 196, 0, 0.26) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 18px 42px rgba(79, 58, 0, 0.1) !important;
}

.announcement-card-grid article::after {
    position: absolute;
    right: -42px;
    top: -42px;
    width: 128px;
    height: 128px;
    content: "";
    border-radius: 50%;
    background: rgba(246, 196, 0, 0.15);
}

.announcement-card-grid article > * {
    position: relative !important;
    z-index: 1 !important;
}

.announcement-card-grid article span {
    width: fit-content !important;
    min-height: 34px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    background: #f6c400 !important;
}

.announcement-card-grid article h3 {
    margin: 24px 0 12px !important;
    color: #2f2300 !important;
    font-size: clamp(24px, 2.2vw, 34px) !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
}

.announcement-card-grid article p {
    margin: 0 !important;
    color: #6f6248 !important;
    font-size: 17px !important;
    line-height: 1.58 !important;
}

.announcement-card-grid article a {
    width: fit-content !important;
    margin-top: auto !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    color: #2f2300 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    background: #f6c400 !important;
}

@media (max-width: 980px) {
    .landing-band.landing-band-soft {
        width: calc(100% - 36px) !important;
        margin: 42px auto !important;
        padding: 38px 22px !important;
        border-radius: 20px !important;
    }

    .landing-band.landing-band-soft .landing-section-head {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .landing-band.landing-band-soft .landing-section-head a {
        justify-self: start !important;
    }

    .announcement-strip.announcement-card-grid {
        grid-template-columns: 1fr !important;
    }

    .announcement-card-grid article {
        min-height: auto !important;
    }
}

/* Partner logo slow marquee */
.partner-marquee {
    width: min(1180px, calc(100% - 80px));
    margin: 44px auto 56px;
    padding: 26px 0;
    overflow: hidden;
}

.partner-marquee-head {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 20px;
}

.partner-marquee-head p {
    margin: 0;
    color: #e0ad00;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.partner-marquee-head h3 {
    max-width: 720px;
    margin: 0;
    color: #2f2300;
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.12;
}

.partner-marquee-window {
    position: relative;
    overflow: hidden;
    padding: 4px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-marquee-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: partnerScroll 34s linear infinite;
}

.partner-marquee-window:hover .partner-marquee-track {
    animation-play-state: paused;
}

.partner-card {
    width: 170px;
    min-height: 132px;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 18px;
    border: 1px solid rgba(246, 196, 0, 0.24);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(79, 58, 0, 0.08);
}

.partner-logo-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #2f2300;
    font-weight: 900;
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.72), transparent 24%),
        linear-gradient(135deg, #fff0a8, #f6c400 58%, #c99a00);
    box-shadow: inset 0 0 0 1px rgba(47, 35, 0, 0.08);
}

.partner-card strong {
    max-width: 130px;
    color: #2f2300;
    font-size: 15px;
    line-height: 1.25;
    text-align: center;
}

@keyframes partnerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 820px) {
    .partner-marquee {
        width: calc(100% - 36px);
        margin: 34px auto 44px;
    }

    .partner-marquee-head {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .partner-card {
        width: 145px;
        min-height: 122px;
    }
}

/* Transparent partner marquee refinement */
.partner-marquee {
    padding: 18px 0 24px !important;
}

.partner-marquee-head p {
    color: rgba(224, 173, 0, 0.72) !important;
}

.partner-marquee-head h3 {
    color: rgba(47, 35, 0, 0.52) !important;
}

.partner-card {
    border-color: rgba(246, 196, 0, 0.18) !important;
    background: rgba(255, 255, 255, 0.42) !important;
    box-shadow: 0 12px 30px rgba(79, 58, 0, 0.06) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.partner-logo-mark {
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.7), transparent 24%),
        linear-gradient(135deg, rgba(255, 240, 168, 0.7), rgba(246, 196, 0, 0.74) 58%, rgba(201, 154, 0, 0.62)) !important;
}

.partner-card strong {
    color: rgba(47, 35, 0, 0.68) !important;
}

/* Partner marquee as horizontal glass banners */
.partner-marquee {
    width: min(1180px, calc(100% - 80px)) !important;
    margin: 34px auto 52px !important;
    padding: 0 !important;
}

.partner-marquee-head {
    display: none !important;
}

.partner-marquee-window {
    padding: 8px 0 !important;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent) !important;
}

.partner-marquee-track {
    gap: 18px !important;
    animation-duration: 40s !important;
}

.partner-card {
    width: 340px !important;
    min-height: 104px !important;
    display: grid !important;
    grid-template-columns: 74px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 18px 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: 8px !important;
    background: rgba(92, 70, 18, 0.62) !important;
    box-shadow: 0 18px 38px rgba(49, 34, 0, 0.18) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.partner-logo-mark {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50% !important;
    color: #2f2300 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    background:
        radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.62), transparent 24%),
        linear-gradient(135deg, #fff0a8, #f6c400 58%, #c99a00) !important;
}

.partner-text {
    min-width: 0 !important;
}

.partner-card strong {
    display: block !important;
    max-width: none !important;
    margin: 0 0 7px !important;
    color: #ffffff !important;
    font-size: 17px !important;
    line-height: 1.18 !important;
    text-align: left !important;
}

.partner-card .partner-text span {
    display: block !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}

@media (max-width: 820px) {
    .partner-marquee {
        width: calc(100% - 32px) !important;
    }

    .partner-card {
        width: 292px !important;
        grid-template-columns: 58px minmax(0, 1fr) !important;
        gap: 14px !important;
        padding: 16px !important;
    }

    .partner-logo-mark {
        width: 54px !important;
        height: 54px !important;
    }
}

/* Stable popup close button */
.info-popup-close {
    color: #2f2300 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    background: rgba(255, 255, 255, 0.96) !important;
}

/* Partner logo image support */
a.partner-card {
    text-decoration: none !important;
}

.partner-logo-mark img {
    width: 72% !important;
    height: 72% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Show partner section title above marquee */
.partner-marquee-head {
    display: grid !important;
    grid-template-columns: 140px minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: end !important;
    margin: 0 0 18px !important;
}

.partner-marquee-head p {
    margin: 0 !important;
    color: #e0ad00 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.partner-marquee-head h3 {
    max-width: 720px !important;
    margin: 0 !important;
    color: #2f2300 !important;
    font-size: clamp(24px, 2.8vw, 38px) !important;
    line-height: 1.12 !important;
}

@media (max-width: 820px) {
    .partner-marquee-head {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

/* Unified news and announcement section */
.landing-band.info-combo-band {
    width: min(1180px, calc(100% - 84px)) !important;
    margin: 58px auto !important;
    padding: 44px 48px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 88% 14%, rgba(246, 196, 0, 0.2), transparent 18%),
        radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.09), transparent 20%),
        linear-gradient(135deg, rgba(47, 28, 0, 0.98), rgba(111, 82, 0, 0.94)) !important;
    box-shadow: 0 24px 70px rgba(47, 35, 0, 0.22) !important;
}

.info-combo-band::before,
.info-combo-band::after {
    opacity: 0.32 !important;
}

.info-combo-band .info-combo-head {
    grid-template-columns: 135px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 24px !important;
    margin: 0 0 30px !important;
}

.info-combo-band .info-combo-head p {
    color: #ffd21a !important;
    font-size: 13px !important;
    letter-spacing: 0 !important;
}

.info-combo-band .info-combo-head h3 {
    color: #ffffff !important;
    font-size: clamp(34px, 4vw, 54px) !important;
    line-height: 1.02 !important;
    text-align: center !important;
}

.info-combo-band .info-combo-head h3 span {
    color: #ffd21a !important;
}

.info-combo-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    justify-content: flex-end !important;
    flex-wrap: wrap !important;
}

.info-combo-band .info-combo-actions a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    border: 1px solid rgba(255, 210, 26, 0.45) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.info-combo-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.85fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.info-combo-band .info-combo-feature {
    min-height: 470px !important;
    padding: 34px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    background:
        linear-gradient(rgba(47, 28, 0, 0.58), rgba(47, 28, 0, 0.66)),
        var(--news-bg, linear-gradient(135deg, rgba(62, 38, 0, 0.84), rgba(148, 111, 0, 0.78))) !important;
    box-shadow: none !important;
}

.info-combo-band .info-combo-feature h3 {
    max-width: 680px !important;
    color: #ffffff !important;
    font-size: clamp(36px, 4.6vw, 60px) !important;
    line-height: 1.04 !important;
}

.info-combo-band .info-combo-feature p {
    max-width: 600px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
}

.info-combo-band .info-combo-feature span,
.info-combo-band .info-side-list article span,
.info-combo-band .announcement-mini-list article > span {
    width: max-content !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 32px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #ffe56b, #f6c400) !important;
}

.info-combo-band .info-combo-feature .card-detail-link,
.info-combo-band .info-side-list article a,
.info-combo-band .announcement-mini-list article a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: max-content !important;
    min-height: 40px !important;
    margin-top: 8px !important;
    padding: 0 18px !important;
    border-radius: 9px !important;
    color: #2f2300 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #ffe56b, #f6c400) !important;
}

.info-combo-side {
    display: grid !important;
    gap: 18px !important;
}

.info-side-block {
    min-width: 0 !important;
    padding: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.09) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.info-side-heading {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 14px !important;
}

.info-side-heading span {
    color: #ffd21a !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.info-combo-band .info-side-heading a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.info-combo-band .info-side-list,
.info-combo-band .announcement-mini-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
}

.info-combo-band .info-side-list article,
.info-combo-band .announcement-mini-list article {
    min-height: 0 !important;
    display: grid !important;
    gap: 12px !important;
    padding: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 15px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

.info-combo-band .info-side-list article h3,
.info-combo-band .announcement-mini-list article h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: clamp(19px, 1.8vw, 25px) !important;
    line-height: 1.18 !important;
}

.info-combo-band .info-side-list article p,
.info-combo-band .announcement-mini-list article p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

@media (max-width: 1050px) {
    .landing-band.info-combo-band {
        width: calc(100% - 42px) !important;
        padding: 34px 24px !important;
    }

    .info-combo-band .info-combo-head {
        grid-template-columns: 1fr !important;
        text-align: left !important;
    }

    .info-combo-band .info-combo-head h3 {
        text-align: left !important;
    }

    .info-combo-actions {
        justify-content: flex-start !important;
    }

    .info-combo-grid {
        grid-template-columns: 1fr !important;
    }

    .info-combo-band .info-combo-feature {
        min-height: 390px !important;
    }
}

@media (max-width: 680px) {
    .landing-band.info-combo-band {
        width: calc(100% - 28px) !important;
        margin: 38px auto !important;
        padding: 28px 16px !important;
        border-radius: 20px !important;
    }

    .info-combo-band .info-combo-head h3 {
        font-size: clamp(30px, 10vw, 42px) !important;
    }

    .info-combo-band .info-combo-feature {
        min-height: 330px !important;
        padding: 24px !important;
    }

    .info-combo-band .info-combo-feature h3 {
        font-size: clamp(30px, 9vw, 42px) !important;
    }

    .info-side-block {
        padding: 16px !important;
    }
}

/* Badge-only news and announcement layout */
.landing-band.info-combo-band.info-badge-band {
    width: min(1180px, calc(100% - 84px)) !important;
    margin: 54px auto !important;
    padding: 42px 48px 48px !important;
    border-radius: 26px !important;
    background:
        radial-gradient(circle at 88% 16%, rgba(246, 196, 0, 0.2), transparent 18%),
        radial-gradient(circle at 14% 86%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(135deg, rgba(45, 27, 0, 0.98), rgba(112, 84, 0, 0.94)) !important;
}

.info-badge-band .info-combo-head {
    grid-template-columns: 135px minmax(0, 1fr) auto !important;
    align-items: center !important;
    margin-bottom: 28px !important;
}

.info-badge-band .info-combo-head h3 {
    text-align: center !important;
    white-space: normal !important;
}

.info-badge-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: start !important;
}

.info-badge-column {
    min-width: 0 !important;
    padding: 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.info-badge-title {
    display: flex !important;
    align-items: end !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
}

.info-badge-title span {
    color: #ffd21a !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.info-badge-title strong {
    color: #ffffff !important;
    font-size: clamp(20px, 2vw, 27px) !important;
    line-height: 1.12 !important;
    text-align: right !important;
}

.info-badge-list {
    display: grid !important;
    gap: 14px !important;
}

.info-badge-card {
    min-height: 138px !important;
    display: grid !important;
    grid-template-columns: 118px minmax(0, 1fr) auto !important;
    gap: 16px !important;
    align-items: center !important;
    padding: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

.info-badge-card > span {
    width: max-content !important;
    max-width: 118px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    background: linear-gradient(135deg, #ffe56b, #f6c400) !important;
}

.info-badge-card h3 {
    margin: 0 0 7px !important;
    color: #ffffff !important;
    font-size: clamp(18px, 1.65vw, 24px) !important;
    line-height: 1.15 !important;
}

.info-badge-card p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.info-badge-card a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 0 15px !important;
    border-radius: 9px !important;
    color: #2f2300 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #ffe56b, #f6c400) !important;
}

.info-badge-band .news-main,
.info-badge-band .info-combo-feature,
.info-badge-band .news-magazine,
.info-badge-band .news-list,
.info-badge-band .announcement-mini-list,
.info-badge-band .announcement-strip {
    background-image: none !important;
}

@media (max-width: 1100px) {
    .landing-band.info-combo-band.info-badge-band {
        width: calc(100% - 42px) !important;
        padding: 34px 24px !important;
    }

    .info-badge-band .info-combo-head {
        grid-template-columns: 1fr !important;
        text-align: left !important;
    }

    .info-badge-band .info-combo-head h3 {
        text-align: left !important;
    }

    .info-badge-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 700px) {
    .landing-band.info-combo-band.info-badge-band {
        width: calc(100% - 28px) !important;
        margin: 38px auto !important;
        padding: 26px 16px !important;
    }

    .info-badge-column {
        padding: 16px !important;
    }

    .info-badge-title {
        display: grid !important;
        gap: 8px !important;
    }

    .info-badge-title strong {
        text-align: left !important;
    }

    .info-badge-card {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
    }

    .info-badge-card > span {
        max-width: 100% !important;
    }
}

/* Wider and shorter info badge section */
.landing-band.info-combo-band.info-badge-band {
    width: min(1320px, calc(100% - 56px)) !important;
    margin: 44px auto !important;
    padding: 34px 40px 38px !important;
}

.info-badge-band .info-combo-head {
    grid-template-columns: 128px minmax(0, 1fr) auto !important;
    margin-bottom: 22px !important;
}

.info-badge-band .info-combo-head h3 {
    font-size: clamp(32px, 3.4vw, 48px) !important;
}

.info-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.info-badge-column {
    padding: 18px !important;
    border-radius: 18px !important;
}

.info-badge-title {
    margin-bottom: 12px !important;
}

.info-badge-title strong {
    font-size: clamp(18px, 1.55vw, 23px) !important;
}

.info-badge-list {
    gap: 10px !important;
}

.info-badge-card {
    min-height: 104px !important;
    grid-template-columns: 108px minmax(0, 1fr) 78px !important;
    gap: 14px !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
}

.info-badge-card > span {
    max-width: 108px !important;
    min-height: 30px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
}

.info-badge-card h3 {
    margin-bottom: 4px !important;
    font-size: clamp(16px, 1.28vw, 20px) !important;
    line-height: 1.14 !important;
}

.info-badge-card p {
    -webkit-line-clamp: 1 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.info-badge-card a {
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
}

@media (max-width: 1180px) {
    .landing-band.info-combo-band.info-badge-band {
        width: calc(100% - 40px) !important;
        padding: 30px 24px !important;
    }

    .info-badge-card {
        grid-template-columns: 96px minmax(0, 1fr) 70px !important;
    }
}

@media (max-width: 880px) {
    .info-badge-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Hosting header/logo guard */
.landing-nav {
    min-height: 104px !important;
    align-items: center !important;
    gap: 24px !important;
}

.landing-brand {
    display: grid !important;
    grid-template-columns: 76px minmax(0, 220px) !important;
    align-items: center !important;
    gap: 16px !important;
    min-width: 300px !important;
    max-width: 360px !important;
    text-decoration: none !important;
}

.landing-logo-img,
.landing-brand img,
.brand-logo {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 12px !important;
}

.landing-brand > span {
    min-width: 0 !important;
    display: block !important;
}

.landing-brand strong {
    display: block !important;
    color: #4a3300 !important;
    font-size: clamp(20px, 1.55vw, 27px) !important;
    line-height: 0.96 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
}

.landing-brand small {
    display: block !important;
    margin-top: 7px !important;
    color: #e0ad00 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    white-space: normal !important;
}

.landing-menu {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    justify-content: center !important;
    gap: clamp(14px, 1.4vw, 24px) !important;
}

.landing-actions {
    flex: 0 0 auto !important;
}

@media (max-width: 1180px) {
    .landing-brand {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        min-width: 240px !important;
    }

    .landing-logo-img,
    .landing-brand img,
    .brand-logo {
        width: 62px !important;
        height: 62px !important;
        min-width: 62px !important;
        max-width: 62px !important;
        max-height: 62px !important;
    }

    .landing-brand strong {
        font-size: 21px !important;
    }
}

@media (max-width: 860px) {
    .landing-nav {
        min-height: 0 !important;
        align-items: flex-start !important;
    }

    .landing-brand {
        min-width: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
}

/* Logo fallback when uploaded logo is missing on hosting */
.landing-brand .logo-shield,
.brand .brand-mark {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #5c3b00, #f6c400) !important;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28), 0 12px 28px rgba(79, 58, 0, 0.14) !important;
}

.brand .brand-mark {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    font-size: 17px !important;
}

/* Final compact public header without image logo */
.landing-topbar {
    min-height: 42px !important;
    padding: 0 42px !important;
}

.landing-nav {
    min-height: 96px !important;
    padding: 18px 42px !important;
}

.landing-brand {
    grid-template-columns: 58px minmax(0, 190px) !important;
    gap: 12px !important;
    min-width: 260px !important;
    max-width: 300px !important;
}

.landing-brand .logo-shield {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border-radius: 14px !important;
    font-size: 17px !important;
}

.landing-brand strong {
    font-size: 22px !important;
    line-height: 0.94 !important;
    letter-spacing: 0 !important;
}

.landing-brand small {
    margin-top: 6px !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
}

.landing-menu a,
.unit-menu > span {
    font-size: 15px !important;
}

.landing-actions a {
    min-height: 54px !important;
    padding: 0 24px !important;
}

.brand .brand-mark {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
}

@media (max-width: 1180px) {
    .landing-nav {
        padding: 18px 24px !important;
    }

    .landing-brand {
        min-width: 230px !important;
        grid-template-columns: 52px minmax(0, 1fr) !important;
    }

    .landing-brand .logo-shield {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }

    .landing-brand strong {
        font-size: 19px !important;
    }
}

/* Popup hosting image guard and compact sizing */
.info-popup-card {
    width: min(430px, calc(100vw - 32px)) !important;
    max-height: min(86vh, 680px) !important;
    overflow: hidden !important;
    border-radius: 14px !important;
}

.info-popup-image {
    width: 100% !important;
    height: clamp(150px, 24vh, 220px) !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    background-color: #8b6a00 !important;
}

.info-popup-body {
    padding: 24px 28px 28px !important;
}

.info-popup-body h2 {
    font-size: clamp(27px, 3vw, 34px) !important;
    line-height: 1.13 !important;
    margin: 10px 0 14px !important;
}

.info-popup-body > p:not(.info-popup-date) {
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.info-popup-actions {
    margin-top: 20px !important;
}

.info-popup-close {
    width: 42px !important;
    height: 42px !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 5 !important;
}

.info-popup-card:not(:has(.info-popup-image)) .info-popup-body {
    padding-top: 32px !important;
}

@supports not selector(:has(*)) {
    .info-popup-body {
        padding-top: 28px !important;
    }
}

@media (max-width: 540px) {
    .info-popup-card {
        width: calc(100vw - 24px) !important;
    }

    .info-popup-image {
        height: 140px !important;
    }

    .info-popup-body {
        padding: 22px !important;
    }
}

/* Popup image as CSS background, no broken alt text */
.info-popup-image {
    display: block !important;
    width: 100% !important;
    height: clamp(145px, 24vh, 210px) !important;
    background-color: #8b6a00 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.info-popup-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Final clean hero slider image override */
.hero-scene[data-hero-carousel] {
    min-height: 640px !important;
    height: 640px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #111111 !important;
}

.hero-scene[data-hero-carousel]::before,
.hero-scene[data-hero-carousel]::after {
    display: none !important;
}

.hero-slider-viewport,
.hero-slider-track,
.hero-panel {
    height: 100% !important;
    min-height: 640px !important;
}

.hero-panel {
    padding: 72px 42px 128px !important;
    background: #111111 !important;
}

.hero-slide,
.hero-panel .hero-slide,
.hero-panel:nth-child(2) .hero-slide,
.hero-panel:nth-child(3) .hero-slide,
.hero-slide:nth-child(2),
.hero-slide:nth-child(3) {
    inset: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    background-color: #111111 !important;
    background-image: var(--hero-slide-image) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
    filter: none !important;
}

.hero-panel .hero-center,
.hero-panel .hero-benefits,
.hero-scene[data-hero-carousel] > .hero-carousel-dots {
    position: relative !important;
    z-index: 3 !important;
}

.hero-center h1,
.hero-center p,
.hero-kicker {
    text-shadow: 0 3px 12px rgba(0, 0, 0, .68) !important;
}

.hero-scene[data-hero-carousel] > .hero-carousel-dots {
    position: absolute !important;
    bottom: 34px !important;
}

@media (max-width: 900px) {
    .hero-scene[data-hero-carousel] {
        min-height: 560px !important;
        height: 560px !important;
    }

    .hero-slider-viewport,
    .hero-slider-track,
    .hero-panel {
        min-height: 560px !important;
        height: 100% !important;
    }

    .hero-panel {
        padding: 52px 20px 90px !important;
    }
}

@media (max-width: 560px) {
    .hero-scene[data-hero-carousel] {
        min-height: 500px !important;
        height: 500px !important;
    }

    .hero-slider-viewport,
    .hero-slider-track,
    .hero-panel {
        min-height: 500px !important;
    }

    .hero-center h1 {
        font-size: clamp(28px, 9vw, 42px) !important;
    }
}

/* Hero image-only mode */
.hero-scene[data-hero-carousel] .hero-center,
.hero-scene[data-hero-carousel] .hero-benefits {
    display: none !important;
}
/* Final wide media layout for Berita + Pengumuman */
.landing-band.info-combo-band.info-badge-band {
    width: min(1500px, calc(100% - 48px)) !important;
    max-width: none !important;
    margin: 46px auto !important;
    padding: 36px 44px 42px !important;
}

.info-badge-band .info-combo-head {
    grid-template-columns: 145px minmax(0, 1fr) auto !important;
    gap: 26px !important;
    margin-bottom: 26px !important;
}

.info-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
    align-items: start !important;
}

.info-badge-column {
    padding: 20px !important;
}

.info-badge-list {
    gap: 14px !important;
}

.info-badge-card.info-media-card {
    min-height: 132px !important;
    display: grid !important;
    grid-template-columns: 168px minmax(0, 1fr) 86px !important;
    gap: 16px !important;
    align-items: stretch !important;
    padding: 14px !important;
}

.info-card-thumb {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 116px !important;
    border-radius: 13px !important;
    overflow: hidden !important;
    color: #2f2300 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 232, 105, 0.55), transparent 30%),
        linear-gradient(135deg, #6a4b00, #c79b00 72%, #f6c400) !important;
}

.info-card-thumb::after {
    position: absolute !important;
    inset: 0 !important;
    content: "" !important;
    background: linear-gradient(135deg, rgba(47, 28, 0, 0.26), rgba(246, 196, 0, 0.12)) !important;
    pointer-events: none !important;
}

.info-card-thumb img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.info-card-thumb span {
    position: relative !important;
    z-index: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: #f6c400 !important;
}

.info-card-thumb.is-empty img {
    display: none !important;
}

.info-card-content {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.info-card-kicker {
    width: max-content !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 30px !important;
    margin-bottom: 10px !important;
    padding: 0 13px !important;
    border-radius: 999px !important;
    color: #2f2300 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    background: linear-gradient(135deg, #ffe56b, #f6c400) !important;
}

.info-badge-card.info-media-card h3 {
    margin: 0 0 8px !important;
    font-size: clamp(18px, 1.35vw, 24px) !important;
    line-height: 1.16 !important;
}

.info-badge-card.info-media-card p {
    -webkit-line-clamp: 2 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.info-badge-card.info-media-card .info-card-detail {
    align-self: center !important;
    margin: 0 !important;
    min-height: 42px !important;
    padding: 0 16px !important;
}

@media (max-width: 1180px) {
    .info-badge-card.info-media-card {
        grid-template-columns: 132px minmax(0, 1fr) !important;
    }

    .info-badge-card.info-media-card .info-card-detail {
        grid-column: 2 !important;
        justify-self: start !important;
        align-self: end !important;
        margin-top: 6px !important;
    }
}

@media (max-width: 900px) {
    .landing-band.info-combo-band.info-badge-band {
        width: calc(100% - 28px) !important;
        padding: 28px 18px !important;
    }

    .info-badge-band .info-combo-head,
    .info-badge-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 560px) {
    .info-badge-card.info-media-card {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .info-card-thumb {
        min-height: 170px !important;
    }

    .info-badge-card.info-media-card .info-card-detail {
        grid-column: auto !important;
    }
}
