 /* ================= HERO ================= */
        .hero-section {
            display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh;
            background: var(--hero-bg);
    color: var(--hero-text);
        }
        .hero-left {
            padding: 4rem; display: flex; flex-direction: column; justify-content: center; position: relative;
        }
        .hero-label {
            font-family: var(--font-primary); color: var(--brand-green); text-transform: uppercase; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px;
        }
        .hero-title { font-size: 3rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 800; }
        .hero-title a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.hero-title a:hover {
    color: var(--brand-green);
}
        .hero-excerpt { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 90%; }
        
        .read-more {
            display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-primary); font-weight: bold; font-size: 0.9rem; text-transform: uppercase; color: var(--text-main);
        }
        .arrow-line { display: inline-block; width: 30px; height: 2px; background-color: var(--text-main); transition: width 0.4s ease; position: relative; }
        .arrow-line::after { content: ''; position: absolute; right: 0; top: -4px; border: solid var(--text-main); border-width: 0 2px 2px 0; display: inline-block; padding: 4px; transform: rotate(-45deg); }
        .read-more:hover .arrow-line { width: 70px; background-color: var(--brand-green-hover); }
        .read-more:hover .arrow-line::after { border-color: var(--brand-green-hover); }
        .read-more:hover { color: var(--brand-green-hover); }

        .hero-nav { margin-top: auto; padding-top: 3rem; display: flex; gap: 1rem; }
        .nav-arrow { width: 50px; height: 50px; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
        .nav-arrow:hover { background: var(--brand-green-hover); color: #000; border-color: var(--brand-green-hover); }

.hero-right {
    background-color: var(--border-color);
    overflow: hidden;
    position: relative;

    height: 70vh;
    min-height: 500px;
}


.hero-thumb { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.2); transition: filter 0.5s; }
        .hero-right:hover .hero-thumb { filter: grayscale(0%); }

        /* ================= TICKER ================= */
        .ticker-wrap {
            display: flex; background: var(--brand-green); color: #000; height: 40px; align-items: center; overflow: hidden; font-family: var(--font-primary); font-size: 0.85rem; font-weight: bold; text-transform: uppercase;
        }
        .ticker-label {
            padding: 0 2rem; background: #000; color: var(--brand-green); height: 100%; display: flex; align-items: center; z-index: 2; border-right: 1px solid var(--brand-green);
        }
        .ticker-content { white-space: nowrap; animation: ticker 25s linear infinite; padding-left: 100%; }
        .ticker-item { margin-right: 3rem; display: inline-block; }
        @keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }
        
        /* default dekstop */
.hero-nav-mobile {
    display:none;
}


.hero-nav-dekstop {
    display:flex;
}

.hero-center{
    max-width:800px;
    margin:0 auto;
    text-align:center;
}

.hero-center .hero-title{
    margin-bottom:1rem;
}

.hero-center .hero-subtitle{
    max-width:600px;
    margin:0 auto;
}
        
        
 @media (max-width: 768px) {
  
            /* Mobile Hero Layout Adjustment */
            .hero-section { display: flex; flex-direction: column; min-height: auto; }
            .hero-left { padding: 2rem 1rem; order: 1; }
            .hero-right { order: 2; height: 300px; }
            
            .mobile-hero-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
            .hero-label { margin-bottom: 0; }
            .hero-nav { margin-top: 0; padding-top: 0; }
            .hero-title { font-size: 2rem; }
            .hero-excerpt { max-width: 100%; font-size: 1rem; }
            
                .hero-nav-mobile {
        display:flex;
    }


    .hero-nav-dekstop {
        display:none;
    }
        }
        