*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Outfit', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#loading{
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #fff
	url(../assets/images/preloader.gif)
	 no-repeat center center;	
	z-index: 20;
}
.container{
    width: 98%;
    margin: 0 auto;
}
a{
    text-decoration: none;
}
.a-cb,.cb{
    color: black;
}
.a-cw,.cw{
    color: white;
}
.read-container a{
    font-weight: 550;
    letter-spacing: 2px;
}
.bar{
    width: 60px;
    height: 4px;
    background-color: #DA291C;
}
.general-h1{
    font-size: 3rem;
    letter-spacing: 2px;
}
.general-p{
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* SUBSCRIBE OR SEEMORE LIMK */
 .a-link {
    text-decoration: none;
    letter-spacing: 2px;
    font-size: larger;
    position: relative;
    padding: 0 0 5px 0;
    font-weight: 400;
    z-index: 1;
    color: whitesmoke;
}

.a-link::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #DA291C;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: 0.1s;
    z-index: -1;


}

.a-link:hover::after {
    height: 100%;

}

.a-link:hover{
    color: rgb(0, 0, 0);
    

} 
/* --- END  ---- SUBSCRIBE OR SEEMORE LIMK -------- */
/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    height: 60px;
    z-index: 100;
    border-bottom: 1px solid #e2e2e2;
    display: flex;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.header-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    height: 100%;
}
.header-left {
    display: flex;
    align-items: center;
}
.logo-wrapper {
    display: flex;
    align-items: center;
}
#header-logo {
    height: 46px;
    display: block;
    object-fit: contain;
    width: auto;
}
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: 1rem;
    display: none; /* Shown on mobile */
    align-items: center;
    justify-content: center;
    color: #000000;
}
.menu-toggle:hover {
    color: #DA291C;
}

/* Desktop Navigation */
.desktop-nav {
    margin-left: 2.2rem;
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
.nav-links > li {
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-dropdown {
    position: relative;
}
.nav-link-item {
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    color: #000000;
    letter-spacing: normal;
    padding: 0 10px;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.1s ease;
    border-bottom: 3px solid transparent;
}
.nav-link-item:hover,
.nav-dropdown:hover > .nav-link-item,
.nav-item-has-megamenu:hover > .nav-link-item {
    color: #666666;
    border-bottom: 3px solid #DA291C;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}
.chevron {
    transition: transform 0.2s ease;
}
.nav-dropdown:hover .chevron,
.nav-item-has-megamenu:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    border-top: none;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    color: #333333;
    letter-spacing: normal;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background-color: #f8f8f8;
    color: #DA291C;
}

/* MEGAMENU Layout & Styling */
.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f7f7f7;
    border-bottom: 1px solid #dcdcdc;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 150;
    padding: 35px 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.nav-item-has-megamenu:hover .megamenu {
    display: flex;
    justify-content: center;
}
.megamenu-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr;
    gap: 50px;
    box-sizing: border-box;
}

/* Megamenu Columns */
.megamenu-col {
    display: flex;
    flex-direction: column;
}
.megamenu-label {
    font-size: 11px;
    font-weight: 700;
    color: #767676;
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 8px;
    text-align: left;
}

/* Col 1: Topics */
.megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}
.megamenu-list li {
    margin-bottom: 14px;
    text-align: left;
}
.megamenu-list li a {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    transition: color 0.15s ease;
    letter-spacing: -0.3px;
}
.megamenu-list li a:hover {
    color: #DA291C;
}
.megamenu-all-link {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.15s ease;
    text-align: left;
}
.megamenu-all-link:hover {
    color: #DA291C;
}

/* Col 2: Latest Articles */
.megamenu-article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.megamenu-article {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}
.megamenu-article img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}
.megamenu-article-title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    line-height: 1.35;
    transition: color 0.15s ease;
    text-align: left;
}
.megamenu-article:hover .megamenu-article-title {
    color: #DA291C;
}
.badge-premium {
    background-color: #DA291C;
    color: #000000;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 4px;
}

/* Col 3: Recommends */
.megamenu-featured {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.megamenu-featured img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 2px;
}
.megamenu-featured-title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-top: 14px;
    line-height: 1.4;
    transition: color 0.15s ease;
    text-align: left;
}
.megamenu-featured:hover .megamenu-featured-title {
    color: #DA291C;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inline Search Bar (Desktop) */
.search-bar-wrapper {
    display: none;
    position: absolute;
    left: 170px;
    right: 200px;
    height: 100%;
    align-items: center;
    background-color: #ffffff;
    z-index: 15;
    justify-content: space-between;
}
.search-bar-wrapper.active {
    display: flex;
}
.search-input-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.search-icon-input {
    color: #666666;
    margin-right: 0.75rem;
}
.search-input {
    width: 100%;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    color: #000000;
}
.search-input::placeholder {
    color: #999999;
}
.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666666;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.search-close-btn:hover {
    color: #000000;
}

/* Header Right Buttons */
.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
}
.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.search-toggle-btn:hover {
    color: #DA291C;
}
.login-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    color: #000000;
    letter-spacing: normal;
    margin-left: 1.2rem;
    transition: color 0.2s ease;
}
.login-btn:hover {
    color: #DA291C;
}
.subscribe-btn {
    background-color: #DA291C;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    transition: all 0.2s ease;
    border: none;
    border-radius: 0;
}
.subscribe-btn:hover {
    background-color: #B92318;
    color: #ffffff;
}

/* BLACK COLOR SECTION WITH LATEST STOREIS */
.homepage{
    background-color: black;
    min-height: 50vh;
}
.homepage-container{
    margin: 0 auto;
    width: 95%;
    height: 100%;
    padding:20px 0;
}

