/*
Theme Name: Cinemazze
Theme URI: https://cinemazze.com/
Author: Antigravity
Description: A premium entertainment and movie news theme inspired by the Deadline layout.
Version: 1.0.0
Text Domain: cinemazze
*/

/* ==========================================
   RESET & DEFAULTS
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6, .serif-font {
    font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: 700;
    margin-top: 0;
}

.uppercase-track {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   LAYOUT CONTAINERS
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================
   HEADER SECTION
   ========================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 55px; /* Added spacing at the top of the page */
}

.header-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .header-top {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

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

@media (max-width: 768px) {
    .header-actions-left {
        justify-content: center;
    }
}

.icon-btn {
    background: none;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    color: #111;
}

.icon-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.icon-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.tip-btn {
    border: 1px solid #d32f2f;
    background: none;
    color: #d32f2f;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: none; /* Keeps "Got A Tip?" capitalization */
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
}

.tip-btn:hover {
    background-color: #d32f2f;
    color: #fff;
}

/* Logo styling matching DEADLINE serif typeface */
.site-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo a {
    font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 78px;
    font-weight: 900;
    letter-spacing: 0.08em; /* Spreads the letters wider in breadth */
    color: #000;
    text-transform: uppercase;
    line-height: 1.0;
    display: inline-block;
}

.site-logo img {
    max-height: 130px;
    width: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .site-logo a {
        font-size: 38px;
    }
}

/* Follow us / Social Icons */
.header-social-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

@media (max-width: 768px) {
    .header-social-right {
        justify-content: center;
    }
}

.social-label {
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* NAVIGATION MENU */
.main-navigation-wrapper {
    border-top: 1px solid #111;
    border-bottom: 2px solid #111;
    margin-bottom: 30px;
}

.main-navigation {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}

.main-navigation::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.main-menu > li > a:hover {
    color: #d32f2f;
}

/* Dividers between menu items */
.main-menu > li:not(:last-child)::after {
    content: "|";
    color: #ccc;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    font-size: 12px;
}

/* Dropdown sub-menus styling */
.main-menu .sub-menu,
.main-navigation-wrapper ul.menu .sub-menu,
.main-navigation-wrapper .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-top: 3px solid #d32f2f;
    border-radius: 0 0 4px 4px;
}

.main-menu li:hover > .sub-menu,
.main-navigation-wrapper li:hover > .sub-menu {
    display: block;
}

.main-menu .sub-menu li,
.main-navigation-wrapper .sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.main-menu .sub-menu li::after,
.main-navigation-wrapper .sub-menu li::after {
    display: none !important; /* Hide divider inside dropdown */
}

.main-menu .sub-menu li a,
.main-navigation-wrapper .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.04em;
}

.main-menu .sub-menu li a:hover,
.main-navigation-wrapper .sub-menu li a:hover {
    background: #f9f9f9;
    color: #d32f2f;
}


/* ==========================================
   FEATURED GRID (4 columns)
   ========================================== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

.featured-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s;
}

.featured-card:hover {
    border-color: #d32f2f;
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
}

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

.featured-card:hover .card-img-wrapper img {
    transform: scale(1.03);
}

.card-content {
    padding: 12px 0;
}

.post-category-tag {
    font-size: 11px;
    font-weight: 800;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    display: inline-block;
}

.post-category-tag a:hover {
    text-decoration: underline;
}

.card-title {
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
    color: #111;
}

.card-title a:hover {
    color: #d32f2f;
}

/* ==========================================
   LATEST NEWS SECTION (Split design)
   ========================================== */
.section-title-wrapper {
    border-bottom: 2px solid #111;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.01em;
    color: #111;
    display: inline-block;
}

/* Latest News 2-Column Grid Layout */
.latest-news-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 45px;
}

@media (max-width: 992px) {
    .latest-news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.latest-news-left {
    /* Contains the list of 10 articles */
}

.latest-news-right {
    /* Normal static layout, scrolls with page */
}

.latest-news-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.latest-news-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.latest-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (max-width: 600px) {
    .latest-news-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.item-content {
    display: flex;
    flex-direction: column;
}

.latest-news-item .post-category-tag a {
    color: #2e7d32; /* Green tags */
    font-size: 12px;
    font-weight: 700;
}

.post-meta-divider {
    color: #ccc;
    margin: 0 8px;
    font-size: 13px;
}

.item-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin: 8px 0 0 0;
    color: #111;
    letter-spacing: -0.01em;
}

.item-title a:hover {
    color: #2e7d32;
}

.item-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.item-meta {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-top: 4px;
}

.item-img-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 2px;
    width: 220px;
}

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

