:root {
    --vogue-serif: 'Playfair Display', serif;
    --zoe-sans: 'Montserrat', sans-serif;
    --black: #000000;
    --gray-border: #eee;
    --accent-red: #d00;
    --gray-light: #f4f4f4;
}

body {
    font-family: var(--zoe-sans);
    color: var(--black);
    background-color: #fff;
    padding-top: 180px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--vogue-serif);
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hero-vogue img, .culture-card-main img, .cultural-thumb img, .video-side-list img, .zoe-card img, .editorial-grid-item img,.trending-thumb-img img,.related-post-item img{
	 filter: grayscale(100%);
  /* For older browser compatibility */
  -webkit-filter: grayscale(100%);
}
.hero-vogue:hover img, .culture-card-main:hover img, .cultural-thumb:hover img, .video-side-list:hover img, .zoe-card:hover img, .editorial-grid-item:hover img,.trending-thumb-img:hover img,.related-post-item:hover img{
	 filter: none;
  /* For older browser compatibility */
  -webkit-filter: none;
}
/* --- STICKY HEADER & NAVIGATION --- */
.top-bar {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.vogue-header { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #fff;
    border-bottom: 1px solid var(--gray-border);
    transition: all 0.4s ease-in-out;
}

.logo-area {
    transition: all 0.4s ease-in-out;
    padding: 2rem 0;
}

.site-logo { 
    font-family: var(--vogue-serif); 
    font-weight: 900; 
    font-size: 3rem; 
    letter-spacing: -2px; 
    text-transform: uppercase; 
    line-height: 0.8; 
    transition: all 0.4s ease-in-out;
}

.site-subtitle {
    font-family: var(--vogue-serif); 
    font-style: italic; 
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

/* Scrolled State */
.vogue-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.vogue-header.scrolled .logo-area {
    padding: 0.8rem 0;
}
.vogue-header.scrolled .site-logo {
    font-size: 1.5rem;
    letter-spacing: -1px;
}
.vogue-header.scrolled .site-subtitle {
    display: none;
}

.vogue-nav { 
    border-top: 1px solid #000; 
    border-bottom: 1px solid #000; 
    background: #fff;
    padding: 0;
}

.vogue-nav .nav-link { 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 1.5px; 
    color: #000 !important; 
    padding: 0.8rem 1.2rem !important; 
    transition: opacity 0.3s;
}
.vogue-nav .nav-link.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.vogue-nav .nav-link:hover {
    opacity: 0.7;
}

/* Mobile Nav */
@media (max-width: 991.98px) {
    body { padding-top: 140px; }
    .vogue-nav .container {
        padding: 0;
        max-width: 100%;
    }
    .vogue-nav .navbar-nav {
        display: flex;
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1rem;
    }
    .vogue-nav .navbar-nav::-webkit-scrollbar {
        display: none;
    }
    .vogue-nav .nav-item {
        flex: 0 0 auto;
    }
    .vogue-nav .nav-link {
        padding: 1rem 0.8rem !important;
        font-size: 0.7rem !important;
    }
    .site-logo { font-size: 2rem; }
}

/* --- CATEGORY HEADER --- */
.category-title-section {
    padding: 3rem 0;
    text-align: center;
}
.category-name {
    font-family: var(--vogue-serif);
    font-weight: 900;
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}
.category-description {
    font-family: var(--vogue-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* --- HERO FEATURE --- */
.hero-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.hero-img-box {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background: #f0f0f0;
}
.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.hero-card:hover img {
    transform: scale(1.03);
}
.hero-text-box {
    padding: 2rem 0;
    text-align: center;
}
.hero-meta {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 1rem;
    display: block;
}
.hero-title {
    font-family: var(--vogue-serif);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* --- GRID LAYOUT --- */
.editorial-grid-item {
    margin-bottom: 4rem;
    text-decoration: none;
    color: inherit;
    display: block;
}
.grid-img-box {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f9f9f9;
}
.grid-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}
.editorial-grid-item:hover .grid-img-box img {
    opacity: 0.9;
}
.grid-title {
    font-family: var(--vogue-serif);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
}
.grid-meta {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    margin-top: 0.5rem;
    display: block;
}

/* --- VOGUE HERO SECTION (Homepage) --- */
.hero-vogue {
    padding: 2rem 0;
}
.hero-sticky-card {
    position: relative;
    background: #fff;
    transition: transform 0.3s ease;
}
.hero-img-container {
    height: 80vh;
    overflow: hidden;
    background: #eee;
}
.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content-overlay {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: -80px auto 0;
    background: #fff;
    position: relative;
    z-index: 2;
}
.hero-category {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    color: #d00;
    margin-bottom: 1rem;
    display: block;
}
.hero-title {
    font-family: var(--vogue-serif);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* --- ZOE REPORT SECTIONS --- */
.section-header {
    border-top: 2px solid #000;
    padding-top: 1rem;
    margin-bottom: 2rem;
}
.section-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-family: var(--zoe-sans);
}
.zoe-card {
    margin-bottom: 3rem;
    cursor: pointer;
}
.zoe-card a {
    text-decoration: none;
    color: inherit;
}
.zoe-card-img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    margin-bottom: 1rem;
    transition: opacity 0.3s;
}
.zoe-card:hover .zoe-card-img {
    opacity: 0.9;
}
.zoe-meta {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
    color:#d00;
}
.zoe-title {
    font-family: var(--vogue-serif);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
}

/* --- VIDEO SECTION --- */
.video-section {
    background-color: #111;
    color: #fff;
    padding: 4rem 0;
}
.video-section .section-header {
    border-top-color: #444;
}
.video-main {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}
.video-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.video-main:hover img {
    opacity: 0.5;
}
.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #fff;
    opacity: 0.8;
    transition: transform 0.3s;
    cursor: pointer;
}
.video-main:hover .play-btn-large {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.video-list-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}
.video-list-item:hover {
    background: rgba(255,255,255,0.05);
}
.video-thumb-small {
    width: 120px;
	height:120px;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #222;
}
.video-list-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--vogue-serif);
    color: #fff;
}