/* NAVIGATON BAR */
/* MOBILE DRAWER & ACCORDION */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.mobile-drawer-overlay.active {
    display: block;
    opacity: 1;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background-color: #000000;
    color: #ffffff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
}
.mobile-drawer.active {
    left: 0;
}
.drawer-header {
    height: 48px;
    border-bottom: 1px solid #222222;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.drawer-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.drawer-close-btn:hover {
    color: #DA291C;
}
.drawer-logo {
    display: flex;
    align-items: center;
}
.drawer-logo img {
    filter: brightness(0) invert(1); /* Force black logo text to be white in drawer */
}
.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}
.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.drawer-item {
    border-bottom: 1px solid #111111;
}
.drawer-link {
    display: block;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
}
.drawer-link:hover {
    color: #DA291C;
    background-color: #111111;
}

/* Accordion in drawer */
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.accordion-header:hover {
    color: #DA291C;
    background-color: #111111;
}
.accordion-header .chevron {
    transition: transform 0.3s ease;
    color: #888888;
}
.accordion-header.active {
    color: #DA291C;
}
.accordion-header.active .chevron {
    transform: rotate(180deg);
    color: #DA291C;
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #0c0c0c;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.accordion-panel li a {
    display: block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #aaaaaa;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #151515;
    transition: all 0.2s ease;
}
.accordion-panel li a:hover {
    color: #DA291C;
    background-color: #151515;
    padding-left: 35px;
}

/* Drawer Footer */
.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid #222222;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.drawer-login-btn {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1.5px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    transition: all 0.2s ease;
}
.drawer-login-btn:hover {
    background-color: #ffffff;
    color: #000000;
}
.drawer-subscribe-btn {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #DA291C;
    letter-spacing: 1.5px;
    border: 1px solid #DA291C;
    border-radius: 2px;
    transition: all 0.2s ease;
}
.drawer-subscribe-btn:hover {
    background-color: transparent;
    color: #DA291C;
}

/* RESPONSIVE HEADERS */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
    .desktop-nav {
        display: none;
    }
    .search-bar-wrapper {
        left: 72px;
        right: 120px;
    }
    .login-btn, .subscribe-btn {
        display: none;
    }
}
@media (max-width: 480px) {
    #header-logo {
        height: 40px;
    }
    .search-bar-wrapper {
        left: 55px;
        right: 70px;
    }
}

/* LATEST-STOREIS as dSUbscibr xyz...... content */
.homepage-top-content{
    color: white;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* h1 LATEST STORIES */
.homepeage-heading{
    margin:0 0 10px 0;
}
/* p with suscbribe to ngc */
.homepage-p{
    margin: 20px 0 50px 0;
}

/* section with differnt card */
.card-area{
    width: 90%;
    margin: 7rem auto 2.6rem auto;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    grid-template-areas: "list-card-area wide-card-area wide-card-area"
                         "list-card-area tall-card-area-one tall-card-area-two";
}
.list-card-area{
    grid-area: list-card-area;
        
}
.wide-card-area{
    grid-area: wide-card-area;
    background-color: rgb(22, 99, 95);
    height: 432px;
    width: 100%;
    color: white;
    position: relative;
    overflow: hidden;
}
.tall-card-area-one{
    grid-area: tall-card-area-one;
    
}

.tall-card-area-two{
    grid-area: tall-card-area-two;

}

.top-title-container{
    color: white;
    position: relative;
    margin: 0 0 1.5rem 0;
}

.top-title-div::before{
    content: '';
    width: 5px;
    height: 100%;
    background-color: #DA291C;
    position: absolute;
    top: 50;
}
.top-title-div h3{
    margin: 0 0 0 1.3rem;
    letter-spacing: 2px;
}
.top-title h2{
    color: white;
}
.list-card-flex-container{
    display: flex;
    flex-direction: column;
}
.list-card{
    display: flex;
    margin: 0.5rem 0 0.5rem 0;
/*     max-height: 90px; */
    max-width: 300px;
    overflow: visible;
    text-overflow: ellipsis; 
}
.list-card .img-wrapper img{
    object-fit: cover;
    height: 90px;
    width: 90px;
}
.list-card-content{
    margin: 0 0 0 1rem;
}
.list-card-content a{
    color: white;
}
.list-card-link{
    font-weight: 550;
    letter-spacing: 2.5px;
    border-bottom: 3px solid transparent;
}
.list-card-link:hover{
    border-bottom: 3px solid white;
}
.list-card-content .category{
    margin: 5px 0 10px 0;
}


.list-card-content .list-card-description{
    margin: 5px 0 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-card-content .list-card-description a{
    letter-spacing: 1px;
}
.list-card-content .list-card-description a:hover{
    color: rgba(190, 212, 188, 0.377);
}
.see-more-div{
 margin: 1rem 0;
}
.see-more{
    font-size: 1rem;
    font-weight: 700;
    margin: 5rem 0;
}

.wide-card-area-container,.wide-area-img-container{
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
    transition: all 0.3s;
}
.wide-card-img-wrapper{
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.wide-card-area-container:hover .wide-area-img-container img{
    transform: scale(1.1);
}
.wide-area-img-container::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;    
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(85deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0) 99%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(85deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0) 99%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(85deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0) 99%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(85deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0) 99%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(5deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0) 99%, rgba(0, 0, 0, 0) 100%);

}
.wide-card-content-container{
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    padding: 0 0 0 1.2rem;
    width: 95%;
}
.wide-card-category{
    margin: 1rem 0;
}
.wide-card-link{
    color: white;
    border-bottom: 3px solid transparent;
}
.wide-card-link:hover{
    border-bottom: 3px solid white;
}
.wide-card-link-one{
    font-weight: 600;
    letter-spacing: 1px;
}
.wide-card-link-two{
    word-spacing: 2px;
    letter-spacing: 1px;
}
.wide-card-description-container{
    margin: 1rem 0;
}
.wide-card-description-container h2{
    font-size: 2rem;
}
.read-more-contaier{
    margin: 5px 0;
}
.read-more-link{
    letter-spacing: 2px;
    font-weight: 550;
}



.tall-card-flex-container{
    display: flex;
    flex-direction: column;
}
.tall-card-flex-container:hover .tall-card-image-wrapper img{
    transform: scale(1.1);
}
.tall-card-flex-container:hover .tall-card-image-wrapper::after{
    height: 5px;
}
.tall-card-image-wrapper{
    height: 240px;
    overflow: hidden;
    position: relative;
}
.tall-card-image-wrapper::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: 0;
    background-color: #DA291C;
    transition: all 0.25s ease;
}
.tall-card-image-wrapper img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s ease;
}
.tall-card-content{
    background-color: white;
    color: black;
}
.tall-card-content div{
    margin: 1rem;
}
.tall-card-category a{
    color: rgba(82, 75, 75, 0.767);
}
.tall-card-category h5{
    letter-spacing: 2px;
    word-spacing: 2px;
}
.tall-card-content .read-container a{
    font-size: 12px;
    font-weight: 510;
    color: black;
}
.magazine{
    box-shadow: 6px 6px 0px -2px #DA291C;
}
.magazine .tall-card-content{
    background-color: black;
    color: white;
}
.magazine a,.magazine .read-container a{
    color: white;
}
.video-section {
    position: relative;
    width: 100%;
    background-color: #000000;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.video-section-heading {
    display: none;
}

