:root {

    --gold: #D4AF37;
    --black: #000000;
    --white: #ffffff;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {

    font-family: Arial, sans-serif;
    overflow-x: hidden;

}

/* NAVBAR */

.navbar {
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(3px);
    padding: 0px 0;
}

.navbar .container {
    max-width: 1200px;
}

.navbar-brand {

    text-decoration: none;

}

.logo-img {

    height: 60px;
    width: auto;

    object-fit: contain;

}

.logo-text {

    margin-left: 12px;

    color: #fff;

    font-size: 1.2rem;

    font-weight: 700;

    letter-spacing: 1px;

}

.nav-link {
    font-size: 0.95rem;
    margin-left: 15px;
}


/* Dropdown Menu */

.dropdown-menu {
    background: #000;
    border: 1px solid #D4AF37;
    border-radius: 0;
    min-width: 240px;
    padding: 0;
    margin-top: 10px;
}

.dropdown-item {
    color: #fff;
    padding: 12px 18px;
    transition: all .3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #D4AF37;
    color: #000;
}

.nav-link.dropdown-toggle::after {
    margin-left: 8px;
}

/* Desktop Hover Dropdown */

@media (min-width: 992px) {

    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}

/* HERO */

.hero-section {
    height: 100vh;
}

.hero-slide {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.hero-content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    max-width: 700px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
}

.hero-line {
    width: 0;
    height: 3px;
    background: #D4AF37;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
}

.hero-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 14px 35px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
}

/* Responsive */

/* MOBILE */

@media(max-width:768px) {

    .hero-content h1 {

        font-size: 2.2rem;

    }

    .hero-content p {

        font-size: 1rem;

    }

}

@media(max-width:576px) {

    .logo-img {
        height: 45px;
    }

}

/* Tablet */

@media(max-width:992px) {

    .logo-img {
        height: 55px;
    }

}


/* =========================
   ABOUT SECTION
========================= */

.about-section {

    padding: 120px 0;
    background: #fff;

}

.section-subtitle {

    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;

}

.section-title {

    font-size: 3rem;
    font-weight: 700;
    color: #111;

    margin-bottom: 30px;
    line-height: 1.2;

}

.about-text {

    font-size: 17px;
    color: #666;
    line-height: 1.9;

    margin-bottom: 20px;

}

.about-image-wrapper {

    position: relative;

}

.about-image {

    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;

}

.gold-box {

    position: absolute;

    width: 220px;
    height: 220px;

    background: #D4AF37;

    right: -25px;
    bottom: -25px;

    z-index: 1;

    border-radius: 12px;

}

.about-btn {

    display: inline-flex;

    align-items: center;
    gap: 12px;

    text-decoration: none;

    background: #111;
    color: white;

    padding: 15px 35px;

    border-radius: 5px;

    font-weight: 600;

    transition: .4s;

}

.about-btn:hover {

    background: #D4AF37;
    color: #000;

}

.about-btn i {

    transition: .4s;

}

.about-btn:hover i {

    transform: translateX(6px);

}

@media(max-width:768px) {

    .section-title {

        font-size: 2rem;

    }

    .about-section {

        padding: 80px 0;

    }

    .gold-box {

        width: 120px;
        height: 120px;

        right: -10px;
        bottom: -10px;

    }

    .about-text {

        font-size: 15px;

    }

}


/* =========================
   EVENTS SECTION
========================= */

.events-section {

    padding: 120px 0;
    background: #f8f8f8;

}

.event-card {

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    transition: .4s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    height: 100%;

}

.event-card:hover {

    transform: translateY(-10px);

}

.event-image {

    overflow: hidden;

}

.event-image img {

    width: 100%;
    height: 280px;

    object-fit: cover;

    transition: .6s;

}

.event-card:hover img {

    transform: scale(1.08);

}

.event-content {

    padding: 30px;

}

.event-date {

    color: #D4AF37;

    font-weight: 700;

    letter-spacing: 2px;

    font-size: 13px;

}

.event-content h3 {

    margin-top: 15px;
    margin-bottom: 15px;

    font-size: 1.5rem;

    font-weight: 700;

}

.event-content p {

    color: #666;
    line-height: 1.8;

}

.event-btn {

    display: inline-block;

    margin-top: 15px;

    text-decoration: none;

    color: #111;

    font-weight: 700;

    transition: .3s;

}

.event-btn:hover {

    color: #D4AF37;

}


/* About*/

.stats-row {

    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;

}

.stat-box h3 {

    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 5px;

}

.stat-box span {

    color: #666;

}


/* =========================
   PROGRAMS SECTION
========================= */

