/*
Theme Name:        Pooja Batra Official
Theme URI:         https://poojabatra.com
Author:            Anant Verma (codemap)
Author URI:        https://codemap.in
Description:       A bespoke, high-contrast minimal theme designed exclusively for Pooja Batra. Optimized for Elementor with a focus on sophisticated typography and a monochrome aesthetic.
Version:           1.1.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      7.4
Text Domain:       poojabatra
Tags:              black-and-white, custom-menu, elementor, one-column, full-width-template, portfolio

-----------------------------------------------------------
LICENSE & COPYRIGHT
-----------------------------------------------------------
License:           Proprietary. Solely licensed to poojabatra.com.
License URI:       https://poojabatra.com/terms
Copyright:         (c) 2026 Anant Verma. All rights reserved.
Redistribution, resale, or sharing of this theme, in whole
or in part, is strictly prohibited.

-----------------------------------------------------------
DEVELOPER ADVISORY
-----------------------------------------------------------
Developer:         Anant Verma
Agency:            CodeMap (https://codemap.in)
Contact:           anant@codemap.in | contact@codemap.in
WhatsApp:          +91-9584830679
Credits:           Designed & Developed by Anant Verma
*/

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #666666;
}

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

/* Screen reader text - hidden visually, visible to SEO & assistive tech */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ===========================
   HEADER - TOP BAR
   =========================== */
.top-bar {
  background: #1a1a2e;
  padding: 8px 0;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar .social-icons {
  display: flex;
  gap: 12px;
  list-style: none;
}

.top-bar .social-icons a {
  color: #ffffff;
  font-size: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.top-bar .social-icons a:hover {
  background: #ffffff;
  color: #1a1a2e;
  border-color: #ffffff;
}

/* ===========================
   HEADER - BRANDING
   =========================== */
.site-branding {
  background: #ffffff;
  text-align: center;
  padding: 40px 20px 25px;
}

.site-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 6px;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}

.site-title a {
  color: #1a1a2e;
  text-decoration: none;
}

.site-title a:hover {
  color: #1a1a2e;
}

.site-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #7a8a9a;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===========================
   HEADER - DIVIDERS
   =========================== */
.header-divider {
  border: none;
  border-top: 1px solid #cccccc;
  margin: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   HEADER - NAVIGATION
   =========================== */
.main-navigation {
  background: #ffffff;
  padding: 18px 20px;
  text-align: center;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a2e;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a {
  color: #7a8a9a;
}

/* Sub-menus */
.main-navigation ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #eeeeee;
  min-width: 200px;
  padding: 10px 0;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.main-navigation ul li:hover > ul {
  display: flex;
}

.main-navigation ul li ul li a {
  padding: 8px 20px;
  display: block;
  font-size: 11px;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid #1a1a2e;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a2e;
  cursor: pointer;
  margin: 0 auto;
}

/* ===========================
   CONTENT AREA
   =========================== */
.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  min-height: 50vh;
}

.site-content.full-width {
  max-width: 100%;
  padding: 0;
}

/* Elementor override - ensure full width works */
.elementor-page .site-content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.entry-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

.entry-content p {
  margin-bottom: 1.5em;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #1a1a2e;
  color: #ffffff;
  padding: 0;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-branding {
  flex: 1;
  min-width: 200px;
}

.footer-site-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  margin: 0;
}

.footer-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 5px;
}

.footer-links {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

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

.footer-menu li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-social {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 200px;
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social .social-icons a {
  color: #ffffff;
  font-size: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
  background: #ffffff;
  color: #1a1a2e;
  border-color: #ffffff;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  text-align: left;
}

.footer-copyright {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* ===========================
   PAGE TITLE BANNER
   =========================== */
.page-title-banner {
  background: #f5f5f5;
  padding: 55px 20px;
  text-align: center;
  width: 100%;
}

.page-title-banner-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-title-banner-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 6px;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}

.page-title-banner-subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #7a8a9a;
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-title-banner {
    padding: 35px 20px;
  }
  .page-title-banner-title {
    font-size: 28px;
    letter-spacing: 4px;
  }
}

/* ===========================
   FULL WIDTH PADDED TEMPLATE
   =========================== */
.site-content.full-width-padded {
  max-width: 100%;
  padding: 40px 60px;
}

/* ===========================
   HEADER STYLE 2 - MINIMAL (Nav Only)
   =========================== */
.header-minimal {
  border-bottom: 1px solid #cccccc;
}

.nav-minimal {
  background: #ffffff;
  padding: 0;
}

.nav-minimal .nav-minimal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-minimal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.nav-minimal ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a2e;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-minimal ul li a:hover,
.nav-minimal ul li.current-menu-item a,
.nav-minimal ul li.current_page_item a {
  color: #7a8a9a;
}

/* Sub-menus for minimal header */
.nav-minimal ul li {
  position: relative;
}

.nav-minimal ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #eeeeee;
  min-width: 200px;
  padding: 10px 0;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-minimal ul li:hover > ul {
  display: flex;
}

.nav-minimal ul li ul li a {
  padding: 8px 20px;
  display: block;
  font-size: 11px;
}

/* ===========================
   BLOG GRID
   =========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.blog-card {
  border: 1px solid #1a1a2e;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.blog-card-no-image span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: #cccccc;
  letter-spacing: 3px;
}

.blog-card-content {
  padding: 22px 24px 26px;
}

.blog-card-date {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a8a9a;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.blog-card-title a {
  color: #1a1a2e;
  text-decoration: none;
}

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

.blog-card-excerpt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 16px;
}

.blog-card-excerpt p {
  margin: 0;
}

.blog-card-read-more {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-read-more:hover {
  color: #7a8a9a;
}

/* Blog Pagination */
.blog-pagination {
  margin-top: 40px;
  text-align: center;
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.blog-pagination .nav-links a,
.blog-pagination .nav-links span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid #1a1a2e;
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-pagination .nav-links a:hover,
.blog-pagination .nav-links .current {
  background: #1a1a2e;
  color: #ffffff;
}

/* Page Title for blog page */
.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 30px;
  color: #1a1a2e;
}

/* ===========================
   SINGLE POST
   =========================== */
.single-post-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-featured-image {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-entry-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
}

.single-entry-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a8a9a;
  text-align: center;
  margin-bottom: 35px;
}

.single-entry-meta a {
  color: #7a8a9a;
  text-decoration: none;
}

.single-entry-meta a:hover {
  color: #1a1a2e;
}

.single-entry-meta .meta-sep {
  margin: 0 8px;
}

/* Share Bar */
.single-share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 0;
  margin-bottom: 35px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.share-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a8a9a;
}