.video-container {
    width: 100%;
    max-width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background-color: #000000;
}

.video-div {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container video {
    display: block;
    height: 100%;
    width: 100%;
    z-index: 0;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
    top: 0;
    left: 0;
    z-index: 1;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.video-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #ffcc00;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.video-content .video-title h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
}

.video-content .video-description p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
    opacity: 0.95;
}

.video-content .video-link {
    margin-top: 10px;
}

.video-content .video-link .video-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    transition: color 0.2s, border-color 0.2s;
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 0;
    display: inline-block;
}

.video-content .video-link .video-btn:hover {
    color: #ffcc00;
    border-color: #ffffff;
}

.video-control-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.video-control-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: #ffffff;
    transform: scale(1.05);
}
.slider-section{
    width: 75%;
    margin: 2rem auto;
}
.top-slider-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-slider-title a{
    color: black;
    font-size: 15px;
    font-weight: 550;
}
.slider-div{
    margin: 1rem 0;
}
.slider-container{
    width: 75%;
    height: auto;
    
}
.slider-img-wrapper{
    overflow: hidden;
    width: 172px;
    height: 258px;
    position: relative;
    margin: 0 0.5rem;
    background-color: #1a1a1a;
}

.slider-img-wrapper .bottom-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.slider-img-wrapper .top-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.slider-img-wrapper img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.25s ease;
}
.slider-img-wrapper:hover .bottom-img img{
    transform: scale(1.1);
}