.programs-section {

    padding: 120px 0;
    background: #111;

}

.program-card {

    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 12px;

}

.program-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .8s;

}

.program-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .55);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 30px;

    color: white;

}

.program-overlay h3 {

    font-size: 2rem;

    margin-bottom: 20px;

    font-weight: 700;

}

.program-overlay p {

    max-width: 400px;

    line-height: 1.8;

    margin-bottom: 25px;

}

.program-overlay a {

    background: #D4AF37;

    color: #000;

    text-decoration: none;

    padding: 14px 35px;

    font-weight: 700;

    transition: .4s;

}

.program-card:hover img {

    transform: scale(1.1);

}

.program-overlay a:hover {

    background: white;

}

@media(max-width:768px) {

    .program-card {

        height: 380px;

    }

    .program-overlay h3 {

        font-size: 1.5rem;

    }

}

/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio-section {

    padding: 120px 0;
    background: #fff;

}

.portfolio-filter {

    text-align: center;
    margin-bottom: 50px;

}

.filter-btn {

    border: none;

    background: #eee;

    padding: 12px 25px;

    margin: 5px;

    cursor: pointer;

    transition: .3s;

}

.filter-btn.active {

    background: #D4AF37;
    color: #000;

}

.portfolio-card {

    overflow: hidden;

    border-radius: 12px;

}

.portfolio-card img {

    width: 100%;
    height: 500px;

    object-fit: cover;

    transition: .6s;

}

.portfolio-card:hover img {

    transform: scale(1.08);

}

/* =========================
   MAGAZINE SECTION
========================= */

.magazine-section {

    background: #0b0b0b;

    padding: 120px 0;

}

.magazine-cover {

    overflow: hidden;

    border-radius: 12px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .4);

}

.magazine-cover img {

    width: 100%;

    display: block;

    transition: .7s;

}

.magazine-cover:hover img {

    transform: scale(1.05);

}

.magazine-title {

    color: #fff;

    font-size: 4rem;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;

}

.magazine-text {

    color: #bdbdbd;

    line-height: 1.9;

    margin-bottom: 30px;

}

.magazine-list {

    list-style: none;

    padding: 0;

}

.magazine-list li {

    color: #fff;

    margin-bottom: 15px;

    position: relative;

    padding-left: 25px;

}

.magazine-list li::before {

    content: "";

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #D4AF37;

    position: absolute;

    left: 0;
    top: 10px;

}

.magazine-btn {

    display: inline-block;

    margin-top: 30px;

    background: #D4AF37;

    color: #000;

    text-decoration: none;

    padding: 15px 40px;

    font-weight: 700;

    transition: .4s;

}

.magazine-btn:hover {

    background: #fff;

}

@media(max-width:768px) {

    .magazine-title {

        font-size: 2.4rem;

    }

    .magazine-section {

        padding: 80px 0;

    }

}

/* =========================
   MAGAZINE FLIPBOOK
========================= */

.book-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    overflow:hidden;

}

/* Fake Page Stack */

.book-stack {

    position: absolute;

    top: 18px;

    width: 18px;

    height: 90%;

    border-radius: 4px;

    z-index: 0;

}

.left-stack {

    left: 25px;

    background:
        repeating-linear-gradient(to right,

            #d9d9d9 0px,

            #f4f4f4 2px,

            #d0d0d0 4px);

    box-shadow:

        inset -2px 0 4px rgba(0, 0, 0, .25);

}

.right-stack {

    right: 25px;

    background:
        repeating-linear-gradient(to left,

            #d9d9d9 0px,

            #f4f4f4 2px,

            #d0d0d0 4px);

    box-shadow:

        inset 2px 0 4px rgba(0, 0, 0, .25);

}

#flipbook{

    width:100%;

    max-width:900px;

    height:760px;

    margin:auto;

}

.page {

    background: white;

}

.page img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

@media(max-width:768px) {

    #flipbook {

        width: 300px;

        height: 420px;

    }

    .book-stack {

        display: none;

    }

}


/* =========================
   FOUNDER SECTION
========================= */

.founder-section {

    padding: 120px 0;

    background: #fff;

}

.founder-image {

    overflow: hidden;

    border-radius: 15px;

}

.founder-image img {

    width: 100%;

    display: block;

}

.founder-name {

    color: #111;

    font-size: 3rem;

    margin-bottom: 10px;

}

.founder-designation {

    color: #D4AF37;

    margin-bottom: 25px;

}

.founder-text {

    color: #111;

    line-height: 1.9;

    margin-bottom: 40px;

    text-align: justify;

}