/* --- CULTURE & ART SECTION --- */
.culture-art-section {
    padding: 4rem 0;
}
.culture-card-main {
    margin-bottom: 2rem;
}
.culture-card-main img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 1.5rem;
}
.culture-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* --- SINGLE POST --- */
.article-header {
    padding: 4rem 0 2rem;
    text-align: center;
}
.article-category {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    display: block;
}
.article-title {
    font-family: var(--vogue-serif);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.article-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #666;
    margin-bottom: 2rem;
}
.article-hero-img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    margin-bottom: 3rem;
}
.article-body-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #222;
}
.article-body-text p {
    margin-bottom: 2rem;
}
.pull-quote, blockquote {
    font-family: var(--vogue-serif);
    font-size: 2rem;
    font-style: italic;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 2rem 0;
    margin: 3rem 0;
    text-align: center;
    font-weight: 400;
}


/* --- SIDEBAR --- */
.sidebar-sticky {
    position: sticky;
    top: 126px;
}
.sidebar-sticky .row{
    flex-direction: column;
}
.sidebar-sticky .row .zoe-card{
    width: 100% !important;
}
.sidebar-sticky .row .zoe-card .trending-thumb-img{
    aspect-ratio: 1/1;
    width: 100px;
    height: 100px;
    object-fit: cover;
    float: left;
    margin-right:10px;
}
.sidebar-sticky .row .zoe-card .trending-thumb-img img{
    width: 100%;
    height: 100%;
}
.sidebar-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--zoe-sans);
}

/* Trending Items */
.trending-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: inherit;
}
.trending-item:hover .trending-title {
    text-decoration: underline;
}
.trending-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.trending-title {
    font-family: var(--vogue-serif);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
}

/* Social Share */
.social-share-vertical {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}
.social-share-vertical a {
    color: #000;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-share-vertical a:hover {
    color: var(--accent-red);
}

/* Pagination */
.vogue-pagination {
    border-top: 1px solid var(--gray-border);
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}
.btn-vogue-more {
    border: 1px solid #000;
    border-radius: 0;
    padding: 0.8rem 3rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    background: transparent;
}
.btn-vogue-more:hover {
    background: #000;
    color: #fff;
}
.page-link {
    border-radius: 0 !important;
    color: #000;
}
.page-item.active .page-link {
    background-color: #000;
    border-color: #000;
}

/* Author Box */
.author-box {
    background: var(--gray-light);
    padding: 2rem;
}

/* Comments */
.comment-list {
    list-style: none;
    padding: 0;
}
.comment {
    margin-bottom: 2rem;
}
.comment-meta {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.comment-author .fn {
    font-weight: 700;
}
.comment-author .says {
    display: none;
}
.reply {
    margin-top: 0.5rem;
}
.comment-reply-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1100px) {
    .social-share-vertical {
        position: relative;
        flex-direction: row;
        justify-content: center;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .category-name { font-size: 3rem; }
    .hero-title { font-size: 2rem; }
    .hero-img-container { height: 50vh; }
    .hero-content-overlay { margin-top: 0; padding: 1.5rem; }
    .article-title { font-size: 2.2rem; }
    .article-hero-img { height: 40vh; }
    .video-list-item { flex-direction: column; }
    .video-thumb-small { width: 100%; }
}

/* Trending Widget Enhancements */
/* Trending Widget Grid Layout */
.widget-trending .row {
    margin-left: -15px;
    margin-right: -15px;
}

.widget-trending .zoe-card {
    margin-bottom: 2rem;
}

.widget-trending .zoe-card-img,.widget-trending .trending-thumb-img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.widget-trending .zoe-card:hover .zoe-card-img {
    opacity: 0.9;
}

.widget-trending .zoe-card:hover .zoe-title {
    text-decoration: underline;
}

.widget-trending .zoe-meta {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.widget-trending .zoe-title {
    font-family: var(--vogue-serif);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.widget-trending .grid-meta {
    font-size: 0.7rem;
    color: #888;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .widget-trending .col-md-4 {
        margin-bottom: 2rem;
    }
    
    .widget-trending .zoe-title {
        font-size: 1rem;
    }
}
.btn-newsletter {
    background: none;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1rem;
}
.btn-newsletter:hover{
    color: #111;
    text-decoration: underline;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: black;
    color: white;
    max-width: 250px;
    padding: 10px 15px;
    width: 182px;
    margin: 0 auto;
    display: block;
  font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.150rem;
}