/* New clean TV slide card style */
.tv-slide-inner {
    position: relative;
    width: 200px;
    height: 260px;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 6px;
    background-color: #111;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tv-slide-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.tv-slide-inner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.tv-slide-inner:hover > img {
    transform: scale(1.05);
}
.tv-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.0) 100%);
    color: #fff;
}
.tv-slide-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #DA291C;
    display: block;
    margin-bottom: 4px;
}
.tv-slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Society Learn More button */
.society-learn-btn {
    display: inline-block;
    background-color: transparent;
    color: #DA291C;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 28px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #DA291C;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.25s ease;
}
.travel-homepage{
    background-image: url('../assets/images/travel-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
.travel-homepage::after{
    content: '';
    width: 100%;
    height: 100%;
   background-color: black;
   opacity: 0.5;
    position: absolute;
    top: 0;
    z-index: -600;
}
.travel-homepage .homepage-container{
    z-index: 3;
}

.travel-homepage .homepeage-heading h1{
    margin: 2rem 0;
}

.partner-div{
    background-color: white;
    padding: 1px 0;
}
.partner-div a{
    color: black;
    font-size: 15px;
    font-weight: 550;
    padding: 50px 0;
}
.reverse-card-area{
    grid-template-areas: "reverse-wide-card-area      reverse-wide-card-area    reverse-list-card-area"
                        "reverse-tall-card-area-one   reverse-tall-card-area-two       reverse-list-card-area";
    
}
.reverse-list-card-area{
    grid-area: reverse-list-card-area;
}
.reverse-wide-card-area{
    grid-area: reverse-wide-card-area;
}
.reverse-tall-card-area-one{
    grid-area:reverse-tall-card-area-one;
}
.reverse-tall-card-area-two{
    grid-area: reverse-tall-card-area-two;
}

.poadcast-div{
    background-image: url('https://images.unsplash.com/photo-1590608897129-79da98d15969?w=1600');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

}
.photo-p{
    letter-spacing: 1px;
}
.photo-container{
    width: 80%;
    background-color: rgb(155, 128, 128);
    margin:1rem auto;
    height: 90vh;
    overflow: hidden;
    transition: all 0.25s ease;
    
}
.photo-container .photo-bg{
    background-image: url('../assets/images/photo-of-the-day.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120%;
    width: 120%;
    transition: all 0.25s ease;
}

.mag-shadow-dark{
    box-shadow: 0px 0px 18px 0px #2c2a2a;
    border-radius: 10px;
}


.magazine-wrapper img{
    width: 70%;
    margin: 0 auto;
    display: block;
    outline: 14px solid #DA291C;
    outline-offset: -14px;
}
.magazine-btn-container{
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: #DA291C;
    position: relative;
    z-index: 3;
}
.magazine-btn-container a{
    font-size: 1.1rem;
    font-weight: 550;
    letter-spacing: 1px;
    color: #ffffff;
    transition: color 0.25s ease;
}
.magazine-btn-container:hover a{
    color: #DA291C;
}
.magazine-btn-container:hover a{
    color: #DA291C;
}
.magazine-btn-container::after{
    content: '';
    margin:auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.25s ease;
    
}
.magazine-btn-container:hover{
    cursor: pointer;
}
.magazine-btn-container:hover::after{
    transform: scaleX(1);
}
.society-top{
    width: 80%;
    margin: 4rem auto;
    text-align: center;
    letter-spacing: 2px;
    
}
.society-top h1{
    margin: 2rem 0;
}
.society-top p{
    margin: 0 auto;
}
.society-content-container{
    width: 90%;
    margin: 3rem auto 7rem auto;
    display: flex;
    justify-content: space-evenly;
}
.socitey-img-wrapper{
    height: 100%;
    width: 100%;
}
.socitey-img-wrapper img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}
.society-content-wrapper{
    display: flex;
    flex-direction: column;
}
.society-flex-content-container{
    width: 70%;
    margin: auto auto;
}
.society-content-heading,.society-content-p{
    margin: 2.5rem 0;
}
.society-content-heading h1{
    font-size: 2rem;
    letter-spacing: 1px;
}
.society-content-p p{
    font-size: 1.2rem;
}
.society-flex-content-container a{
    padding: 12px 28px;
    border: 2px solid #DA291C;
    color: #DA291C;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    transition: color 0.25s ease;
}
.society-flex-content-container a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #DA291C;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.society-flex-content-container a:hover::after{
    transform: scaleX(1);
}
.society-flex-content-container a:hover{
    color: white;
}
footer{
    background-color: black;
    color: white;
    padding: 1rem 0;
}
footer a{
    color: white;
    font-size: 14px;
    border-bottom: 2px solid transparent;
}
footer a:hover{
    border-bottom: 2px solid white;
}
footer p{
    font-size: 14px;
    letter-spacing: 1px;
    word-spacing: 2px;
    font-weight: 550;
}
.footer-container{
    padding: 1rem 0;
    width: 70%;
    margin: 0 auto;
    height: 100%;
}
.footer-flex{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.footer-about-us div,.footer-our-sites div,.footer-join-us div,.footer-follow-us div{
    margin: 0.5rem 0;
}


@media only screen and (max-width: 800px) {
    .nav-content-container{
        width: 100%;
    }
    .nav-link-topics-container .nav-link-topics a{
        font-size: 1.8rem;
    }
    .nav-link-topics-container .nav-link-sites a{
        font-size: 1rem;
    }

    .card-area{
        grid-template-columns: 1fr;
        grid-template-areas: "featured-carousel-area"
                            "list-card-area";
    }
    .wide-card-content-container{
        width: 100%;
    }
    .wide-card-area .wide-card-category a{
        font-size: 12px;
    }
    .wide-card-description-container h2{
        font-size: 1.3rem;
    }
    .wide-card-area .read-container a{
        font-size: 13px;
    }
    .video-container {
        width: 100%;
        height: 480px;
        margin: 0;
    }
    .video-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        width: 90%;
        max-width: 100%;
        gap: 10px;
    }
    .video-content .video-title h1 {
        font-size: 1.5rem;
    }
    .video-content .video-description p {
        font-size: 13px;
        line-height: 1.5;
    }
    .video-control-btn {
        top: 20px;
        left: 20px;
        width: 38px;
        height: 38px;
    }
    .slider-section{
        width: 90%;
    }
    .top-slider-title{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .reverse-card-area{
        grid-template-areas: "reverse-wide-card-area      reverse-wide-card-area"
                              "reverse-tall-card-area-one   reverse-tall-card-area-two"     
                               "reverse-list-card-area   reverse-list-card-area";
        
    }
    .society-content-container{
        flex-direction: column;
    }
    .footer-container{
        width: 95%;
    }
    .footer-flex{
        justify-content: start;
    }
    .footer-flex > div{
        padding: 1rem ;
    }
    
}
    
@media only screen and (max-width: 480px) {
    .card-area{
        grid-template-columns: 1fr;
        grid-template-areas: "featured-carousel-area"
                            "list-card-area";
    }
    .reverse-card-area{
        grid-template-areas: "reverse-wide-card-area"
                              "reverse-tall-card-area-one"
                              "reverse-tall-card-area-two"     
                               "reverse-list-card-area";
        
    }
}

/* ==========================================================================
   REAL NATGEO HIGH-FIDELITY HEADER, NAVIGATION, AND SIDE DRAWER STYLING
   ========================================================================== */

/* Header reset & variables */
:root {
    --tingali-red: #DA291C;
    --natgeo-dark: #161322;
    --natgeo-light-bg: #f7f7f9;
    --font-outfit: 'Outfit', sans-serif;
    --font-garamond: 'Cormorant Garamond', serif;
}

.article-page-body {
    background-color: #ffffff;
    color: #333333;
    font-family: var(--font-outfit);
}

/* Premium sticky header layout matching 48px National Geographic specifications */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Header logo */
#header-logo {
    height: 46px;
    display: block;
    object-fit: contain;
    width: auto;
}

/* Hamburger menu toggle button for mobile navigation */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--natgeo-dark);
    cursor: pointer;
    padding: 5px;
}

/* Desktop horizontal navigation list */
.desktop-nav {
    height: 100%;
}