/* ==========================================
   SIDEBAR & SEARCH DRAWER OVERLAYS
   ========================================== */
/* Sidebar Drawer */
.sidebar-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #111;
    color: #fff;
    z-index: 1000;
    box-shadow: 5px 0 15px rgba(0,0,0,0.3);
    transition: left 0.3s ease;
    padding: 30px 20px;
    overflow-y: auto;
}

.sidebar-drawer.open {
    left: 0;
}

.sidebar-close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

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

.drawer-menu li a {
    display: block;
    padding: 12px 15px;
    color: #bbb;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #222;
    transition: color 0.2s, background 0.2s;
}

.drawer-menu li a:hover {
    color: #fff;
    background: #222;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.3s ease;
}

.search-overlay.open {
    top: 0;
}

.search-close-btn {
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    font-size: 36px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.search-form-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.search-form-container h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.overlay-search-form {
    display: flex;
    border-bottom: 3px solid #111;
}

.overlay-search-input {
    width: 100%;
    border: none;
    background: none;
    font-size: 24px;
    padding: 10px 0;
    outline: none;
    font-family: inherit;
}

.overlay-search-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #111;
}

.overlay-search-submit svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Backdrop */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.drawer-backdrop.open {
    display: block;
}

/* ==========================================
   SINGLE POST PAGE & PAGE LAYOUTS
   ========================================== */
.post-header {
    text-align: center;
    margin-bottom: 30px;
}

.post-header .post-category-tag {
    font-size: 14px;
    margin-bottom: 12px;
}

.single-post-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 15px;
    color: #000;
}

@media (max-width: 768px) {
    .single-post-title {
        font-size: 32px;
    }
}

.post-meta-single {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.post-meta-single span {
    margin-right: 15px;
}

.featured-image-single {
    margin-bottom: 0;
    max-height: 550px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.post-content-body {
    max-width: 740px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    font-family: Georgia, serif;
}

.post-content-body p {
    margin-bottom: 25px;
}

.post-content-body h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #111;
}

.post-content-body h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #111;
}

