        /* =========================
       RHINO ARTICLE LIST PAGE - BASE
       ========================= */
        :root {
            --bg: #f7f2ea;
            --surface: #fffcf7;
            --ink: #0d1117;
            --ink2: #2a2f3a;
            --muted: #6b6860;
            --muted2: #9a9590;
            --orange: #ff5c00;
            --orange2: #ff7a2e;
            --orange-pale: #fff1e8;
            --navy: #111c2e;
            --navy2: #1c2d46;
            --line: rgba(17, 24, 39, .09);
            --line2: rgba(17, 24, 39, .16);
            --r-md: 20px;
            --r-lg: 28px;
            --r-xl: 40px;
            --font: "anjoman";
            --font2: 'anjoman-titr';
            --cont: min(1280px, calc(100% - 56px));
        }
        
	@font-face {
	  font-family: 'anjoman';
	  src: url(../font/Anjoman-Medium.woff);
	  font-style: normal;
	  font-weight: 300;
	}
	
	@font-face {
	  font-family: 'anjoman-titr';
	  src: url(../font/Anjoman-Black.ttf);
	  font-style: normal;
	  font-weight: 100;
	}

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--ink);
            line-height: 1.7;
            overflow-x: hidden;
            background-image:
                radial-gradient(ellipse 70% 40% at 96% 0%, rgba(255, 92, 0, .10), transparent 55%),
                radial-gradient(ellipse 50% 50% at 4% 8%, rgba(17, 28, 46, .06), transparent 50%);
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            z-index: 999;
            pointer-events: none;
            opacity: .14;
            mix-blend-mode: multiply;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
        }

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

        button,
        input,
        select {
            font-family: var(--font);
        }

        button {
            cursor: pointer;
        }

        .c {
            width: var(--cont);
            margin: 0 auto;
        }

        .card {
            border: 1px solid var(--line);
            background: rgba(255, 252, 247, .88);
            backdrop-filter: blur(18px);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            color: var(--orange);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .4px;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 20px;
            height: 2px;
            border-radius: 99px;
            background: linear-gradient(90deg, var(--orange), transparent);
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 11px;
            border-radius: 99px;
            border: 1px solid rgba(255, 92, 0, .16);
            background: var(--orange-pale);
            color: var(--orange);
            font-size: 11px;
            font-weight: 800;
            line-height: 1;
            white-space: nowrap;
        }

        .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        .rev {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity .55s ease, transform .55s ease;
        }

        .rev.on {
            opacity: 1;
            transform: none;
        }

        .d1 {
            transition-delay: .07s;
        }

        .d2 {
            transition-delay: .14s;
        }

        .d3 {
            transition-delay: .21s;
        }

        /* =========================
       NAVIGATION
       ========================= */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            height: 76px;
            display: flex;
            font-family:var(--font2);
            align-items: center;
            font-family:var(--font2);
            border-bottom: 1px solid rgba(17, 24, 39, .08);
            background: rgba(247, 242, 234, .82);
            backdrop-filter: blur(28px);
            transition: height .3s, background .3s, box-shadow .3s;
        }

        .nav.s {
            height: 66px;
            background: rgba(247, 242, 234, .96);
            box-shadow: 0 10px 36px rgba(17, 24, 39, .07);
        }

        .nav-in {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            position: relative;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 5px;
            flex-shrink: 0;
            line-height: 1.2;
        }

        .brand-logo {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid var(--orange);
            overflow: hidden;
            box-shadow: 0 10px 24px rgba(255, 92, 0, .24);
            flex-shrink: 0;
        }

        .brand-logo img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .lname {
            font-size: 21px;
            font-weight: 900;
            letter-spacing: -.4px;
        }

        .lsub {
            font-size: 10px;
            font-weight: 700;
            color: var(--muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            height: 40px;
            padding: 0 13px;
            border-radius: 99px;
            color: var(--ink2);
            font-size: 13px;
            font-weight: 700;
            transition: color .2s, background .2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--orange);
            background: rgba(255, 92, 0, .08);
        }

        .nav-r {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .nav-search-btn,
        .nburg {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border: 1px solid var(--line2);
            background: rgba(255, 255, 255, .65);
            color: var(--ink2);
            transition: transform .2s, border-color .2s, background .2s;
        }

        .nav-search-btn {
            border-radius: 50%;
        }

        .nburg {
            display: none;
            border-radius: 12px;
        }

        .nav-search-btn:hover,
        .nburg:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 92, 0, .4);
            background: var(--orange-pale);
        }

        .nav-search-btn.open {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff;
        }

        .ncta {
            display: flex;
            align-items: center;
            gap: 7px;
            height: 40px;
            padding: 0 16px;
            border-radius: 99px;
            background: var(--navy);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            transition: background .2s, transform .2s;
        }

        .ncta:hover {
            background: var(--orange);
            transform: translateY(-2px);
        }

        .nav-mobile-link {
            display: none !important
        }

        /* =========================
       READ PROGRESS + SEARCH MODAL
       ========================= */
        .read-progress {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            height: 3px;
        }

        .read-progress-fill {
            height: 100%;
            width: 0%;
            border-radius: 0 99px 99px 0;
            background: linear-gradient(90deg, var(--orange), var(--orange2));
            transition: width .1s linear;
        }

        .search-overlay {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 88px;
            background: rgba(17, 24, 39, .52);
            backdrop-filter: blur(10px);
            opacity: 0;
            pointer-events: none;
            transition: opacity .28s ease;
        }

        .search-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .search-box-modal {
            width: min(680px, calc(100% - 40px));
            overflow: hidden;
            border-radius: var(--r-xl);
            border: 1px solid var(--line2);
            background: var(--surface);
            box-shadow: 0 32px 80px rgba(17, 24, 39, .2);
            transform: translateY(-12px) scale(.97);
            transition: transform .3s cubic-bezier(.22, .68, 0, 1.2);
        }

        .search-overlay.open .search-box-modal {
            transform: none;
        }

        .search-input-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 22px;
            border-bottom: 1px solid var(--line);
        }

        .search-input-row svg {
            flex-shrink: 0;
            color: var(--orange);
        }

        .search-input-row input {
            flex: 1;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--ink);
            font-size: 17px;
            font-weight: 600;
        }

        .search-input-row input::placeholder {
            color: var(--muted);
        }

        .search-close {
            width: 36px;
            height: 36px;
            border-radius: 11px;
            border: 1px solid var(--line2);
            background: rgba(255, 255, 255, .8);
            color: var(--muted);
            font-size: 18px;
            line-height: 1;
            transition: background .2s, color .2s;
        }

        .search-close:hover {
            background: var(--orange-pale);
            color: var(--orange);
        }

        .search-hints {
            padding: 16px 22px 20px;
        }

        .search-hints-label {
            margin-bottom: 11px;
            color: var(--muted);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .3px;
        }

        .search-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .stag {
            display: flex;
            align-items: center;
            height: 32px;
            padding: 0 13px;
            border-radius: 99px;
            border: 1px solid var(--line2);
            background: rgba(255, 255, 255, .8);
            color: var(--ink2);
            font-size: 12px;
            font-weight: 800;
            transition: border-color .2s, color .2s, background .2s;
        }

        .stag:hover {
            border-color: rgba(255, 92, 0, .3);
            color: var(--orange);
            background: var(--orange-pale);
        }

        .search-results { border-top: 1px solid var(--line); }
        .sr-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 22px; border-bottom: 1px solid var(--line); transition: background .15s; }
        .sr-item:last-child { border-bottom: 0; }
        .sr-item:hover { background: var(--orange-pale); }
        .sr-item-title { font-size: 14px; font-weight: 800; color: var(--ink); }
        .sr-item-intro { font-size: 12px; color: var(--muted); margin-top: 2px; }
        .sr-item-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
        .sr-cat { font-size: 11px; font-weight: 700; color: var(--orange); background: var(--orange-pale); padding: 2px 8px; border-radius: 99px; }
        .sr-time { font-size: 11px; color: var(--muted); white-space: nowrap; }
        .sr-loading, .sr-empty { padding: 18px 22px; font-size: 13px; color: var(--muted); text-align: center; }

        /* =========================
       PAGE HEADER
       ========================= */
        .page-header {
            padding: 36px 0 0;
        }

        .ph-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--r-xl);
            padding: clamp(28px, 3.5vw, 48px);
            border: 1px solid var(--line);
            background: rgba(255, 252, 247, .82);
            backdrop-filter: blur(22px);
            box-shadow: 0 8px 32px rgba(17, 24, 39, .06);
        }

        .ph-card::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: url(../img/Rhino\ Pattern\ 5.png);
            background-size: cover;
            opacity: 0.2;

        }

        .ph-inner {
            position: relative;
            z-index: 1;
            display: block;
        }

        .ph-crumb {
            display: flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 14px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
        }

        .ph-crumb a {
            color: var(--muted);
            transition: color .2s;
        }

        .ph-crumb a:hover {
            color: var(--orange);
        }

        .ph-crumb sep {
            opacity: .45;
        }

        .ph-title {
            margin-bottom: 10px;
            color: var(--navy);
            font-size: clamp(32px, 4vw, 56px);
            font-weight: 900;
            letter-spacing: -1.5px;
            line-height: 1.1;
        }

        .ph-title em {
            position: relative;
            z-index: 1;
            color: var(--orange);
            font-style: normal;
        }

        .ph-title em::after {
            content: "";
            position: absolute;
            right: -3px;
            left: -3px;
            bottom: 4px;
            z-index: -1;
            height: 12px;
            border-radius: 99px;
            background: rgba(255, 92, 0, .14);
        }

        .ph-desc {
            max-width: 560px;
            margin-bottom: 22px;
            color: var(--muted);
            font-size: 15px;
            font-weight: 500;
            line-height: 1.85;
        }

        .ph-stats {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .ph-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--ink2);
            font-size: 13px;
            font-weight: 700;
        }

        .ph-stat strong {
            color: var(--navy);
            font-size: 20px;
            font-weight: 900;
        }

        .ph-sep {
            width: 1px;
            height: 22px;
            background: var(--line2);
        }

        /* =========================
       EDITORIAL SLIDER
       ========================= */
        .ed-sec {
            padding: 36px 0 0;
        }

        .sec-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 24px;
        }

        .sec-title {
            color: var(--ink);
            font-size: clamp(24px, 3.2vw, 42px);
            font-weight: 900;
            letter-spacing: -.9px;
            line-height: 1.15;
        }

        .link-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 42px;
            padding: 0 16px;
            border-radius: 99px;
            border: 1px solid var(--line2);
            background: rgba(255, 255, 255, .65);
            color: var(--ink2);
            font-size: 13px;
            font-weight: 800;
            white-space: nowrap;
            flex-shrink: 0;
            backdrop-filter: blur(14px);
            transition: transform .2s, border-color .2s;
        }

        .link-btn:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 92, 0, .38);
        }

        .ed-slider-wrap {
            position: relative;
        }

        .ed-track-outer {
            overflow: hidden;
            border-radius: var(--r-xl);
        }

        .ed-track {
            display: flex;
            align-items: stretch;
            direction: ltr;
            transition: transform .55s cubic-bezier(.22, .68, 0, 1.2);
            will-change: transform;
        }

        .ed-slide {
            flex: 0 0 100%;
            min-width: 100%;
            display: flex;
            direction: rtl;
        }

        .ed-card {
            width: 100%;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
            min-height: 430px;
            overflow: hidden;
            border-radius: var(--r-xl);
            border: 1px solid rgba(255, 255, 255, .07);
            background: var(--navy);
        }

        .ed-body {
            position: relative;
            z-index: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: clamp(28px, 3.5vw, 48px);
            background: linear-gradient(155deg, rgba(255, 92, 0, .16) 0%, var(--navy2) 28%, #0b1321 100%);
        }

        .ed-body::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: .18;
            pointer-events: none;
            background:
                linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0/42px 42px,
                linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0/42px 42px;
        }

        .ed-body::after {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 92, 0, .26), transparent 58%);
            pointer-events: none;
        }

        .ed-content,
        .ed-footer {
            position: relative;
            z-index: 1;
        }

        .ed-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: #ffb07a;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .4px;
            text-transform: uppercase;
        }

        .ed-eyebrow::before {
            content: "";
            width: 20px;
            height: 2px;
            border-radius: 99px;
            background: linear-gradient(90deg, #ffb07a, transparent);
        }

        .ed-num {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, .35);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .3px;
        }

        .ed-meta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .ed-meta-chip {
            display: flex;
            align-items: center;
            gap: 5px;
            color: rgba(255, 255, 255, .55);
            font-size: 11px;
            font-weight: 700;
        }

        .ed-meta-chip span {
            color: rgba(255, 255, 255, .3);
        }

        .ed-title {
            margin-bottom: 14px;
            color: #fff;
            font-size: clamp(22px, 2.6vw, 36px);
            font-weight: 900;
            letter-spacing: -.7px;
            line-height: 1.28;
        }

        .ed-copy {
            max-width: 540px;
            color: rgba(255, 255, 255, .68);
            font-size: 14px;
            font-weight: 500;
            line-height: 1.9;
        }

        .ed-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 24px;
        }

        .ed-author {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .8);
            font-size: 13px;
            font-weight: 800;
        }

        .ed-av {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .2);
            background: rgba(255, 92, 0, .3);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
        }

        .ed-author-name {
            color: #fff;
            font-size: 13px;
            font-weight: 800;
        }

        .ed-author-role {
            margin-top: 1px;
            color: rgba(255, 255, 255, .5);
            font-size: 11px;
            font-weight: 600;
        }

        .ed-read {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 46px;
            padding: 0 20px;
            border-radius: 14px;
            background: var(--orange);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            box-shadow: 0 10px 28px rgba(255, 92, 0, .3);
            transition: transform .2s, background .2s;
        }

        .ed-read:hover {
            transform: translateY(-2px);
            background: var(--orange2);
        }

        .ed-vis {
            position: relative;
            min-height: 100%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .ed-vis>img.ed-photo {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        .ed-vis-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(to left, rgba(0, 0, 0, .42), transparent 64%);
        }

        .ed-vis-badge,
        .ed-vis-tag {
            position: absolute;
            z-index: 2;
        }

        .ed-vis-badge {
            top: 18px;
            right: 18px;
            padding: 7px 14px;
            border-radius: 99px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .12);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            backdrop-filter: blur(10px);
        }

        .ed-vis-tag {
            right: 18px;
            bottom: 18px;
            left: 18px;
            padding: 15px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(0, 0, 0, .38);
            backdrop-filter: blur(14px);
        }

        .ed-vis-tag small {
            display: block;
            margin-bottom: 4px;
            color: rgba(255, 255, 255, .55);
            font-size: 10px;
            font-weight: 700;
        }

        .ed-vis-tag strong {
            display: block;
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            line-height: 1.55;
        }

        .ed-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 18px;
        }

        .ed-dots {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .ed-dot {
            width: 8px;
            height: 8px;
            border: 0;
            border-radius: 99px;
            background: var(--line2);
            transition: width .3s, background .3s;
        }

        .ed-dot.active {
            width: 26px;
            background: var(--orange);
        }

        .ed-arrow {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            border: 1px solid var(--line2);
            background: rgba(255, 255, 255, .7);
            color: var(--ink2);
            font-size: 14px;
            transition: background .2s, border-color .2s, transform .2s;
        }

        .ed-arrow:hover {
            transform: scale(1.08);
            border-color: rgba(255, 92, 0, .3);
            background: var(--orange-pale);
        }

        /* =========================
       TOOLBAR + ARTICLE GRID
       ========================= */
        .toolbar {
            position: sticky;
            top: 66px;
            z-index: 90;
            padding: 12px 0;
            border-bottom: 1px solid var(--line);
            background: rgba(247, 242, 234, .90);
            backdrop-filter: blur(22px);
        }

        .toolbar-in {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .search-wrap {
            flex: 1;
            max-width: 300px;
            min-width: 200px;
            height: 42px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 14px;
            border-radius: 13px;
            border: 1px solid var(--line2);
            background: rgba(255, 255, 255, .90);
        }

        .search-wrap svg {
            flex-shrink: 0;
            color: var(--orange);
        }

        .search-wrap input {
            flex: 1;
            min-width: 0;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--ink);
            font-size: 13px;
            font-weight: 600;
        }

        .search-wrap input::placeholder {
            color: var(--muted2);
        }

        .sort-wrap {
            display: flex;
            align-items: center;
            gap: 7px;
            flex-shrink: 0;
        }

        .sort-label {
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }

        .sort-sel {
            height: 34px;
            padding: 1px 10px;
            border-radius: 99px;
            border: 1px solid var(--line2);
            background: rgba(255, 255, 255, .7);
            color: var(--ink2);
            font-size: 12px;
            font-weight: 800;
            outline: 0;
            text-align: center;
        }

        .view-toggle {
            display: flex;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid var(--line2);
            border-radius: 11px;
            background: rgba(255, 255, 255, .7);
        }

        .vbtn {
            width: 36px;
            height: 34px;
            display: grid;
            place-items: center;
            border: 0;
            background: transparent;
            color: var(--muted);
            transition: background .2s, color .2s;
        }

        .vbtn.active {
            background: var(--orange);
            color: #fff;
        }

        .main-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 292px;
            gap: 26px;
            align-items: start;
            padding: 28px 0 80px;
        }

        #artGrid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        #artGrid.view-list {
            grid-template-columns: 1fr;
        }

        .ac {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: var(--r-lg);
            border: 1px solid var(--line);
            background: rgba(255, 252, 247, .90);
            backdrop-filter: blur(14px);
            transition: transform .28s cubic-bezier(.22, .68, 0, 1.2), box-shadow .28s, border-color .28s;
        }

        .ac:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 92, 0, .28);
            box-shadow: 0 20px 46px rgba(17, 24, 39, .10);
        }

        .ac-readtime {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 10px 14px 0;
            color: var(--muted);
            font-size: 11px;
            font-weight: 800;
        }

        .ac-readtime svg {
            color: var(--orange);
            flex-shrink: 0;
        }

        .ac-img {
            position: relative;
            width: 100%;
            height: 172px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .ac-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform .5s cubic-bezier(.22, .68, 0, 1.2);
        }

        .ac:hover .ac-img img {
            transform: scale(1.06);
        }

        .ac-body {
            display: flex;
            flex: 1;
            flex-direction: column;
            gap: 8px;
            padding: 14px 16px;
        }

        .ac-title {
            display: -webkit-box;
            overflow: hidden;
            color: var(--navy);
            font-size: 15px;
            font-weight: 800;
            letter-spacing: -.2px;
            line-height: 1.55;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .ac-summary {
            display: -webkit-box;
            overflow: hidden;
            color: var(--muted);
            font-size: 12px;
            font-weight: 600;
            line-height: 1.78;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .ac-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding: 10px 16px 14px;
            border-top: 1px solid var(--line);
            gap: 12px;
        }

        .ac-author {
            color: var(--ink2);
            font-size: 12px;
            font-weight: 800;
            flex: 1;
        }

        .ac-views {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            color: var(--muted);
            font-size: 10px;
            font-weight: 500;
            white-space: nowrap;
            opacity: .7;
        }

        .ac-read-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            transition: gap .2s;
            white-space: nowrap;
            background-color: var(--orange);
            padding: 2px 12px;
            border-radius: 8px;
            box-shadow: 0 5px 12px rgba(255, 92, 0, .3);

        }

        .ac:hover .ac-read-link {
            gap: 8px;
        }

        #artGrid.view-list .ac {
            flex-direction: row;
            max-height: 132px;
        }

        #artGrid.view-list .ac-img {
            width: 140px;
            height: auto;
        }

        #artGrid.view-list .ac-readtime {
            position: absolute;
            top: 8px;
            right: 8px;
            z-index: 2;
            padding: 3px 8px;
            border-radius: 99px;
            background: rgba(255, 255, 255, .85);
            backdrop-filter: blur(8px);
        }

        #artGrid.view-list .ac-body {
            padding: 12px 14px;
            gap: 5px;
        }

        #artGrid.view-list .ac-foot {
            padding: 8px 14px 12px;
        }

        #artGrid.view-list .ac-summary {
            -webkit-line-clamp: 1;
        }

        .art-more-wrap {
            display: flex;
            justify-content: center;
            margin-top: 28px;
        }

        .art-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 48px;
            padding: 0 28px;
            border-radius: 99px;
            border: 1.5px solid var(--line2);
            background: rgba(255, 255, 255, .75);
            color: var(--navy);
            font-size: 13px;
            font-weight: 800;
            backdrop-filter: blur(12px);
            transition: transform .2s, border-color .2s, box-shadow .2s;
        }

        .art-more-btn:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 92, 0, .38);
            color: var(--orange);
            box-shadow: 0 8px 22px rgba(255, 92, 0, .10);
        }

        /* =========================
       SIDEBAR
       ========================= */
        .sidebar {
            position: sticky;
            top: 120px;
            display: grid;
            gap: 18px;
        }

        .sb {
            border-radius: var(--r-lg);
            padding: 20px;
        }

        .topics h3,
        .tag-cloud h3 {
            margin-bottom: 14px;
            color: var(--navy);
            font-size: 15px;
            font-weight: 800;
            letter-spacing: -.2px;
        }

        .topic-list {
            max-height: 280px;
            overflow-y: auto;
            display: grid;
            gap: 7px;
            padding-left: 2px;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 92, 0, .3) transparent;
        }

        .topic-list::-webkit-scrollbar {
            width: 4px;
        }

        .topic-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .topic-list::-webkit-scrollbar-thumb {
            border-radius: 99px;
            background: rgba(255, 92, 0, .3);
        }

        .t-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 13px;
            border-radius: var(--r-md);
            border: 1px solid rgba(17, 24, 39, .08);
            background: rgba(255, 255, 255, .72);
            transition: transform .2s, border-color .2s, background .2s;
        }

        .t-item:hover,
        .t-item.active {
            transform: translateX(-3px);
            border-color: rgba(255, 92, 0, .3);
            background: var(--orange-pale);
        }

        .ti-l {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .ti-icon {
            width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            border-radius: 10px;
            background: var(--orange-pale);
            font-size: 17px;
        }

        .ti-name {
            color: var(--ink2);
            font-size: 13px;
            font-weight: 800;
            transition: color .2s;
        }

        .t-item:hover .ti-name,
        .t-item.active .ti-name {
            color: var(--orange);
        }

        .ti-cnt {
            padding: 2px 8px;
            border-radius: 99px;
            background: rgba(17, 24, 39, .07);
            color: var(--muted);
            font-size: 11px;
            font-weight: 800;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }

        .tag {
            display: flex;
            align-items: center;
            height: 30px;
            padding: 0 11px;
            border-radius: 99px;
            border: 1px solid var(--line2);
            background: rgba(255, 255, 255, .7);
            color: var(--ink2);
            font-size: 11px;
            font-weight: 800;
            transition: background .2s, border-color .2s, color .2s;
        }

        .tag:hover {
            border-color: rgba(255, 92, 0, .3);
            color: var(--orange);
            background: var(--orange-pale);
        }

        /* ══ FOOTER ══ */
        .footer {
            background: var(--navy);
            padding: 44px 0 0
        }

        .footer-in {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 28px;
            flex-wrap: wrap;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, .08)
        }

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

        .footer-brand .brand-name {
            color: #fff
        }

        .footer-brand .brand-sub {
            color: rgba(255, 255, 255, .52)
        }

        .footer-desc {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, .52);
            line-height: 1.8;
            max-width: 320px;
            margin-top: 6px
        }

        .footer-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            text-align: center
        }

        .footer-address {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .52);
            line-height: 1.8
        }

        .footer-socials {
            display: flex;
            gap: 9px;
            flex-wrap: wrap;
            justify-content: center
        }

        .fsoc {
            width: 40px;
            height: 40px;
            border-radius: 13px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .11);
            background: rgba(255, 255, 255, .07);
            color: rgba(255, 255, 255, .8);
            transition: background .2s, transform .2s, border-color .2s
        }

        .fsoc:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff;
            transform: translateY(-3px)
        }

        .footer-links-col {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px
        }

        .footer-links-col a {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .52);
            transition: color .2s
        }

        .footer-links-col a:hover {
            color: #fff
        }

        .footer-bottom {
            padding: 16px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap
        }

        .footer-bottom span {
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, .36)
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(.74);
                opacity: .7;
            }
        }

        /* =========================
       RESPONSIVE
       ========================= */
        @media (max-width: 1100px) {
            .nav-links {
                display: none;
            }

            .nburg {
                display: grid;
            }

            .nav-links.open {
                position: absolute;
                top: 68px;
                right: 0;
                left: 0;
                z-index: 200;
                display: flex;
                flex-direction: column;
                padding: 10px;
                border-radius: 20px;
                border: 1px solid var(--line);
                background: rgba(247, 242, 234, .97);
                box-shadow: 0 20px 50px rgba(17, 24, 39, .1);
            }

            .nav-links.open a {
                justify-content: center;
                border-radius: 11px;
            }

            .ncta {
                display: none;
            }

            .nav-mobile-link {
                display: flex !important
            }

            .main-layout {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            #artGrid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            #artGrid.view-list {
                grid-template-columns: 1fr;
            }

            .ed-card {
                grid-template-columns: 1fr;
                min-height: 0;
            }

            .ed-body {
                min-height: 360px;
            }

            .ed-vis {
                height: 230px;
                min-height: 230px;
            }

            .footer-in {
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
        }

        @media (max-width: 720px) {
            :root {
                --cont: min(100% - 28px, 1280px);
            }

            .brand-logo {
                width: 40px;
                height: 40px;
            }

	    .view-toggle {
                display: none;
            }

            .page-header {
                padding-top: 26px;
            }

            .ph-card {
                border-radius: var(--r-lg);
                padding: 24px;
            }

            .ph-stats {
                gap: 12px;
            }

            .ph-sep {
                display: none;
            }

            .sec-head {
                flex-direction: row;
                align-items: flex-end;
                justify-content: space-between;
                gap: 10px;
            }

            .sec-head>div {
                min-width: 0;
            }

            .sec-title {
                font-size: 24px;
                letter-spacing: -.5px;
            }

            .link-btn {
                height: 38px;
                padding: 0 12px;
                font-size: 12px;
            }

            .ed-sec {
                padding-top: 28px;
            }

            .ed-track-outer,
            .ed-card {
                border-radius: var(--r-lg);
            }

            .ed-body {
                min-height: 390px;
                padding: 24px;
            }

            .ed-title {
                font-size: 22px;
                line-height: 1.4;
            }

            .ed-copy {
                font-size: 13px;
                line-height: 1.85;
            }

            .ed-footer {
                align-items: flex-start;
            }

            .ed-read {
                width: 100%;
            }

            .ed-vis {
                height: 205px;
                min-height: 205px;
            }

            .ed-vis-badge {
                top: 14px;
                right: 14px;
            }

            .ed-vis-tag {
                right: 14px;
                bottom: 14px;
                left: 14px;
            }

            .ed-controls {
                margin-top: 14px;
            }

            .toolbar {
                position: static;
                top: auto;
                z-index: 1;
            }

            .toolbar-in {
                justify-content: center;
            }

            .search-wrap {
                max-width: none;
                width: 100%;
            }

            #artGrid {
                grid-template-columns: 1fr;
            }

            #artGrid.view-list .ac {
                flex-direction: column;
                max-height: none;
            }

            #artGrid.view-list .ac-img {
                width: 100%;
                height: 160px;
            }

            #artGrid.view-list .ac-readtime {
                position: static;
                padding: 10px 14px 0;
                border-radius: 0;
                background: none;
                backdrop-filter: none;
            }

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

            /* footer section */

            .footer-in {
                flex-direction: column;
                align-items: center;
                text-align: center
            }

            .footer-brand {
                justify-content: center;
                text-align: right;
            }

            .footer-desc,
            .footer-address {
                text-align: center
            }

            .footer-links-col,
            .footer-socials {
                align-items: center;
                justify-content: center
            }

            .footer-bottom {
                justify-content: center;
                text-align: center
            }
        }

        @media (max-width: 520px) {
            .brand {
                gap: 9px;
            }

           

            .lname {
                font-size: 19px;
            }

            .lsub {
                display: none;
            }

            .ph-title {
                font-size: 32px;
                letter-spacing: -1.1px;
            }

            .ph-stat {
                width: 100%;
            }

            .ed-body {
                min-height: 420px;
                padding: 20px;
            }

            .ed-meta-row {
                gap: 6px;
            }

            .ed-vis {
                height: 185px;
                min-height: 185px;
            }

            .ed-vis-tag strong {
                font-size: 12px;
            }

            .link-btn {
                padding: 0 10px;
            }
        }