
        :root {
            --deep-forest: #0a1f14;
            --forest-green: #132e20;
            --pine: #1a4230;
            --emerald: #2d6b4b;
            --amber: #e8781a;
            --golden: #f5a623;
            --warm-white: #faf7f0;
            --cream: #f3efe4;
            --snow: #ffffff;
            --stone: #e6e0d3;
            --text-primary: #1c1c1c;
            --text-secondary: #4d4d4d;
            --text-muted: #6f6f6f;
            --border-subtle: #e0dbcf;
            --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 14px 36px rgba(0,0,0,0.12);
            --shadow-xl: 0 24px 56px rgba(0,0,0,0.16);
            --radius-xs: 6px;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 9999px;
            --transition-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 280ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--warm-white);
            color: var(--text-primary);
            line-height: 1.6;
            display: flex;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ========== SIDEBAR ========== */
        .sidebar {
            width: 300px;
            background: linear-gradient(170deg, #0c1f15 0%, #142c20 40%, #1a3828 100%);
            color: var(--snow);
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            z-index: 1100;
            box-shadow: 6px 0 35px rgba(0,0,0,0.3);
            transition: transform var(--transition-smooth);
            overflow-y: auto;
            border-right: 1px solid rgba(255,255,255,0.06);
        }

        .sidebar::-webkit-scrollbar { width: 3px; }
        .sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 10px; }

        .sidebar-header {
            padding: 2rem 1.5rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.6rem;
        }

        .logo-icon-sidebar {
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, var(--amber), var(--golden));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 8px 22px rgba(232, 120, 26, 0.35);
        }

        .logo-text-main {
            font-family: 'Playfair Display', serif;
            font-size: 1.55rem;
            font-weight: 700;
            line-height: 1.15;
        }
        .logo-text-main span { color: var(--golden); font-weight: 800; }

        .tagline-sidebar {
            font-size: 0.82rem;
            color: #b0bfa8;
            font-style: italic;
        }

        .sidebar-nav {
            flex: 1;
            padding: 0.8rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .nav-section-title {
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            color: rgba(255,255,255,0.35);
            padding: 1rem 0.8rem 0.3rem;
            font-weight: 700;
        }

        .sidebar-nav a {
            color: #cdd6c4;
            text-decoration: none;
            padding: 0.7rem 0.9rem;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 450;
            font-size: 0.93rem;
            transition: all var(--transition-fast);
        }

        .sidebar-nav a i { width: 19px; height: 19px; flex-shrink: 0; }
        .sidebar-nav a:hover { background: rgba(255,255,255,0.07); color: #fff; transform: translateX(2px); }
        .sidebar-nav a.active { background: rgba(255,255,255,0.11); color: white; font-weight: 600; box-shadow: inset 3px 0 0 var(--golden); }

        .nav-badge {
            margin-left: auto;
            background: var(--amber);
            color: white;
            font-size: 0.68rem;
            padding: 3px 9px;
            border-radius: 12px;
            font-weight: 700;
        }

        .sidebar-cta {
            margin: 1.2rem 1rem;
            padding: 1rem 1.2rem;
            background: linear-gradient(135deg, rgba(232,120,26,0.18), rgba(245,166,35,0.12));
            border: 1px solid rgba(245,166,35,0.25);
            border-radius: var(--radius-lg);
            text-align: center;
        }

        .sidebar-cta p {
            font-size: 0.82rem;
            color: #ddd2b8;
            margin-bottom: 0.7rem;
        }

        .cta-button-sidebar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: var(--amber);
            color: white;
            text-decoration: none;
            padding: 0.75rem 1.3rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 0.88rem;
            transition: all var(--transition-bounce);
            box-shadow: 0 8px 20px rgba(232,120,26,0.3);
        }

        .cta-button-sidebar:hover {
            background: #d06e14;
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(232,120,26,0.45);
        }

        .sidebar-footer {
            padding: 1rem 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.07);
            font-size: 0.72rem;
            color: rgba(255,255,255,0.35);
            text-align: center;
        }

        /* ========== MAIN CONTENT ========== */
        .main-content {
            margin-left: 300px;
            flex: 1;
            width: calc(100% - 300px);
            background: var(--warm-white);
            transition: margin-left var(--transition-smooth);
            min-height: 100vh;
        }

        /* ========== MOBILE HEADER ========== */
        .mobile-header {
            display: none;
            position: sticky;
            top: 0;
            background: var(--deep-forest);
            color: white;
            padding: 0.85rem 1.3rem;
            align-items: center;
            justify-content: space-between;
            z-index: 1050;
            box-shadow: var(--shadow-lg);
        }

        .mobile-logo {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.15rem;
        }
        .mobile-logo span { color: var(--golden); }

        .hamburger-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            border-radius: 8px;
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 1090;
            backdrop-filter: blur(2px);
        }
        .sidebar-overlay.active { display: block; }

        /* ========== HERO SECTION (COMPLETELY RESPONSIVE) ========== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(160deg, rgba(10,31,20,0.72) 0%, rgba(26,66,48,0.45) 100%),
                        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 2rem;
            border-radius: 0 0 40px 40px;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 750px;
            width: 100%;
        }

        .weather-pill {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(18px);
            padding: 0.55rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.18);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            padding: 0.5rem 1.4rem;
            border-radius: var(--radius-full);
            font-size: 0.88rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 7vw, 4.2rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
            text-shadow: 0 4px 24px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .search-box {
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(22px);
            padding: 0.55rem;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: var(--shadow-xl);
            max-width: 600px;
            margin: 0 auto;
        }

        .search-box input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 1rem;
            background: transparent;
            outline: none;
        }

        .search-btn {
            background: var(--amber);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
        }

        /* ========== CONTAINER ========== */
        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 1.5rem 1.8rem;
        }

        /* ========== SECTION HEADERS ========== */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--emerald);
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .section-title-main {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            font-weight: 700;
            color: var(--deep-forest);
            margin-bottom: 0.4rem;
            line-height: 1.2;
        }

        .section-description {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 650px;
        }

        .section-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--amber);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: gap var(--transition-fast);
        }
        .section-link:hover { gap: 10px; }

        .section-header-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        /* ========== BANNER AD SPACE ========== */
        .banner-ad {
            background: linear-gradient(135deg, #fdf8f0, #f7efe0);
            border: 2px dashed #d4c5a0;
            border-radius: var(--radius-lg);
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            text-align: center;
            color: var(--text-secondary);
            font-weight: 500;
            transition: all var(--transition-smooth);
        }

        .banner-ad:hover {
            border-color: var(--amber);
            background: #fffbf5;
        }

        .banner-ad i {
            color: var(--amber);
        }

        .banner-ad strong {
            color: var(--deep-forest);
            font-size: 1.1rem;
        }

        /* ========== CARDS & CAROUSEL ========== */
        .carousel-wrapper {
            position: relative;
            padding-bottom: 3rem;
        }

        .carousel-container {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            padding-bottom: 0.5rem;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .carousel-container::-webkit-scrollbar { display: none; }

        .carousel-container .accommodation-card {
            min-width: calc(33.333% - 1rem);
            flex-shrink: 0;
            scroll-snap-align: start;
        }

        .accommodation-card {
            background: var(--snow);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-bounce);
            cursor: pointer;
            border: 1px solid var(--border-subtle);
        }

        .accommodation-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .card-image-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .accommodation-card:hover .card-image-wrapper img {
            transform: scale(1.07);
        }

        .card-badges {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

        .badge {
            padding: 4px 11px;
            border-radius: var(--radius-full);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .badge-new { background: #10b981; color: white; }
        .badge-popular { background: #ef4444; color: white; }
        .badge-luxury { background: #8b5cf6; color: white; }

        .quick-view-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }

        .accommodation-card:hover .quick-view-overlay { opacity: 1; }

        .quick-view-btn {
            background: white;
            color: var(--deep-forest);
            border: none;
            padding: 0.55rem 1.2rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.82rem;
            transform: translateY(8px);
            transition: all var(--transition-bounce);
        }

        .accommodation-card:hover .quick-view-btn { transform: translateY(0); }

        .card-content { padding: 1.1rem 1.2rem; }
        .card-type { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--emerald); font-weight: 700; margin-bottom: 0.2rem; }
        .card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep-forest); margin-bottom: 0.2rem; }
        .card-location { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 0.6rem; }
        .card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-subtle); padding-top: 0.6rem; }
        .card-price { font-weight: 800; font-size: 1.05rem; color: var(--amber); }
        .card-rating { display: flex; align-items: center; gap: 3px; font-size: 0.82rem; color: #f59e0b; font-weight: 600; }

        /* ========== CAROUSEL DOTS ========== */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 1.2rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d4cfc2;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .carousel-dot.active {
            background: var(--amber);
            width: 28px;
            border-radius: 20px;
        }

        /* ========== WATERFALLS ========== */
        .waterfalls-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .waterfall-card {
            background: var(--snow);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            display: flex;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-bounce);
        }
        .waterfall-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
        .waterfall-image { width: 45%; min-height: 200px; background-size: cover; background-position: center; }
        .waterfall-info { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .waterfall-info h3 { font-family: 'Playfair Display', serif; color: var(--deep-forest); margin-bottom: 0.3rem; }
        .waterfall-link { color: var(--amber); text-decoration: none; font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 4px; margin-top: 0.4rem; }

        /* ========== NEWS ========== */
        .news-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 1.5rem;
        }

        .news-featured {
            background: var(--snow);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-subtle);
        }

        .news-featured-image { height: 280px; background-size: cover; background-position: center; }
        .news-featured-content { padding: 1.4rem; }
        .news-featured-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--deep-forest); }
        .news-date { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

        .news-list { display: flex; flex-direction: column; gap: 0.8rem; }
        .news-list-item {
            background: var(--snow);
            border-radius: var(--radius-md);
            padding: 0.9rem;
            display: flex;
            gap: 0.9rem;
            align-items: center;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .news-list-item:hover { box-shadow: var(--shadow-md); transform: translateX(2px); }
        .news-thumb { width: 75px; height: 65px; border-radius: var(--radius-sm); background-size: cover; background-position: center; flex-shrink: 0; }

        /* ========== NEWSLETTER ========== */
        .newsletter-section {
            background: linear-gradient(135deg, var(--deep-forest), #0f281b);
            border-radius: var(--radius-xl);
            padding: 2.8rem 2.2rem;
            position: relative;
            overflow: hidden;
            margin: 2.5rem 0;
        }

        .newsletter-bg-icon {
            position: absolute;
            right: -10px;
            bottom: -20px;
            opacity: 0.05;
            color: white;
        }

        .newsletter-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .newsletter-text h2 {
            font-family: 'Playfair Display', serif;
            color: white;
            font-size: 1.9rem;
            margin-bottom: 0.4rem;
        }

        .newsletter-text p { color: rgba(255,255,255,0.78); }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            min-width: 340px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.9rem 1.4rem;
            border-radius: var(--radius-full);
            border: 2px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.08);
            color: white;
            font-size: 0.95rem;
            outline: none;
        }

        .newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
        .newsletter-form button {
            background: var(--golden);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        /* ========== SEO ========== */
        .seo-section {
            background: var(--cream);
            border-radius: var(--radius-lg);
            padding: 2.2rem;
            margin: 2rem 0;
            border: 1px solid var(--border-subtle);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #081810;
            color: #b0bca6;
            padding: 3rem 2rem 1.8rem;
            margin-top: 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 2rem;
            max-width: 1260px;
            margin: 0 auto;
        }

        .footer-col h4 {
            color: white;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .footer-col a {
            color: #99a88e;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.88rem;
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-col a:hover { color: var(--golden); }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 0.8rem;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b0bca6;
            transition: all var(--transition-fast);
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--amber);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.82rem;
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1100px) {
            .carousel-container .accommodation-card { min-width: calc(50% - 0.8rem); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            .sidebar { transform: translateX(-100%); }
            .sidebar.open { transform: translateX(0); }
            .main-content { margin-left: 0; width: 100%; }
            .mobile-header { display: flex; }
            .carousel-container .accommodation-card { min-width: calc(100% - 0.5rem); }
            .waterfalls-grid { grid-template-columns: 1fr; }
            .waterfall-card { flex-direction: column; }
            .waterfall-image { width: 100%; height: 180px; }
            .news-layout { grid-template-columns: 1fr; }
            .newsletter-content { flex-direction: column; text-align: center; }
            .newsletter-form { min-width: 100%; flex-direction: column; }
            .hero-section { min-height: 85vh; padding: 1.2rem; }
            .search-box { flex-direction: column; border-radius: var(--radius-lg); padding: 0.8rem; gap: 8px; }
            .search-box input { width: 100%; }
            .search-btn { width: 100%; justify-content: center; border-radius: var(--radius-full); }
            .footer-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 500px) {
            .container { padding: 1rem; }
        }
    

.logo-icon-sidebar,.logo-text-main{color:white;text-decoration:none}.logo-text-main{display:block}.sidebar-nav .menu-item{list-style:none}.sidebar-nav a svg,.sidebar-nav a i{width:19px;height:19px;flex-shrink:0}.sidebar-nav a.active{background:rgba(255,255,255,0.11);color:white;font-weight:600;box-shadow:inset 3px 0 0 var(--golden)}.banner-ad a{color:var(--amber);font-weight:700;text-decoration:none}.banner-ad-second{margin-top:2rem}.home-section-gap{margin-top:2.5rem}.quick-view-btn{text-decoration:none}.card-rating svg,.card-rating i{fill:#f59e0b}.card-text-small{font-size:0.88rem;color:var(--text-muted)}.news-featured,.news-list-item{color:inherit;text-decoration:none}.news-featured-content p{font-size:0.9rem;color:var(--text-secondary)}.news-list-item p{font-weight:600;font-size:0.88rem;margin:0}.seo-section h3{font-family:'Playfair Display',serif;color:var(--deep-forest);margin-bottom:0.8rem}.footer-col p{font-size:0.88rem;margin:0}.footer-col svg,.footer-col i{vertical-align:middle;flex-shrink:0}.footer-bottom a{color:#99a88e}.footer-add-link{color:var(--golden)!important;font-weight:600}.newsletter-form button:hover,.search-btn:hover{filter:brightness(.96);transform:translateY(-1px)}.weather-pill [data-lucide]{color:var(--golden)}.featured-image img{max-width:100%;height:auto}.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