.post-content-body blockquote {
    border-left: 4px solid #d32f2f;
    margin: 30px 0;
    padding-left: 20px;
    font-style: italic;
    color: #555;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
    background: #111;
    color: #aaa;
    padding: 50px 0 30px 0;
    font-size: 14px;
    border-top: 5px solid #d32f2f;
    margin-top: 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.footer-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials .social-link {
    color: #aaa;
    border: 1px solid #333;
    padding: 8px;
    border-radius: 50%;
    transition: color 0.2s, border-color 0.2s;
}

.footer-socials .social-link:hover {
    color: #fff;
    border-color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.footer-copyright {
    color: #666;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-menu li a {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-menu li a:hover {
    color: #fff;
}

/* ==========================================
   NO CONTENT & UTILITIES
   ========================================== */
.no-posts {
    text-align: center;
    padding: 50px 0;
    font-family: 'Playfair Display', serif;
}

.no-posts h2 {
    font-size: 32px;
    color: #666;
}

/* ==========================================
   GOT A TIP? TEMPLATE LAYOUT
   ========================================== */
.tip-page-container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 50px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .tip-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.tip-content-left {
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.tip-main-title {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
}

.tip-intro-text p {
    margin-bottom: 20px;
}

.tip-back-link {
    display: inline-block;
    color: #d32f2f;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tip-back-link:hover {
    text-decoration: underline;
}

/* Tip submission form */
.tip-form-wrapper {
    background: #fdfdfd;
    border: 1px solid #eef0f2;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 14px;
    color: #111;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    border-radius: 4px;
    transition: border-color 0.2s;
    background-color: #fff;
    color: #111;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d32f2f;
    outline: none;
}

.tip-submit-btn {
    background-color: #8b0000; /* Dark red/brown button matching screenshot */
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.tip-submit-btn:hover {
    background-color: #d32f2f;
}

.tip-success-msg {
    background-color: #e8f5e9;
    border-left: 4px solid #2e7d32;
    color: #2e7d32;
    padding: 15px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.tip-error-msg {
    background-color: #ffebee;
    border-left: 4px solid #c62828;
    color: #c62828;
    padding: 15px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}

.tip-bullets {
    margin: 20px 0;
    padding-left: 20px;
}

.tip-bullets li {
    margin-bottom: 12px;
    list-style-type: disc;
}

/* Sidebar right trending styles */
.tip-sidebar-right {
    font-family: 'Inter', sans-serif;
}

.trending-sidebar-wrapper {
    /* No sticky position to avoid overlapping with other widgets in the sidebar */
}

.trending-section-title {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    border-bottom: 2px solid #111;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.trending-item:last-child {
    border-bottom: none;
}

.trending-title {
    font-size: 14px;
    line-height: 1.35;
    margin: 0;
    font-family: inherit;
    font-weight: 700;
}

.trending-title a {
    color: #111;
}

.trending-title a:hover {
    color: #d32f2f;
}

.trending-img-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 2px;
    height: 50px;
    width: 80px;
}

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

/* Scrollable Container */
.trending-scroll-container {
    max-height: 530px; /* Fits exactly 7 items based on item height */
    overflow-y: auto;
    padding-right: 8px;
}

/* Scrollbar styling */
.trending-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.trending-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.trending-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.trending-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* ==========================================
   HOMEPAGE TOP STORY SECTION (2 columns)
   ========================================== */
.home-top-section {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 45px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .home-top-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.top-story-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-story-label {
    font-size: 12px;
    font-weight: 800;
    color: #2e7d32; /* Green color for TOP STORY */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.top-story-title {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
}

.top-story-title a:hover {
    color: #d32f2f;
}

.top-story-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f0f0f0;
    border-radius: 2px;
}

.top-story-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-story-excerpt {
    font-family: Georgia, serif;
    font-size: 18px;
    line-height: 1.5;
    color: #111;
    margin: 0 0 15px 0;
    max-width: 650px;
}

.top-story-author {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

/* More News & Previous Link Styling */
.more-news-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.more-news-wrapper.single-link {
    justify-content: flex-end;
}

.prev-news-link,
.more-news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.prev-news-link svg,
.more-news-link svg {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prev-news-link:hover,
.more-news-link:hover {
    color: #2e7d32;
    border-bottom-color: #2e7d32;
}

.prev-news-link:hover svg {
    transform: translateX(-6px);
}

.more-news-link:hover svg {
    transform: translateX(6px);
}

/* ==========================================
   RECOMMEND FOR YOU SIDEBAR LAYOUT
   ========================================== */
.recommend-sidebar {
    font-family: 'Inter', sans-serif;
}

.recommend-section-title {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    border-bottom: 2px solid #111;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.01em;
}

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

/* Large Item at top */
.recommend-large-item {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.recommend-large-img-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 2px;
    margin-bottom: 12px;
}

.recommend-large-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend-large-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
}

.recommend-large-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.recommend-large-title a {
    color: #111;
}

.recommend-large-title a:hover {
    color: #2e7d32;
}

/* Small Items below */
.recommend-small-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    align-items: start;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 15px;
}

.recommend-small-item:last-child {
    border-bottom: none;
}

.recommend-small-img-wrapper {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 2px;
    width: 80px;
    height: 80px;
}

.recommend-small-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend-small-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111, #333);
}

.recommend-small-content {
    display: flex;
    flex-direction: column;
}

.recommend-small-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.recommend-small-title a {
    color: #111;
}

.recommend-small-title a:hover {
    color: #2e7d32;
}

/* Monospace Author Line */
.recommend-author {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* ==========================================
   RECOMMENDED FOR YOU (6 COLUMNS HORIZONTAL)
   ========================================== */
.recommended-carousel-section {
    margin-top: 50px;
    margin-bottom: 60px;
    border-top: 3px double #111;
    padding-top: 25px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.recommended-item {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
    padding-right: 15px;
}

.recommended-item:last-child {
    border-right: none;
    padding-right: 0;
}

.recommended-item-img-wrapper {
    position: relative;
    width: 100%;
    height: 110px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f7f7f7;
}

.recommended-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.recommended-item-img-wrapper img:hover {
    opacity: 0.95;
}

.recommended-fallback-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
}

.recommended-item-tag {
    font-size: 13px;
    font-weight: 700;
    color: #2e7d32;
    text-transform: capitalize;
    margin-bottom: 6px;
    display: inline-block;
}

.recommended-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    color: #111;
    margin: 0;
}

.recommended-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.recommended-item-title a:hover {
    color: #2e7d32;
}

/* Responsiveness for Recommended Grid */
@media (max-width: 1024px) {
    .recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .recommended-item {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .recommended-item:nth-child(3n) {
        border-right: none;
    }
    .recommended-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .recommended-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   REVIEWS SECTION (MOVIES, TV, BLANK COLUMNS)
   ========================================== */
.reviews-section {
    margin-top: 50px;
    margin-bottom: 60px;
    border-top: 3px double #111;
    padding-top: 30px;
}

.reviews-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 900;
    margin: 0 0 25px 0;
    color: #111;
    text-transform: capitalize;
}

.reviews-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

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

/* Vertical column border separators */
.reviews-col.movies-col {
    border-right: 1px solid #eee;
    padding-right: 25px;
}

.reviews-col.tv-col {
    border-right: none;
    padding-right: 0;
}

.reviews-col-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1.5px solid #111;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.reviews-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #d32f2f; /* bold red style */
    margin: 0;
    letter-spacing: 0.05em;
}

.reviews-see-all {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.reviews-see-all:hover {
    color: #111;
}

.reviews-list {
    display: flex;
    flex-direction: column;
}

.reviews-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 15px;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.reviews-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reviews-item-img-wrapper {
    position: relative;
    width: 100%;
    height: 75px;
    overflow: hidden;
    background: #f7f7f7;
}

.reviews-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.reviews-item-img-wrapper img:hover {
    opacity: 0.9;
}

.reviews-item-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
}

.reviews-item-content {
    display: flex;
    flex-direction: column;
}

.reviews-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px 0;
}

.reviews-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.reviews-item-title a:hover {
    color: #2e7d32;
}

.reviews-item-author {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* Responsiveness for Reviews Grid */
@media (max-width: 1024px) {
    .reviews-columns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .reviews-col.tv-col {
        border-right: none;
        padding-right: 0;
    }
    .reviews-col.awards-col {
        grid-column: span 2;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-columns-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .reviews-col.movies-col {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }
    .reviews-col.tv-col {
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }
    .reviews-col.awards-col {
        grid-column: span 1;
        border-top: none;
        padding-top: 0;
    }
}

/* ==========================================
   AWARDS COLUMN STYLING
   ========================================== */
.awards-list {
    display: flex;
    flex-direction: column;
}

.awards-large-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #eee;
}

.awards-large-img-wrapper {
    position: relative;
    width: 100%;
    height: 195px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f7f7f7;
}

.awards-large-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.awards-large-img-wrapper img:hover {
    opacity: 0.92;
}

.awards-large-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
}

.awards-large-title {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
    color: #111;
    margin: 0 0 10px 0;
}

.awards-large-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.awards-large-title a:hover {
    color: #2e7d32;
}

.awards-large-excerpt {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    line-height: 1.45;
    color: #333;
    font-weight: 500;
    font-weight: 500;
}

/* ==========================================
   BOX OFFICE & VIEWERSHIP SECTION
   ========================================== */
.boxoffice-viewership-section {
    margin-top: 40px;
    margin-bottom: 50px;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    padding-top: 30px;
    padding-bottom: 30px;
}

.boxoffice-grid {
    display: grid;
    grid-template-columns: 2.2fr 2.2fr 2fr;
    gap: 45px;
    padding-bottom: 30px;
    border-bottom: 1px solid #111;
}

/* Left side (large box office post) */
.boxoffice-left {
    border-right: 1px solid #eee;
    padding-right: 45px;
}

.boxoffice-large-item {
    display: flex;
    flex-direction: column;
}

.boxoffice-large-img-wrapper {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f7f7f7;
}

.boxoffice-large-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.boxoffice-large-img-wrapper img:hover {
    opacity: 0.92;
}

.boxoffice-fallback-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
}

.boxoffice-item-tag {
    font-size: 13px;
    font-weight: 700;
    color: #2e7d32;
    text-transform: capitalize;
    margin-bottom: 8px;
    display: inline-block;
}

.boxoffice-large-title {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.25;
    color: #111;
    margin: 0 0 10px 0;
}

.boxoffice-large-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.boxoffice-large-title a:hover {
    color: #2e7d32;
}

.boxoffice-large-excerpt {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.45;
    color: #333;
    margin-bottom: 12px;
}

.boxoffice-item-author {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

/* Right side (3 small text box office posts) */
.boxoffice-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.boxoffice-list-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.boxoffice-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.boxoffice-list-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    color: #111;
    margin: 0 0 8px 0;
}

.boxoffice-list-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.boxoffice-list-title a:hover {
    color: #2e7d32;
}

/* Viewership Row (Down Part - Text Left, Image Right) */
.viewership-row {
    display: grid;
    grid-template-columns: 2.2fr 2.2fr 2fr;
    gap: 45px;
    padding-top: 30px;
}

.viewership-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.viewership-tag {
    font-size: 13px;
    font-weight: 700;
    color: #2e7d32;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.viewership-title {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.25;
    color: #111;
    margin: 0 0 10px 0;
}

.viewership-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.viewership-title a:hover {
    color: #2e7d32;
}

.viewership-excerpt {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.45;
    color: #333;
    margin-bottom: 12px;
}

.viewership-author {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.viewership-right {
    position: relative;
}

.viewership-img-wrapper {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #f7f7f7;
}

.viewership-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.viewership-img-wrapper img:hover {
    opacity: 0.92;
}

.viewership-fallback-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
}

/* Green circular badge (Critics pick style) */
.critic-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 76px;
    height: 76px;
    background: #2e7d32;
    color: #fff;
    font-family: 'Inter', sans-serif;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

/* Responsive styles for Box Office & Viewership section */
@media (max-width: 1024px) {
    .boxoffice-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .boxoffice-left {
        padding-right: 30px;
    }
    .boxoffice-right {
        border-right: none;
        padding-right: 0;
    }
    .boxoffice-blank {
        display: none;
    }
    .viewership-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .viewership-left {
        border-right: none;
        padding-right: 0;
    }
    .viewership-right {
        border-right: none;
        padding-right: 0;
    }
    .viewership-blank {
        display: none;
    }
}

@media (max-width: 768px) {
    .boxoffice-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .boxoffice-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }
    .viewership-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .viewership-left {
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }
    .viewership-right {
        order: -1; /* Place image on top on mobile */
    }
}