.nav-links {
    display: flex;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links > li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link-item {
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--natgeo-dark);
    padding: 0 10px;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 0.8px;
    position: relative;
    transition: color 0.15s ease;
}

.nav-link-item:hover,
.nav-item-has-megamenu:hover > .nav-link-item {
    color: #DA291C;
}

/* McDonald's Red top indicator line on hover matching actual NatGeo menu bar styling */
.nav-links > li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #DA291C;
    transform: scaleX(0);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links > li:hover::after {
    transform: scaleX(1);
}

/* Dropdown styling */
.nav-dropdown {
    position: relative;
}

.chevron {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 500;
    color: var(--natgeo-dark);
    padding: 10px 20px;
    display: block;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-menu a:hover {
    background-color: var(--natgeo-light-bg);
    color: #DA291C;
}

/* MEGAMENU (Interactive dropdown drawer with categories contents) */
.megamenu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

/* We use JavaScript hover delay to support fast micro-transitions */
.nav-item-has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.5fr;
    gap: 40px;
}

.megamenu-col {
    display: flex;
    flex-direction: column;
}

.megamenu-label {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888888;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

.megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-list li {
    margin-bottom: 12px;
}

.megamenu-list a {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 600;
    color: var(--natgeo-dark);
    transition: color 0.15s ease;
}

.megamenu-list a:hover {
    color: #DA291C;
}

.megamenu-all-link {
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--natgeo-dark);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.15s;
}

.megamenu-all-link:hover {
    color: #DA291C;
    gap: 10px;
}

/* Megamenu Article layouts */
.megamenu-article-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.megamenu-article {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.megamenu-article img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 2px;
}

.megamenu-article-title {
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--natgeo-dark);
    transition: color 0.15s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.megamenu-article:hover .megamenu-article-title {
    color: #DA291C;
}

.megamenu-featured {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.megamenu-featured img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 2px;
}

.megamenu-featured-title {
    font-family: var(--font-garamond);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--natgeo-dark);
    transition: color 0.15s ease;
}

.megamenu-featured:hover .megamenu-featured-title {
    color: #DA291C;
}

.badge-premium {
    background-color: #DA291C;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1px 4px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 4px;
    border-radius: 1px;
}

/* Header buttons and Search bar logic */
.search-toggle-btn {
    background: none;
    border: none;
    color: var(--natgeo-dark);
    cursor: pointer;
    padding: 5px;
    transition: color 0.15s ease;
}

.search-toggle-btn:hover {
    color: #DA291C;
}

.login-btn {
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--natgeo-dark);
}

@keyframes subscribe-shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.subscribe-btn {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(
        270deg,
        #DA291C,
        #ff5a4a,
        #a01810,
        #DA291C,
        #e8453a,
        #DA291C
    );
    background-size: 300% 300%;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 2px;
    animation: subscribe-shimmer 3s ease infinite;
    transition: filter 0.15s ease, transform 0.15s ease;
}

.subscribe-btn:hover {
    filter: brightness(1.15);
    transform: scale(1.03);
}

/* Inline search bar drawer (Expands when trigger is activated) */
.search-bar-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    display: none;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
}

.search-bar-wrapper.active {
    display: flex;
    animation: slideInDownHeader 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInDownHeader {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.search-input-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-icon-input {
    color: #888888;
}

.search-input {
    border: none;
    outline: none;
    font-family: var(--font-outfit);
    font-size: 16px;
    width: 100%;
    color: var(--natgeo-dark);
}

.search-close-btn {
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    padding: 5px;
    transition: color 0.15s ease;
}

.search-close-btn:hover {
    color: var(--natgeo-dark);
}

/* Mobile responsive menu drawer */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(22, 19, 34, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    height: 48px;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-close-btn {
    background: none;
    border: none;
    color: var(--natgeo-dark);
    cursor: pointer;
}

.drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-link, .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 12px 20px;
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--natgeo-dark);
    cursor: pointer;
}

.accordion-header .chevron {
    transition: transform 0.2s ease;
}

.accordion-item.active .accordion-header .chevron {
    transform: rotate(180deg);
}

.accordion-panel {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--natgeo-light-bg);
}

.accordion-panel li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 600;
    color: #555555;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer-login-btn {
    text-align: center;
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--natgeo-dark);
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
}

.drawer-subscribe-btn {
    text-align: center;
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    background-color: #DA291C;
    color: var(--natgeo-dark);
    padding: 12px;
    border-radius: 2px;
}

/* Responsive display shifts for Header elements */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
    .desktop-nav {
        display: none;
    }
}


/* ==========================================================================
   DYNAMIC ARTICLE LAYOUT & PREMIUM DETAIL PAGE STYLING
   ========================================================================== */

.article-main-container {
    width: 100%;
    overflow-x: hidden;
}

/* 1. Premium/Magazine layout cover styling */
.premium-article-header {
    width: 100%;
    min-height: 85vh;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    background-color: #0b0910;
}

.premium-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 1;
}

.premium-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 9, 16, 1) 0%, rgba(11, 9, 16, 0.4) 60%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.premium-header-content {
    position: relative;
    width: 100%;
    z-index: 3;
    padding: 60px 0;
}

.premium-header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
}

