        * {
            box-sizing: border-box;
        }

        :root {
            --ink: #101828;
            --muted: #526070;
            --blue: #0058B0;
            --orange: #ff9800;
            --pink: #af5e94;
            --green: #1f9d5a;
            --paper: #fff8ef;
            --cream: #fff3dc;
            --line: #e6e1d8;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.55;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }



/* FONTS */
@font-face {font-family: 'Yanone Kaffeesatz'; font-style: normal; font-weight: 400; src: local('Yanone Kaffeesatz Regular'), local('YanoneKaffeesatz-Regular'), url(https://www.artnculture.org/cods/fonts/YDAoLskQQ5MOAgvHUQCcLfGwxTS8d1Q9KiDNCMKLFUM.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;}








        .hero {
            position: relative;
            overflow: hidden;
            padding: 70px 0 48px;
            background:
                linear-gradient(90deg, rgba(255, 248, 239, 0.96), rgba(255, 248, 239, 0.88)),
                radial-gradient(circle at 18% 20%, rgba(255, 152, 0, 0.28), transparent 32%),
                radial-gradient(circle at 80% 12%, rgba(175, 94, 148, 0.25), transparent 34%),
                radial-gradient(circle at 74% 82%, rgba(0, 88, 176, 0.18), transparent 32%);
        }

        .hero-inner {
            width: min(1200px, calc(100% - 36px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 0.95fr;
            gap: 48px;
            align-items: center;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 9px 14px;
            border-radius: 999px;
            background: #fff;
            color: var(--blue);
            font-weight: 900;
            box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
        }

        .hero h1 {
            margin: 20px 0 18px;
            max-width: 720px;
            font-size: clamp(48px, 7vw, 92px);
            line-height: 0.94;
            letter-spacing: 0;
        }

        .hero h1 span {
            display: inline-block;
            color: var(--pink);
        }

        .hero-text {
            max-width: 660px;
            margin: 0 0 28px;
            font-size: 22px;
            color: #344256;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .ana-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 56px;
            padding: 14px 22px;
            border-radius: 9px;
            border: 1px solid transparent;
            font-size: 18px;
            font-weight: 900;
            cursor: pointer;
        }

.btncntre {margin-top:26px; place-self: center;}
.ana-btn.primary {background: var(--blue);color: #fff; transition:1s;}
.ana-btn.primary:hover {background: #f58634;}

        .ana-btn.light {
            background: #fff;
            color: var(--blue);
            border-color: #a9cef4;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, max-content);
            gap: 14px;
        }

        .hero-stat {
            min-width: 122px;
            padding: 13px 15px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(230, 225, 216, 0.9);
        }

        .hero-stat strong {
            display: block;
            font-size: 24px;
            color: var(--blue);
            line-height: 1;
        }

        .hero-stat span {
            display: block;
            margin-top: 4px;
            color: #526070;
            font-size: 13px;
            font-weight: 800;
        }

        .visual-board {
            position: relative;
            min-height: 620px;
        }

        .paint-card {
            position: absolute;
            overflow: hidden;
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 26px 70px rgba(16, 24, 40, 0.18);
            border: 8px solid #fff;
        }

        .paint-card .fill {
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 46px;
            background-size: cover;
            background-position: center;
        }

        .card-large {
            width: 58%;
            height: 310px;
            left: 6%;
            top: 22px;
            transform: rotate(-4deg);
        }

        .card-large .fill {
            background:
                linear-gradient(135deg, rgba(0, 88, 176, 0.72), rgba(175, 94, 148, 0.58)),
                url("/assets/images/home/art-class.jpg");
            background-size: cover;
            background-position: center;
        }

        .card-tall {
            width: 40%;
            height: 390px;
            right: 0;
            top: 84px;
            transform: rotate(5deg);
        }

        .card-tall .fill {
            background:
                linear-gradient(135deg, rgba(255, 152, 0, 0.68), rgba(31, 157, 90, 0.58)),
                url("/assets/images/home/event-award.jpg");
            background-size: cover;
            background-position: center;
        }

        .card-small {
            width: 42%;
            height: 210px;
            left: 18%;
            bottom: 68px;
            transform: rotate(3deg);
        }

        .card-small .fill {
            background:
                linear-gradient(135deg, rgba(31, 157, 90, 0.70), rgba(0, 88, 176, 0.58)),
                url("/assets/images/home/corporate-workshop.jpg");
            background-size: cover;
            background-position: center;
        }

        .profile-preview {
            position: absolute;
            right: 8%;
            bottom: 0;
            width: 300px;
            overflow: hidden;
            border-radius: 20px;
            background: #fff;
            box-shadow: 0 26px 70px rgba(16, 24, 40, 0.22);
            border: 1px solid #edf0f5;
        }

        .preview-cover {
            height: 88px;
            background: linear-gradient(110deg, var(--blue), var(--pink));
        }

        .preview-body {
            padding: 0 22px 22px;
            text-align: center;
        }

        .preview-body img {
            width: 92px;
            height: 92px;
            margin: -46px auto 10px;
            border-radius: 50%;
            border: 6px solid #fff;
            object-fit: cover;
            background: #fff;
        }

        .preview-body h3 {
            margin: 0;
            font-size: 24px;
        }

        .preview-body p {
            margin: 4px 0 16px;
            color: var(--blue);
            font-weight: 900;
        }

        .preview-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .preview-buttons span {
            padding: 10px 8px;
            border-radius: 8px;
            background: #f1f5f9;
            font-weight: 900;
        }

        .paper-strip {
            overflow: hidden;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: #fff;
        }

        .strip-track {
            display: flex;
            gap: 18px;
            width: max-content;
            padding: 16px 0;
            animation: moveStrip 32s linear infinite;
        }

        .strip-track span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            background: #fff8ef;
            border: 1px solid #eedfca;
            font-weight: 900;
            white-space: nowrap;
        }

        @keyframes moveStrip {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        .section {
            padding: 20px 0;
        }

        .section.white {
            background: #fff;
        }

        .section.cream {
            background: #fff8ef;
        }

        .section.bluewash {
            background: #eaf6ff;
        }

        .section.dark {
            background: #101828;
            color: #fff;
        }

        .inner {
            width: min(1200px, calc(100% - 36px));
            margin: 0 auto;
        }

    /*    .section-head {
            max-width: 780px;
            margin-bottom: 36px;
        }*/

        .section-head.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .label {
            display: flex;
			font-size: 20px;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--pink);
            font-weight: bold;
			place-self: center;
			font-size:22px;
        }

.section-head h2 {margin: 0 0 12px; letter-spacing: 0; font-family: 'Yanone Kaffeesatz'; font-weight: normal; line-height: 55px;  text-transform: uppercase; font-size: 56px;
    text-align: center; color: #f58634;}
.section-head h2 span {display:block; color:#526070;}		
.section-head p {margin: 0;  color: #526070; font-size: 20px; line-height:24px; text-align:center;}
        .dark .section-head p {
            color: #d0d7e2;
        }

        .world-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
			margin-top:20px;
        }

        .world-card {
            position: relative;
            overflow: hidden;
            min-height: 400px;
            border-radius: 12px;
            padding: 20px;
            background: #fff;
            color: var(--ink);
            box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
			text-align-last: center;
        }

        .world-card::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.16;
            background:
                linear-gradient(135deg, var(--card-a), var(--card-b)),
                var(--card-img);
            background-size: cover;
            background-position: center;
        }

        .world-card > * {
            position: relative;
            z-index: 1;
        }

		
		
		.world-icon img {width: auto;
    height: 90px;
    margin-bottom: 10px;
    place-self: anchor-center;}

        .world-card h3 {
            margin: 0 0 6px;
            font-size: 25px;
            line-height: 1.08;
			text-align:center;
			color:#333
        }
		
.world-card h3 span { display:block;}		

        .world-card p {
            margin: 0 0 15px;
            color: #425166;
			text-align:center;
			min-height:120px;
        }

        .world-card ul {
            margin: 0 0 15px;
            padding: 6px 6px 6px 25px;
            color: #425166;
            font-weight: 700;
			border-radius:6px;
			background-color:#ffffff78;
			text-align-last:left;
        }
		

        .world-card a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--card-a);
            font-weight: 900;
        }

        .world-learn {
            --card-a: #0058B0;
            --card-b: #27a6df;
            --card-img: url("/assets/images/home/learning.jpg");
        }

        .world-profile {
            --card-a: #af5e94;
            --card-b: #ff9800;
            --card-img: url("/assets/images/home/profile.jpg");
        }

        .world-events {
            --card-a: #ff9800;
            --card-b: #af5e94;
            --card-img: url("/assets/images/home/exhibition.jpg");
        }

        .world-workshop {
            --card-a: #1f9d5a;
            --card-b: #0058B0;
            --card-img: url("/assets/images/home/workshop.jpg");
        }

        .journey {
            display: grid;
            grid-template-columns: 0.88fr 1.12fr;
            gap: 44px;
            align-items: start;
        }

        .journey-art {
            position: sticky;
            top: 112px;
            min-height: 520px;
            border-radius: 24px;
            overflow: hidden;
            background:
                linear-gradient(145deg, rgba(0, 88, 176, 0.18), rgba(255, 152, 0, 0.24)),
                #fff;
            border: 1px solid var(--line);
            box-shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
        }

        .journey-canvas {
            position: absolute;
            inset: 26px;
            border-radius: 20px;
            background:
                linear-gradient(120deg, rgba(255,255,255,0.8), rgba(255,255,255,0.35)),
                url("/assets/images/art-n-artist.jpg");
            background-repeat: no-repeat;
            background-size: 220px auto;
            background-position: center;
        }

        .journey-tag {
            position: absolute;
            padding: 12px 15px;
            border-radius: 999px;
            background: #fff;
            font-weight: 900;
            box-shadow: 0 12px 26px rgba(16, 24, 40, 0.13);
        }

        .tag-one {
            left: 28px;
            top: 34px;
            color: var(--blue);
        }

        .tag-two {
            right: 24px;
            top: 160px;
            color: var(--pink);
        }

        .tag-three {
            left: 56px;
            bottom: 110px;
            color: var(--green);
        }

        .tag-four {
            right: 34px;
            bottom: 38px;
            color: var(--orange);
        }

        .journey-list {
            display: grid;
            gap: 18px;
        }

        .journey-item {
            display: grid;
            grid-template-columns: 82px 1fr;
            gap: 22px;
            padding: 24px;
            border-radius: 20px;
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: 0 16px 34px rgba(16, 24, 40, 0.06);
        }

        .journey-number {
            width: 82px;
            height: 82px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #101828;
            color: #fff;
            font-size: 30px;
            font-weight: 900;
        }

        .journey-item h3 {
            margin: 0 0 8px;
            font-size: 26px;
        }

        .journey-item p {
            margin: 0;
            color: #526070;
            font-size: 18px;
        }

        .audience-wall {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 12px;
        }

        .audience-card {
            min-height: 150px;
            padding: 18px;
            border-radius: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: #fff;
            color: var(--ink);
            border: 1px solid rgba(255,255,255,0.18);
        }

        .audience-card:nth-child(1),
        .audience-card:nth-child(4),
        .audience-card:nth-child(7) {
            grid-column: span 2;
            background: #fff3dc;
        }

        .audience-card:nth-child(2),
        .audience-card:nth-child(5) {
            grid-column: span 3;
            background: #eaf6ff;
        }

        .audience-card:nth-child(3),
        .audience-card:nth-child(6),
        .audience-card:nth-child(8) {
            grid-column: span 3;
            background: #f7e9f2;
        }

        .audience-card i {
            font-size: 28px;
            color: var(--blue);
        }

        .audience-card strong {
            display: block;
            margin-top: 18px;
            font-size: 22px;
        }

        .audience-card span {
            color: #526070;
        }

        .profile-showcase {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 42px;
            align-items: center;
        }

        .phone-frame {
            width: min(360px, 100%);
            margin: 0 auto;
            padding: 14px;
            border-radius: 34px;
            background: #101828;
            box-shadow: 0 30px 70px rgba(16, 24, 40, 0.24);
        }

        .phone-screen {
            overflow: hidden;
            border-radius: 24px;
            background: #fff8ef;
        }

        .phone-cover {
            height: 126px;
            background: linear-gradient(120deg, var(--blue), var(--pink));
        }

        .phone-body {
            padding: 0 20px 22px;
            text-align: center;
        }

        .phone-body img {
            width: 106px;
            height: 106px;
            margin: -53px auto 14px;
            border: 6px solid #fff;
            border-radius: 50%;
            background: #fff;
            object-fit: cover;
        }

        .phone-body h3 {
            margin: 0;
            font-size: 26px;
        }

        .phone-body p {
            margin: 5px 0 18px;
            color: var(--blue);
            font-weight: 900;
        }

        .phone-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 9px;
        }

        .phone-grid span {
            padding: 12px 8px;
            border-radius: 9px;
            background: #fff;
            font-weight: 900;
            box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
        }

        .feature-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-top: 26px;
        }

        .feature-list div {
            padding: 17px;
            border-radius: 10px;
            background: #fff;
            font-weight: 600;
			box-shadow: 2px 2px 5px #00000020;
        }
		
		
		
		
		
		
		

        .feature-list i {
            color: var(--pink);
            margin-right: 7px;
        }

        .event-board {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .event-card {
            overflow: hidden;
            border-radius: 20px;
            background: #fff;
            color: var(--ink);
        }

        .event-top {
            min-height: 180px;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 44px;
        }

        .event-card:nth-child(1) .event-top {
            background: linear-gradient(135deg, #0058B0, #27a6df);
        }

        .event-card:nth-child(2) .event-top {
            background: linear-gradient(135deg, #ff9800, #af5e94);
        }

        .event-card:nth-child(3) .event-top {
            background: linear-gradient(135deg, #1f9d5a, #0058B0);
        }

        .event-body {
            padding: 24px;
        }

        .event-body h3 {
            margin: 0 0 8px;
            font-size: 25px;
        }

        .event-body p {
            margin: 0 0 18px;
            color: #526070;
        }

        .event-body a {
            color: var(--blue);
            font-weight: 900;
        }

        .workshop-river {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .workshop-chip {
            padding: 14px 18px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--line);
            font-weight: 900;
            box-shadow: 0 12px 24px rgba(16, 24, 40, 0.06);
        }

        .workshop-chip:nth-child(3n+1) {
            color: var(--blue);
        }

        .workshop-chip:nth-child(3n+2) {
            color: var(--pink);
        }

        .workshop-chip:nth-child(3n+3) {
            color: var(--green);
        }

        .cta-panel {
            position: relative;
            overflow: hidden;
            padding: 46px;
            border-radius: 26px;
            background:
                linear-gradient(120deg, rgba(0, 88, 176, 0.94), rgba(175, 94, 148, 0.94)),
                url("/assets/images/home/art-event.jpg");
            background-size: cover;
            background-position: center;
            color: #fff;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 26px;
        }

        .cta-panel h2 {
            margin: 0 0 10px;
            font-size: clamp(34px, 4vw, 56px);
            line-height: 1.03;
        }

        .cta-panel p {
            margin: 0;
            max-width: 760px;
            color: #eef6ff;
            font-size: 21px;
        }

        .cta-panel .ana-btn {
            background: #fff;
            color: var(--blue);
        }

        .footer {
            padding: 42px 0;
            background: #0b1220;
            color: #d7deea;
        }

        .footer-inner {
            width: min(1200px, calc(100% - 36px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 24px;
            align-items: center;
        }

        .footer strong {
            color: #fff;
            font-size: 22px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-weight: 900;
        }

        .footer-links a {
            color: #fff;
        }

        @media (max-width: 1040px) {
            .hero-inner,
            .journey,
            .profile-showcase,
            .cta-panel {
                grid-template-columns: 1fr;
            }

            .visual-board {
                min-height: 560px;
            }

            .world-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .journey-art {
                position: relative;
                top: auto;
            }

            .event-board {
                grid-template-columns: 1fr;
            }

            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
		
		
		
		
		

        @media (max-width: 760px) {

            .hero {
                padding-top: 42px;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-stat {
                min-width: 0;
            }

            .visual-board {
                min-height: 520px;
            }

            .card-large {
                width: 72%;
                left: 0;
            }

            .card-tall {
                width: 52%;
                right: 0;
            }

            .card-small {
                width: 60%;
                left: 0;
            }

            .profile-preview {
                right: 0;
                width: 260px;
            }

            .world-grid {
                grid-template-columns: 1fr;
            }

            .journey-item {
                grid-template-columns: 1fr;
            }

            .journey-number {
                width: 64px;
                height: 64px;
                font-size: 24px;
            }

            .audience-wall {
                grid-template-columns: 1fr;
            }

            .audience-card,
            .audience-card:nth-child(1),
            .audience-card:nth-child(2),
            .audience-card:nth-child(3),
            .audience-card:nth-child(4),
            .audience-card:nth-child(5),
            .audience-card:nth-child(6),
            .audience-card:nth-child(7),
            .audience-card:nth-child(8) {
                grid-column: auto;
            }

            .feature-list {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 58px 0;
            }

            .cta-panel {
                padding: 30px;
            }
        }





        @media (max-width: 520px) {

            .hero h1 {
                font-size: 48px;
            }

            .hero-text,
            .section-head p,
            .cta-panel p {
                font-size: 18px;
            }

            .preview-buttons,
            .phone-grid {
                grid-template-columns: 1fr;
            }
        }






/* Banner Slider */
.home-image-slider {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.home-image-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 650;
    height: auto;
}

.home-image-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.home-image-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.home-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #111827;
}

.home-image-slider-btn {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #111827;
    font-size: 18px;
    cursor: pointer;
}

.home-image-slider-btn:hover {
    background: #ff9800;
    color: #111827;
}

.home-image-slider-prev {
    left: 20px;
}

.home-image-slider-next {
    right: 20px;
}

@media (max-width: 768px) {
    .home-image-slider-track {
        aspect-ratio: 1920 / 650;
    }

    .home-image-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .home-image-slider-prev {
        left: 10px;
    }

    .home-image-slider-next {
        right: 10px;
    }
}

@media (max-width: 520px) {
    .home-image-slider-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .home-image-slider-prev {
        left: 8px;
    }

    .home-image-slider-next {
        right: 8px;
    }
}
















/* Article | Blog */
#articleSlider {overflow:hidden; padding:0px 10px 10px 10px;}
#articleSlider h2 {font: normal 35px 'Yanone Kaffeesatz', sans-serif;  color: #EB268F; text-align: center;letter-spacing: 1px; margin-top:0px; margin-bottom:20px;}
#articleSlider h2 .fa {color:#333; font-size:30px;}
.swiper {position: relative;/*  overflow: hidden;*/}
.swiper-wrapper {display: flex;transition-property: transform;}
.swiper-slide {flex-shrink: 0; width: 100%; position: relative;}
.art-img{width:100%;aspect-ratio:1/1;overflow:hidden;border-radius:8px;}
.art-img img{width:100%;height:auto;object-fit:cover;}
.art-title{font-family: arial;color: #555;text-align:center;font-size:14px;line-height:normal;margin-top:8px;font-weight:normal; text-transform:none; transition:1s;}
.art-title:hover { color:#EB268F;}
.artclbtn {display: inline-block;text-align: center; width: 100%; margin: 0px auto;}
.artclbtn a {text-decoration: none;color: #f1f1f1; background: #00B0F0; font-family: arial;  font-size: 18px; padding: 8px; border-radius: 5px;transition: 1s;  cursor: pointer;
 font-weight: normal;}	
.artclbtn a .fa {color: #333333ad !important; font-size: 16px !important;}
.artclbtn a:hover {background-color:#EB268F;}






/* Home Video Slider - Final */
.home-video-section {
    overflow: hidden;
    padding: 42px 0 48px;
    background: #111827;
}

.home-video-section .section-head {
    margin-bottom: 28px;
}

.home-video-section .label {
    justify-content: center;
    color: #af5e94;
}

.home-video-slider-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 18px;
    align-items: center;
}

.home-video-window {
    overflow: hidden;
    min-width: 0;
}

.home-video-track {
    display: flex;
    gap: 28px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.home-video-card {
    flex: 0 0 calc((100% - 28px) / 2);
    min-width: 0;
}

.home-video-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.home-video-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 3px solid #ffffff;
    border-radius: 6px;
    background: #000000;
}

.home-video-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    filter: none;
}

.home-video-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 82px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #ff0000;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-video-open:hover .home-video-play {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow: 0 12px 28px rgba(255, 0, 0, 0.38);
}

.home-video-open h3 {
    margin: 0;
    padding: 10px 4px 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    text-shadow: none;
}

.home-video-arrow {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #07152d;
    cursor: pointer;
    font-size: 19px;
    box-shadow: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.home-video-arrow:hover {
    background: #f58634;
    color: #ffffff;
}

/* Video Popup */
.home-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.home-video-modal.is-open {
    display: flex;
}

.home-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
}

.home-video-modal-box {
    position: relative;
    z-index: 2;
    width: min(1100px, 96vw);
}

.home-video-iframe-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 4px solid #ffffff;
    background: #000000;
}

.home-video-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-video-modal-close {
    position: absolute;
    right: -14px;
    top: -14px;
    z-index: 4;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    font-size: 18px;
    display: grid;
    place-items: center;
}

.home-video-modal-close:hover {
    background: #ff0000;
    color: #ffffff;
}

body.video-modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .home-video-slider-wrap {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 12px;
    }

    .home-video-track {
        gap: 18px;
    }

    .home-video-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .home-video-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .home-video-play {
        width: 72px;
        height: 50px;
        font-size: 30px;
        border-radius: 11px;
    }
}

@media (max-width: 640px) {
    .home-video-section {
        padding: 30px 0 36px;
    }

    .home-video-section .label {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .home-video-slider-wrap {
        display: block;
        padding: 0 42px;
    }

    .home-video-window {
        overflow: hidden;
    }

    .home-video-track {
        gap: 16px;
    }

    .home-video-card {
        flex: 0 0 100%;
    }

    .home-video-media {
        border-width: 3px;
        border-radius: 6px;
    }

    .home-video-play {
        width: 62px;
        height: 44px;
        border-radius: 10px;
        font-size: 27px;
    }

    .home-video-open h3 {
        padding-top: 9px;
        font-size: 15px;
    }

    .home-video-arrow {
        position: absolute;
        top: 50%;
        z-index: 8;
        width: 36px;
        height: 36px;
        font-size: 14px;
        transform: translateY(-50%);
    }

    .home-video-prev {
        left: 8px;
    }

    .home-video-next {
        right: 8px;
    }

    .home-video-modal {
        padding: 14px;
    }

    .home-video-modal-box {
        width: 100%;
    }

    .home-video-iframe-wrap {
        border-width: 2px;
        border-radius: 6px;
    }

    .home-video-modal-close {
        right: 4px;
        top: -38px;
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
}


/* Header + Responsive Menu */
.ana-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
}

.ana-nav {
    position: relative;
    width: min(1200px, calc(100% - 36px));
    min-height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.ana-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.ana-brand img {
    width: 124px;
    height: auto;
    object-fit: contain;
}

.ana-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.ana-menu a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #1f2937;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}

.ana-menu a i {
    width: 18px;
    color: #0058B0;
    text-align: center;
    font-size: 15px;
}

.ana-menu a:hover {
    background: #eef6ff;
    color: #0058B0;
}

.ana-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #f3f4f6;
    color: #111827;
    cursor: pointer;
    font-size: 24px;
}

.ana-menu-toggle:hover {
    background: #eaf6ff;
    color: #0058B0;
}

@media (max-width: 950px) {
    .ana-nav {
        width: 100%;
        min-height: 82px;
        padding: 12px 24px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ana-brand img {
        width: 116px;
    }

    .ana-menu-toggle {
        display: grid;
        place-items: center;
        flex: 0 0 42px;
    }

    .ana-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 24px;
        z-index: 200;
        width: 300px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        background: #ffffff;
        border-top: 3px solid #00b0f0;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
    }

    .ana-menu.is-open {
        display: flex;
    }

    .ana-menu a {
        width: 100%;
        padding: 11px 14px;
        border-radius: 0;
        border-bottom: 1px solid #d9dde3;
        background: #ffffff;
        color: #1f2937;
        font-size: 16px;
        line-height: 1.25;
    }

    .ana-menu a:last-child {
        border-bottom: 0;
    }

    .ana-menu a i {
        width: 24px;
        font-size: 16px;
    }

    .ana-menu a:hover {
        background: #eef6ff;
    }
}

@media (max-width: 520px) {
    .ana-nav {
        min-height: 72px;
        padding: 10px 14px;
    }

    .ana-brand img {
        width: 96px;
    }

    .ana-menu-toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 21px;
    }

    .ana-menu {
        right: 14px;
        width: 280px;
    }

    .ana-menu a {
        padding: 10px 13px;
        font-size: 15px;
    }
}