.share-links {
  display: flex;
  gap: 10px;
}

.share-links a {
  color: #1a1a2e;
  font-size: 13px;
  width: 30px;
  height: 30px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-links a:hover {
  background: #1a1a2e;
  color: #ffffff;
  border-color: #1a1a2e;
}

.single-entry-content {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  text-align: justify;
}

.single-entry-content p {
  margin-bottom: 1.5em;
}

.single-entry-content h2,
.single-entry-content h3,
.single-entry-content h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1a1a2e;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-align: left;
}

.single-entry-content img {
  margin: 1.5em 0;
}

.single-entry-content blockquote {
  border-left: 3px solid #1a1a2e;
  margin: 1.5em 0;
  padding: 15px 25px;
  font-style: italic;
  color: #555555;
  background: #fafafa;
}

/* Post Navigation: Prev / Next */
.post-navigation-section {
  margin-top: 50px;
}

.post-nav-divider {
  border: none;
  border-top: 1px solid #cccccc;
  margin: 0 0 25px 0;
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.post-nav-prev,
.post-nav-next {
  flex: 1;
}

.post-nav-next {
  text-align: right;
}

.post-nav-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a8a9a;
  display: block;
  margin-bottom: 6px;
}

.post-nav-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a2e;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.post-nav-title:hover {
  color: #7a8a9a;
}

/* Related Posts */
.related-posts-section {
  margin-top: 30px;
  margin-bottom: 20px;
}

.related-posts-heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 20px;
  text-align: center;
}

.related-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-post-item {
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eeeeee;
}

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

.related-post-date {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #7a8a9a;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 80px;
}