/* Single Post, Comment Form & Essential Reads Sidebar Styles */
.post-category-tag-single {
    color: #d32f2f;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
}

.post-category-tag-single a {
    color: #d32f2f;
    text-decoration: none;
}

.post-category-tag-single a:hover {
    text-decoration: underline;
}

/* Related Posts ("You may also like") */
.related-posts-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #111;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

.related-item {
    display: flex;
    flex-direction: column;
}

.related-img-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 15px;
}

.related-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-img-wrapper img {
    transform: scale(1.05);
}

.related-post-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.related-post-title a {
    color: #111;
    text-decoration: none;
}

.related-post-title a:hover {
    color: #d32f2f;
}

.related-post-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    margin-bottom: 5px;
}

.related-post-comments {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #888;
}

/* Comment Form & Comments List Styling */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    font-family: 'Inter', sans-serif;
}

.comment-reply-title {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #111;
}

.comment-notes {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
}

.comment-form-comment {
    margin-bottom: 20px;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.comment-form-comment textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
    resize: vertical;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus {
    border-color: #d32f2f;
}

.comment-form-author-email {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .comment-form-author-email {
        grid-template-columns: 1fr;
    }
}

.comment-form-author input,
.comment-form-email input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.4;
}

.comment-form-cookies-consent input {
    margin-top: 3px;
}

/* Sidebar Essential Reads Styling */
.essential-sidebar-title-wrapper {
    border-bottom: 3px solid #111;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.essential-sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.05em;
}

.essential-reads-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.essential-read-item-large {
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.essential-large-img-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
    margin-bottom: 15px;
}

.essential-large-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.essential-large-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.essential-large-title a {
    color: #111;
    text-decoration: none;
}

.essential-large-title a:hover {
    color: #d32f2f;
}

.essential-large-author {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

.essential-read-item-small {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.essential-read-item-small:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.essential-small-img-wrapper {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
    width: 90px;
    height: 90px;
}

.essential-small-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.essential-small-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 5px 0;
}

.essential-small-title a {
    color: #111;
    text-decoration: none;
}

.essential-small-title a:hover {
    color: #d32f2f;
}

.essential-small-author {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}