.founder-stats {

    display: flex;

    gap: 40px;

    flex-wrap: wrap;

}

.founder-stats h3 {

    color: #D4AF37;

    font-size: 2rem;

}

.founder-stats span {

    color: #111;

}


/* =========================
   FOOTER
========================= */

.footer-section {

    background: #050505;

    padding: 90px 0 30px;

}

.footer-logo img {

    height: 80px;
    width: auto;

    margin-bottom: 20px;

}

.footer-description {

    color: #bdbdbd;

    line-height: 1.9;

    font-size: 15px;

    text-align: justify;

}

.footer-title {

    color: #D4AF37;

    margin-bottom: 25px;

    font-size: 1.3rem;

    font-weight: 700;

}

.footer-links {

    list-style: none;

    padding: 0;

}

.footer-links li {

    margin-bottom: 12px;

}

.footer-links a {

    text-decoration: none;

    color: #fff;

    transition: .3s;

}

.footer-links a:hover {

    color: #D4AF37;

    padding-left: 6px;

}

.social-icons {

    display: flex;

    gap: 15px;

}

.social-icons a {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, .3);

    border-radius: 50%;

    color: #fff;

    font-size: 18px;

    text-decoration: none;

    transition: .4s;

}

.social-icons a:hover {

    background: #D4AF37;

    color: #000;

    transform: translateY(-5px);

}

.footer-line {

    border-color: rgba(255, 255, 255, .1);

    margin: 50px 0 25px;

}

.footer-bottom {

    text-align: center;

}

.footer-bottom p {

    color: #888;

    margin: 0;

}



/* =========================================
   RESPONSIVE DESIGN
========================================= */


/* =========================
   LARGE DEVICE
========================= */

@media (max-width:1200px) {

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.6rem;
    }

}


/* =========================
   TABLET
========================= */