.related-post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a2e;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.related-post-title:hover {
  color: #7a8a9a;
}

/* ===========================
   FILMOGRAPHY TABLES
   =========================== */
.filmography-table table {
  border-collapse: collapse;
  width: 100%;
}

.filmography-table thead tr {
  background: #1a1a2e !important;
}

.filmography-table thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
  padding: 12px 16px !important;
  border: none !important;
}

.filmography-table tbody td {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 16px !important;
  border-bottom: 1px solid #eeeeee !important;
  color: #333333;
  vertical-align: middle;
}

.filmography-table tbody tr:hover {
  background: #f5f5f5 !important;
}

.filmography-table tbody td a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.filmography-table tbody td a:hover {
  color: #7a8a9a;
}

.filmography-table tbody td strong a {
  font-weight: 600;
}

/* ===========================
   WPFORMS - BLACK & WHITE STYLE
   =========================== */
.wpforms-container {
  font-family: 'Montserrat', Arial, sans-serif !important;
}

.wpforms-container .wpforms-field-label {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #1a1a2e !important;
  margin-bottom: 6px !important;
}

.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container textarea,
.wpforms-container select {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 14px !important;
  border: 1px solid #cccccc !important;
  border-radius: 0 !important;
  padding: 12px 16px !important;
  background: #ffffff !important;
  color: #333333 !important;
  transition: border-color 0.3s ease !important;
}

.wpforms-container input[type="text"]:focus,
.wpforms-container input[type="email"]:focus,
.wpforms-container textarea:focus {
  border-color: #1a1a2e !important;
  outline: none !important;
  box-shadow: none !important;
}

.wpforms-container textarea {
  min-height: 120px !important;
}

.wpforms-container button[type="submit"],
.wpforms-container .wpforms-submit {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  background: #1a1a2e !important;
  color: #ffffff !important;
  border: 2px solid #1a1a2e !important;
  border-radius: 0 !important;
  padding: 14px 40px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: block !important;
  margin: 10px auto 0 !important;
}

.wpforms-container button[type="submit"]:hover,
.wpforms-container .wpforms-submit:hover {
  background: #ffffff !important;
  color: #1a1a2e !important;
}

.wpforms-container .wpforms-required-label {
  color: #1a1a2e !important;
}

.wpforms-confirmation-container-full {
  font-family: 'Montserrat', Arial, sans-serif !important;
  text-align: center !important;
  border: 1px solid #1a1a2e !important;
  border-radius: 0 !important;
  padding: 30px !important;
  background: #f5f5f5 !important;
}

/* Social card hover */
.social-card {
  transition: all 0.3s ease;
}

.social-card:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.social-card a {
  text-decoration: none;
  color: #1a1a2e;
}

.social-card a:hover {
  color: #555555;
}

/* Fans latest posts */
.fans-latest-posts {
  list-style: none !important;
  padding: 0 !important;
}

.fans-latest-posts li {
  padding: 14px 0 !important;
  border-bottom: 1px solid #eeeeee !important;
}

.fans-latest-posts li:last-child {
  border-bottom: none !important;
}

.fans-latest-posts li a {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 17px !important;
  color: #1a1a2e !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.fans-latest-posts li a:hover {
  color: #7a8a9a !important;
}

.fans-latest-posts time {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #7a8a9a !important;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .site-title {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .site-tagline {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation ul {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .main-navigation ul.toggled {
    display: flex;
  }

  .main-navigation ul li a {
    padding: 10px 0;
    display: block;
  }

  .main-navigation ul li ul {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-branding,
  .footer-links,
  .footer-social {
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  /* Single post responsive */
  .single-entry-title {
    font-size: 26px;
  }

  .post-nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .post-nav-next {
    text-align: left;
  }

  .related-post-item {
    flex-direction: column;
    gap: 4px;
  }

  /* Blog grid responsive */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Padded template responsive */
  .site-content.full-width-padded {
    padding: 30px 20px;
  }

  /* Minimal nav responsive */
  .nav-minimal ul {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .nav-minimal ul.toggled {
    display: flex;
  }

  .nav-minimal ul li a {
    padding: 10px 0;
    display: block;
  }

  .nav-minimal ul li ul {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