.premium-portrait-cover-wrapper {
    width: 100%;
    aspect-ratio: 9/16;
    border: 3px solid #DA291C;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}

.premium-portrait-cover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-text-wrapper {
    display: flex;
    flex-direction: column;
}

.premium-badge-tag {
    align-self: flex-start;
    background-color: #DA291C;
    color: var(--natgeo-dark);
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    margin-bottom: 20px;
    border-radius: 1px;
}

.premium-title-text {
    font-family: var(--font-garamond);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.premium-author-row, .standard-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-author-avatar, .standard-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #DA291C;
    color: var(--natgeo-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 14px;
}

.premium-meta-info, .standard-meta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.premium-meta-info .author-name, .standard-meta-info .author-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.premium-meta-info .publish-date, .standard-meta-info .publish-date {
    font-size: 11px;
    color: #aaaaaa;
}

/* 2. Standard article cover header styling */
.standard-article-header {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 0 20px;
}

.standard-header-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.standard-category-tag {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #DA291C;
    margin-bottom: 15px;
}

.standard-title-text {
    font-family: var(--font-garamond);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--natgeo-dark);
    margin-bottom: 15px;
}

.standard-lead-text {
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 25px;
}

.standard-meta-info .author-name {
    color: var(--natgeo-dark);
}

.standard-meta-info .publish-date {
    color: #777777;
}

.standard-featured-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.standard-featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. Article Content Area styling */
.article-body-wrapper {
    width: 100%;
    padding: 40px 20px 80px 20px;
}

.article-body-container {
    max-width: 720px;
    margin: 0 auto;
}

/* Custom premium visual style lead text box */
.premium-body-lead {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 10px 0;
}

.premium-lead-border {
    width: 4px;
    background-color: #DA291C;
    flex-shrink: 0;
}

.premium-lead-content {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: #444444;
    margin: 0;
}

/* Rich-text content rendering with dropcap support and typographic parity */
.article-rich-text {
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2b2b2b;
}

.article-rich-text > p {
    margin-bottom: 25px;
}

/* Large dropcap design matching National Geographic magazine editorial layout */
.article-rich-text > p:first-of-type::first-letter {
    font-family: var(--font-garamond);
    font-size: 75px;
    font-weight: 700;
    line-height: 0.65;
    float: left;
    margin-top: 6px;
    margin-bottom: -4px;
    margin-right: 8px;
    color: #DA291C;
    /* Prevent extra whitespace below on mobile/WebView */
    display: block;
    overflow: hidden;
}

.article-rich-text img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 2px;
}

.article-rich-text h2, .article-rich-text h3 {
    font-family: var(--font-outfit);
    color: var(--natgeo-dark);
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.article-rich-text h2 {
    font-size: 24px;
    font-weight: 700;
    border-left: 3px solid #DA291C;
    padding-left: 15px;
}

/* Styled ad slot placeholder matching portal theme */
.web-ad-slot {
    margin: 40px 0;
    background-color: var(--natgeo-light-bg);
    border: 1px dashed #cccccc;
    padding: 15px;
    text-align: center;
    border-radius: 2px;
}

.ad-label {
    font-family: var(--font-outfit);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #999999;
    display: block;
    margin-bottom: 10px;
}

.ad-box {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.ad-box-title {
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 700;
    color: var(--natgeo-dark);
    display: block;
    margin-bottom: 5px;
}

.ad-box-subtitle {
    font-size: 11px;
    color: #666666;
    margin: 0;
}

/* Inline suggested/related article banner styling */
.read-also-placeholder {
    margin: 35px 0;
}

.read-also-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--natgeo-light-bg);
    border-left: 4px solid #DA291C;
    padding: 12px 15px;
    border-radius: 2px;
}

.read-also-thumb {
    width: 90px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1px;
}

.read-also-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.read-also-label {
    font-family: var(--font-outfit);
    font-size: 10px;
    font-weight: 800;
    color: #888888;
    letter-spacing: 1px;
}

.read-also-title {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    color: var(--natgeo-dark);
    line-height: 1.4;
    transition: color 0.15s ease;
}

.read-also-title:hover {
    color: #DA291C;
}


/* ==========================================================================
   WIDGETS LAYOUT PARITY FOR DESKTOP-WEB WITH PORTAL VISUAL SPECIFICATIONS
   ========================================================================== */

/* 1. Geology Fact Box Style (Amber/McDonald's Red accents) */
.fact-box-geology {
    border-left: 4px solid #f59e0b;
    background-color: #fefaf0;
    padding: 24px;
    margin: 35px 0;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.04);
}

/* 2. Sosiokultural Fact Box Style (Blue accents) */
.fact-box-sosiokultural {
    border-left: 4px solid #3b82f6;
    background-color: #f0f7ff;
    padding: 24px;
    margin: 35px 0;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.04);
}