@media (max-width:992px) {

    /* Navbar */

    .navbar-nav {
        padding-top: 15px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    /* Hero */

    .hero-content {
        max-width: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    /* About */

    .about-section {
        padding: 100px 0;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2.3rem;
    }

    /* Programs */

    .program-card {
        height: 420px;
    }

    /* Magazine */

    .magazine-title {
        font-size: 3rem;
    }

    /* Founder */

    .founder-name {
        font-size: 2.5rem;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width:768px) {

    /* Navbar */

    .logo-img {
        height: 45px;
    }

    .logo-text {
        font-size: .9rem;
        margin-left: 8px;
    }

    /* Hero */

    .hero-section,
    .hero-slide {
        height: 100vh;
    }

    .hero-content {

        left: 5%;
        right: 5%;

        max-width: 100%;

    }

    .hero-title {

        font-size: 2rem;

        margin-bottom: 15px;

    }

    .hero-desc {

        font-size: .95rem;

        line-height: 1.7;

    }

    .hero-btn {

        padding: 12px 25px;

        font-size: .9rem;

    }

    /* About */

    .about-section {

        padding: 80px 0;

    }

    .section-title {

        font-size: 2rem;

    }

    .about-text {

        font-size: 15px;

    }

    .gold-box {

        display: none;

    }

    .stats-row {

        justify-content: center;
        text-align: center;

    }

    /* Programs */

    .programs-section {

        padding: 80px 0;

    }

    .program-card {

        height: 320px;

    }

    .program-overlay h3 {

        font-size: 1.4rem;

    }

    .program-overlay p {

        font-size: .9rem;

    }

    /* Portfolio */

    .portfolio-section {

        padding: 80px 0;

    }

    .portfolio-filter {

        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;

    }

    .portfolio-card img {

        height: 350px;

    }

    /* Magazine */

    .magazine-section {

        padding: 80px 0;

        text-align: center;

    }

    .magazine-title {

        font-size: 2rem;

    }

    .magazine-text {

        font-size: 15px;

    }

    .magazine-list {

        text-align: left;

        max-width: 300px;

        margin: auto;

    }

    #flipbook {

        width: 100%;

        max-width: 100%;

        height: 420px;

        margin-bottom: 30px;

    }

    /* Founder */

    .founder-section {

        padding: 80px 0;

        text-align: center;

    }

    .founder-name {

        font-size: 2rem;

    }

    .founder-stats {

        justify-content: center;

        gap: 25px;

    }

    /* Footer */

    .footer-section {

        text-align: center;

    }

    .footer-title {

        margin-top: 20px;

    }

    .social-icons {

        justify-content: center;

    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width:576px) {

    .hero-title {

        font-size: 1.6rem;

    }

    .hero-desc {

        font-size: .9rem;

    }

    .hero-btn {

        width: 100%;

        text-align: center;

    }

    .section-title {

        font-size: 1.7rem;

    }

    .portfolio-card img {

        height: 280px;

    }

    .program-card {

        height: 280px;

    }

    .magazine-title {

        font-size: 1.7rem;

    }

    .founder-name {

        font-size: 1.7rem;

    }

    .footer-logo img {

        height: 60px;

    }

}

/* Trainer Section*/
.trainer-feature-section {

    padding: 120px 0;
    background: #0f0f0f;

}

.trainer-image img {

    width: 100%;
    height: 650px;
    object-fit: cover;

}

.trainer-content {

    padding: 60px;
    color: #fff;

}

.trainer-tag {

    color: #D4AF37;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;

}

.trainer-content h2 {

    font-size: 48px;
    margin: 20px 0;

}

.trainer-content p {

    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 20px;

}

/* Panelist Section*/

.panelists-section {

    padding: 120px 0;
    background: #f7f7f7;

}

.section-heading span {

    color: #D4AF37;
    letter-spacing: 3px;
    font-weight: 600;

}

.section-heading h2 {

    margin-top: 15px;
    margin-bottom: 70px;
    font-size: 46px;

}

.panel-card {

    background: #fff;

    padding: 35px;

    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    height: 100%;

    transition: .4s;

}

.panel-card:hover {

    transform: translateY(-10px);

}

.panel-card h3 {

    font-size: 28px;
    margin-bottom: 10px;

}

.panel-card h5 {

    color: #D4AF37;
    margin-bottom: 20px;

}

.panel-card p {

    color: #666;
    line-height: 1.8;

}

.panel-card.large {

    min-height: 280px;

}

/* =========================
   OFFICIAL COLLABORATION PARTNERS
========================= */
.partners-section {
    background: #0a0a0a;
    color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.partner-logo-item {
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
}
.partner-logo-item img,
.partner-logo-item svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}
.partner-logo-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}
.partner-logo-item:hover img,
.partner-logo-item:hover svg {
    transform: scale(1.05);
}

/* ==========================================
   TEAM AND ADVISOR PROFILES (HOMEPAGE)
========================================== */
.team-section {
    background: #000000;
    color: #ffffff;
    padding: 100px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.team-card {
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.team-card .member-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}
.team-card:hover .member-img {
    filter: brightness(1.1);
}
.team-card .member-img-placeholder {
    width: 100%;
    height: 320px;
    background: #111111;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444444;
    font-size: 5rem;
    transition: all 0.4s ease;
}
.team-card:hover .member-img-placeholder {
    color: #D4AF37;
    background: #181818;
}
.team-card .member-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.team-card .member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}
.team-card .member-info h3 span {
    color: #D4AF37;
}
.team-card .member-info .designation {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.team-card .member-info p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   DYNAMIC NEWS SECTION (CANVAS-STYLE SPLIT)
   ========================================== */
.featured-news-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.featured-news-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-6px);
}
.featured-news-img-box {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}
.featured-news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.15, 1, 0.3, 1), filter 0.5s ease;
}
.featured-news-card:hover .featured-news-img-box img {
    transform: scale(1.05);
    filter: brightness(1.05);
}
.news-badge-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    z-index: 5;
}
.news-badge-category {
    background: #D4AF37;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 15px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}
.news-badge-date {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 15px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
}
.featured-news-content {
    padding: 35px;
}
.featured-news-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.35;
}
.featured-news-content h3 a {
    color: #111111;
    text-decoration: none;
    transition: color 0.3s ease;
}
.featured-news-content h3 a:hover {
    color: #D4AF37;
}
.featured-news-content p {
    color: #444444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}
.btn-read-news {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 10px rgba(212,175,55,0.05);
}
.btn-read-news:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

/* Sidebar Scroll Feed */
.news-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #f4f4f4;
}
.news-scroll-container::-webkit-scrollbar {
    width: 5px;
}
.news-scroll-container::-webkit-scrollbar-track {
    background: #f4f4f4;
}
.news-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}
.news-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

.sidebar-news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.sidebar-news-item:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(4px);
}
.sidebar-news-item.active {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    border-left: 4px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.sidebar-news-thumb {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.sidebar-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sidebar-news-item:hover .sidebar-news-thumb img {
    transform: scale(1.08);
}
.sidebar-news-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sidebar-news-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: #222222;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.sidebar-news-item:hover .sidebar-news-info h6 {
    color: #D4AF37;
}
.sidebar-news-meta {
    display: flex;
    gap: 12px;
    font-size: 0.78rem;
    color: #666666;
}
.sidebar-news-meta .meta-category {
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}