.fact-box-geology .widget-title,
.fact-box-sosiokultural .widget-title {
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fact-box-geology .widget-title { color: #d97706; }
.fact-box-sosiokultural .widget-title { color: #2563eb; }

/* 3. Rip Current Danger Card Styling */
.rip-current-card {
    background-color: #110e16;
    border: 1px solid #3f181f;
    border-radius: 4px;
    margin: 40px 0;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.rip-current-header {
    background: linear-gradient(to right, #991b1b, #ef4444);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rip-title {
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.rip-badge {
    background-color: #ffffff;
    color: #b91c1c;
    font-family: var(--font-outfit);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 2px;
}

.rip-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #221d2a;
}

.rip-metric {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid #221d2a;
}

.rip-metric:last-child {
    border-right: none;
}

.rip-metric-label {
    font-family: var(--font-outfit);
    font-size: 10px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.rip-metric-val {
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 700;
    color: #f87171;
}

.rip-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #cccccc;
    padding: 20px;
    margin: 0;
}

/* 4. Hotel Facilities Card Styling */
.hotel-facilities-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin: 40px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.hotel-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-title {
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 700;
    color: var(--natgeo-dark);
}

.hotel-stars {
    display: flex;
    gap: 3px;
}

.star {
    color: #cbd5e1;
}

.star.active {
    color: #DA291C;
}

.hotel-content {
    padding: 20px;
}

.hotel-section {
    margin-bottom: 15px;
}

.hotel-section:last-child {
    margin-bottom: 0;
}

.section-label {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.section-label.general { color: #d97706; }
.section-label.room { color: #2563eb; }
.section-label.services { color: #16a34a; }

.badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.facility-badge {
    background-color: #f1f5f9;
    color: #475569;
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 5. Tourism Info Card Styling */
.tourism-info-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin: 40px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    overflow: hidden;
}

.tourism-header {
    background: linear-gradient(to right, var(--natgeo-dark), #2c253d);
    color: #ffffff;
    padding: 15px 20px;
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tourism-content {
    padding: 20px;
}

.tourism-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.price-box {
    padding: 12px;
    border-radius: 4px;
    text-align: center;
}

.price-box.dom {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
}

.price-box.foreign {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
}

.price-label {
    font-family: var(--font-outfit);
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 800;
}

.price-box.dom .price-value { color: #16a34a; }
.price-box.foreign .price-value { color: #2563eb; }

.tourism-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.tourism-info-row:last-of-type {
    border-bottom: none;
}

.tourism-info-row svg {
    color: #64748b;
}

.row-label {
    font-weight: 600;
    color: var(--natgeo-dark);
}

.row-val {
    color: #555555;
    margin-left: auto;
}

.tourism-tips {
    margin-top: 20px;
    background-color: #fefaf0;
    border: 1px solid #fde68a;
    padding: 15px;
    border-radius: 4px;
}

.tips-header {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 800;
    color: #d97706;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.tips-text {
    font-size: 12px;
    line-height: 1.5;
    color: #78350f;
    margin: 0;
}

/* 6. Timeline Card Styling */
.timeline-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin: 40px 0;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.timeline-header {
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 700;
    color: var(--natgeo-dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DA291C;
}

.timeline-body {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 8px;
    width: 2px;
    background-color: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    top: 5px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #DA291C;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #DA291C;
}

.timeline-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.event-time {
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 800;
    color: #DA291C;
}

.event-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #444444;
    margin: 0;
}

/* 7. Minimap Card Styling */
.minimap-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin: 40px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    overflow: hidden;
}

.minimap-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 20px;
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.minimap-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.leaflet-map-container {
    width: 100%;
    height: 220px;
    background-color: #e5e7eb;
}

.minimap-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.minimap-info .coords {
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin: 0 0 10px 0;
}

.minimap-info .desc {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0 0 20px 0;
}

.nav-btn {
    align-self: flex-start;
    margin-top: auto;
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--natgeo-dark);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.15s ease;
}

.nav-btn:hover {
    background-color: #DA291C;
    color: var(--natgeo-dark);
}

/* Custom pulsed map marker design styling */
.custom-leaflet-marker {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ef4444;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
    animation: markerPulse 1.5s infinite ease-in-out;
}

@keyframes markerPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* 8. Infographic Chart Cards Styling */
.chart-line-card, .chart-bar-card, .chart-pie-card {
    background-color: #161322;
    border: 1px solid #252033;
    border-radius: 4px;
    margin: 40px 0;
    padding: 20px;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.chart-header {
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b889b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-body {
    height: 200px;
    position: relative;
}

/* Mobile widget layouts responsiveness override */
@media (max-width: 600px) {
    .minimap-body {
        grid-template-columns: 1fr;
    }
    .leaflet-map-container {
        height: 180px;
    }
    .tourism-prices {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   COMMENTS SECTION STYLING
   ========================================================================== */

.article-comments-wrapper {
    background-color: var(--natgeo-light-bg);
    border-top: 1px solid #e5e5e5;
    padding: 60px 20px;
}

.comments-container {
    max-width: 720px;
    margin: 0 auto;
}

.comments-heading {
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 700;
    color: var(--natgeo-dark);
    margin-bottom: 25px;
}

.comments-input-area {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.comment-textbox {
    width: 100%;
    height: 100px;
    border: none;
    outline: none;
    resize: none;
    font-family: var(--font-outfit);
    font-size: 14px;
    color: var(--natgeo-dark);
}

.comment-actions-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.comment-submit-btn {
    background-color: var(--natgeo-dark);
    color: #ffffff;
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    padding: 8px 18px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.comment-submit-btn:hover {
    background-color: #DA291C;
    color: var(--natgeo-dark);
}

.comments-list-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 15px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 15px 20px;
    border-radius: 4px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.comment-content-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.comment-author {
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 700;
    color: var(--natgeo-dark);
}

.comment-text {
    font-size: 13px;
    line-height: 1.5;
    color: #444444;
    margin: 0;
}

.comment-time {
    font-size: 10px;
    color: #999999;
}


/* ==========================================================================
   STICKY BAR INTERACTIVE CONTAINER SPECIFICATIONS
   ========================================================================== */

.article-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
    z-index: 998;
}

.sticky-bar-container {
    max-width: 760px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.interaction-buttons, .sharing-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    background: none;
    border: none;
    color: #555555;
    cursor: pointer;
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    transition: color 0.15s ease;
}

.action-btn:hover, .action-btn.active {
    color: #DA291C;
}

.action-btn svg {
    transition: transform 0.15s ease;
}

.action-btn:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   3D COVER FLOW TV SLIDER
   ========================================================================== */

.slider-div {
    background-color: #000000;
    padding: 3rem 0;
    margin: 0;
    width: 100%;
}

.tv-slider-3d-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: hidden;
}

.tv-slider-3d-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-slide-3d-card {
    position: absolute;
    width: 260px;
    height: 380px;
    background-color: #111111;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s, z-index 0.6s;
    transform-origin: center center;
    cursor: pointer;
}

.tv-slide-3d-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tv-slide-3d-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.tv-slide-3d-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffcc00;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.tv-slide-3d-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px 0;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tv-slide-3d-btn {
    align-self: center;
    background-color: #ffcc00;
    color: #000000;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border: none;
    border-radius: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.2s ease;
}

.tv-slide-3d-card.active .tv-slide-3d-btn {
    opacity: 1;
    transform: translateY(0);
}

.tv-slide-3d-btn:hover {
    background-color: #ffe066;
}

.tv-slider-prev-btn, .tv-slider-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: color 0.2s, transform 0.2s;
}

.tv-slider-prev-btn:hover, .tv-slider-next-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: transparent;
}

.tv-slider-prev-btn svg, .tv-slider-next-btn svg {
    width: 32px;
    height: 32px;
}

.tv-slider-prev-btn {
    left: 20px;
}

.tv-slider-next-btn {
    right: 20px;
}

/* ==========================================================================
   MORE FROM NAT GEO SECTION
   ========================================================================== */

.more-from-tingali-section {
    background-color: #0b0c10;
    color: #ffffff;
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

.more-from-tingali-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.more-from-tingali-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.more-from-tingali-header h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1.5px;
    margin: 0;
    color: #ffffff;
}

.more-from-tingali-nav {
    display: flex;
    gap: 10px;
}

.more-from-prev-btn, .more-from-next-btn {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.more-from-prev-btn:hover, .more-from-next-btn:hover {
    background-color: #DA291C;
    color: #000000;
    border-color: #DA291C;
}

.more-from-tingali-track-wrapper {
    width: 100%;
    overflow: hidden;
}

.more-from-tingali-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.more-from-card {
    flex: 0 0 calc(25% - 15px); /* Default 4 columns */
    min-width: 240px;
    background-color: #12141c;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.more-from-card:hover {
    transform: translateY(-5px);
}

.more-from-img-link {
    display: block;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.more-from-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.more-from-card:hover .more-from-img-link img {
    transform: scale(1.05);
}

.more-from-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.more-from-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #DA291C;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.more-from-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.more-from-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s ease;
}

.more-from-title a:hover {
    color: #DA291C;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .more-from-card {
        flex: 0 0 calc(33.333% - 13.33px); /* 3 columns */
    }
    .tv-slide-3d-card {
        width: 220px;
        height: 310px;
    }
    .tv-slider-3d-container {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .more-from-card {
        flex: 0 0 calc(50% - 10px); /* 2 columns */
    }
    .tv-slide-3d-card {
        width: 180px;
        height: 250px;
    }
    .tv-slider-3d-container {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .more-from-card {
        flex: 0 0 100%; /* 1 column */
    }
}

/* ==========================================================================
   REBRANDED TINGALI FOOTER STYLING
   ========================================================================== */

.main-footer {
    background-color: #000000;
    color: #a1a1a1;
    padding: 5rem 0 3rem 0;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid #111111;
}

.footer-grid-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links li {
    margin-bottom: 12px;
}

.footer-col-links a {
    color: #a1a1a1;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Follow Us Column Styles */
.follow-us-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-social-icons a {
    color: #a1a1a1;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 13px;
    color: #a1a1a1;
    transition: color 0.2s ease;
}

.footer-language-selector:hover {
    color: #ffffff;
}

.flag-icon {
    display: flex;
    align-items: center;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid #1c1d22;
    padding-top: 2.5rem;
    width: 100%;
}

.footer-bottom-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-box {
    width: 14px;
    height: 21px;
    border: 4px solid #DA291C;
    display: inline-block;
    box-sizing: border-box;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.footer-copyright-area {
    text-align: right;
}

.footer-copyright-area p {
    font-size: 11px;
    color: #52525b;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Footer styling */
@media (max-width: 1024px) {
    .footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .footer-copyright-area {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-col-title {
        margin-bottom: 12px;
    }
}

/* ==========================================================================
   FEATURED NEWS CAROUSEL NEW STYLING
   ========================================================================== */
.featured-carousel-area {
    grid-area: featured-carousel-area;
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}
.featured-carousel-area .glider-contain {
    position: relative;
    width: 100%;
    height: 100%;
}
.featured-slide-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}
.slide-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.featured-slide-card:hover .slide-img-wrapper img {
    transform: scale(1.05);
}
.slide-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}
.slide-content-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2;
    text-align: left;
}
.slide-category {
    display: flex;
    align-items: center;
}
.slide-cat-badge {
    font-size: 11px;
    font-weight: 700;
    color: #ffcc00;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.slide-tag {
    font-size: 10px;
    font-weight: 600;
    color: #ccc;
    margin-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 10px;
    letter-spacing: 0.5px;
}
.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    color: #fff;
    letter-spacing: -0.2px;
}
.slide-summary {
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.slide-read-btn {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.slide-read-btn:hover {
    color: #ffcc00;
}
.featured-carousel-area .glider-prev,
.featured-carousel-area .glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(22, 19, 34, 0.65);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}
.featured-carousel-area .glider-prev:hover,
.featured-carousel-area .glider-next:hover {
    background: #DA291C;
    color: #fff;
}
.featured-carousel-area .glider-prev {
    left: 15px;
}
.featured-carousel-area .glider-next {
    right: 15px;
}
.featured-carousel-area .dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.featured-carousel-area .glider-dot {
    background: rgba(255, 255, 255, 0.35);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
}
.featured-carousel-area .glider-dot.active {
    background: #ffcc00;
    width: 20px;
    border-radius: 4px;
}

@media only screen and (max-width: 800px) {
    .featured-carousel-area {
        height: 400px;
    }
    .featured-slide-card {
        height: 400px;
    }
    .slide-title {
        font-size: 1.5rem;
    }
    .slide-summary {
        font-size: 13px;
        max-width: 100%;
    }
}
