/* ReviewLoogy Custom Styles */
:root {
  --brand: #FC9601;
  --text-blue: #111184;
  --text-body: #6C757D;
  --white: #ffffff;
  --gray-light: #dee2e6;
  --gray-lighter: #f8f9fa;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-width: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--gray-lighter);
  color: var(--text-body);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Bar */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--text-blue);
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.top-bar-nav a {
  color: var(--text-blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 12px;
  border-right: 1px solid var(--text-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar-nav a:last-child {
  border-right: none;
}

.top-bar-nav a:hover {
  color: var(--brand);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-main {
  font-weight: 900;
  font-size: 32px;
  color: var(--brand);
  text-transform: none;
  text-decoration: none;
}

.logo-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Main Menu */
.main-menu {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 0;
}

.main-menu-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.main-menu-list a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-blue);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.main-menu-list a:hover {
  color: var(--brand);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--text-blue), #0a0a6e);
  padding: 48px 0;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title a {
  color: var(--white);
  text-decoration: none;
}

.hero-title a:hover {
  color: var(--brand);
}

.hero-excerpt {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.hero-meta-author {
  color: var(--brand);
  font-weight: 600;
}

.hero-img-wrap {
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: #fffdf0;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Category Boxes */
.category-boxes {
  background: var(--white);
  padding: 30px 0;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.category-box {
  background: var(--text-blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.category-box:hover {
  background: var(--brand);
  color: var(--text-blue);
  transform: translateY(-2px);
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(17,17,132,0.12);
}

.post-card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #fffdf0;
  border-radius: 16px 16px 0 0;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  position: relative;
  z-index: 1;
}

.post-card:hover .post-card-thumb img {
  transform: scale(1.05);
}

.post-card-cat {
  display: inline-block;
  background: var(--text-blue);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  transition: background 0.2s, color 0.2s;
}
.post-card-cat:hover {
  background: var(--brand);
  color: var(--text-blue) !important;
}

.post-card-body {
  padding: 20px;
}

.post-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-blue);
  margin-bottom: 10px;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
}

.post-card-title a:hover {
  color: var(--brand);
}

.post-card-excerpt {
  font-size: 14px;
  color: var(--text-blue);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
}

.post-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
}

.read-arrow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-blue);
  font-weight: 600;
  text-decoration: none;
}

.read-arrow:hover {
  color: var(--brand);
}

/* Sidebar */
.main-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  margin: 40px 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.sidebar-widget-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-blue);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  margin-bottom: 18px;
}

.sidebar-search {
  display: flex;
  border: 2px solid var(--text-blue);
  border-radius: 40px;
  overflow: hidden;
  background: white;
}

.sidebar-search input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 14px;
}

.sidebar-search button {
  background: var(--text-blue);
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 16px;
}

.sidebar-search button:hover {
  background: var(--brand);
  color: var(--text-blue);
}

/* Partner Deals */
.partner-deals-box {
  background: linear-gradient(135deg, var(--text-blue), #0a0a6e);
  border-radius: 16px;
  overflow: hidden;
}

.partner-deals-header {
  background: var(--brand);
  padding: 14px 18px;
}

.partner-deals-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-blue);
}

.deal-item {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.deal-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 6px;
}

.deal-item-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.4;
}

.deal-btn {
    display: inline-block;
    background: var(--brand) !important;
    color: var(--text-blue) !important;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.deal-btn:hover {
    opacity: 0.85;
    background: var(--brand) !important;
    color: var(--text-blue) !important;
}

/* Follow Us */
.follow-us-widget {
  background: linear-gradient(135deg, var(--text-blue), #0a0a6e);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.follow-us-header {
  background: var(--brand);
  padding: 14px 18px;
}

.follow-us-title {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-blue);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 24px;
}

.social-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 22px;
}

.social-icon:hover {
  background: var(--brand);
  color: var(--text-blue);
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background: var(--white);
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-light);
}

.footer-logo-text {
  font-weight: 900;
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-blue);
  max-width: 280px;
}

.footer-col-title {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-blue) !important;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-family: monospace;
    font-size: 12px;
    color: var(--text-blue) !important;
    border-top: 1px solid #dee2e6;
    margin-top: 40px;
}

.footer-bottom a {
    color: var(--text-blue);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--brand);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .main-content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-desc {
    margin: 0 auto;
  }
  .top-bar .container {
    justify-content: center;
  }
  .main-menu-list {
    gap: 16px;
  }
  .main-menu-list a {
    font-size: 11px;
  }
  .category-box {
    padding: 8px 16px;
    font-size: 11px;
  }
}
/* ============================================
   GLOBAL TYPOGRAPHY OVERRIDE
   Forces consistent font, size, and spacing
   ============================================ */

/* Force all body text to use consistent styling */
body, 
.post-body, 
.post-content, 
article, 
main,
.post-card,
.single-post,
.page-content,
.blog-post {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #333333 !important;
}

/* Paragraph spacing */
p {
  margin-bottom: 1.5em !important;
}

/* Headlines */
h1, .h1 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 0.75em !important;
  color: #111184 !important;
}

h2, .h2 {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.6em !important;
  color: #111184 !important;
}

h3, .h3 {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 0.5em !important;
  color: #111184 !important;
}

h4, .h4 {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 0.4em !important;
  color: #333333 !important;
}

/* Lists */
ul, ol {
  margin-bottom: 1.2em !important;
  padding-left: 1.8em !important;
}

li {
  margin-bottom: 0.3em !important;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid #FC9601 !important;
  padding: 0.8em 1.2em !important;
  margin: 1.5em 0 !important;
  font-style: italic !important;
  background: rgba(252,150,1,0.05) !important;
  border-radius: 0 8px 8px 0 !important;
}

/* Links */
a {
  color: #FC9601 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

a:hover {
  color: #111184 !important;
}

/* Images */
img {
  max-width: 100% !important;
  height: auto !important;
  margin: 1.5em 0 !important;
  border-radius: 12px !important;
}
/* ============================================
   COPY PROTECTION
   Prevents text selection and right-click on images
   ============================================ */

/* Prevent text selection on the entire site */
body {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* Allow text selection on input fields (search, comments, forms) */
input, 
textarea, 
select,
[contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
/* Top Bar Date Styling */
.top-bar-date-wrapper {
  background: var(--white);
  padding: 12px 0 12px 0;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.top-bar-date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-blue) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
}
/* Hero Section Headline Fix */
.hero-title a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.hero-title a:hover {
  color: #FC9601 !important;
  text-decoration: none !important;
}

/* Mobile tap highlight fix */
.hero-title a:active {
  color: #FC9601 !important;
}
/* Force hero link color on all states */
.hero-title a,
.hero-title a:link,
.hero-title a:visited,
.hero-title a:hover,
.hero-title a:focus,
.hero-title a:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

.hero-title a:hover {
  color: #FC9601 !important;
}
/* Mobile Hero Section: Image Above Text */
@media (max-width: 768px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
  }
  
  .hero-img-wrap {
    order: -1;
    margin-bottom: 20px;
  }
  
  .hero-main {
    order: 2;
  }
}
/* ============================================
   ADVERTISEMENT SPACES
   ============================================ */

/* Ad container wrapper */
.ad-container {
  text-align: center;
  margin: 20px 0;
}

.ad-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  opacity: 0.6;
}

.ad-placeholder {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border: 1px dashed var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
}

/* Header Ad */
.ad-header {
  margin: 16px 0;
}
.ad-header .ad-placeholder {
  min-height: 90px;
  max-width: 728px;
  margin: 0 auto;
}

/* Sidebar Ads */
.ad-sidebar-top {
  margin-bottom: 0;
}
.ad-sidebar-top .ad-placeholder {
  min-height: 250px;
  width: 100%;
}

.ad-sidebar-sticky {
  position: sticky;
  top: 100px;
}
.ad-sidebar-sticky .ad-placeholder {
  min-height: 600px;
  width: 100%;
}

/* In-Article Ads */
.ad-in-article {
  margin: 32px 0;
}
.ad-in-article .ad-placeholder {
  min-height: 90px;
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
}

/* Footer Ad */
.ad-footer {
  margin: 24px 0;
}
.ad-footer .ad-placeholder {
  min-height: 90px;
  max-width: 728px;
  margin: 0 auto;
}

/* Mobile Sticky Ad */
.ad-mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--brand);
  padding: 8px;
  z-index: 1000;
  display: none;
}

.ad-mobile-sticky .ad-placeholder {
  min-height: 50px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ad-mobile-sticky {
    display: block;
  }
}

/* Mobile sticky ad close button */
.ad-mobile-sticky-close {
  position: absolute;
  top: -15px;
  right: 5px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ============================================
   SHARE BUTTONS
   ============================================ */

.share-section {
    margin: 40px 0 20px;
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.share-title {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111184;
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.4;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* Platform colors */
.share-whatsapp { background-color: #25D366; }
.share-facebook { background-color: #1877F2; }
.share-twitter { background-color: #000000; }  /* Changed to black */
.share-linkedin { background-color: #0077B5; }
.share-copy { background-color: #6C757D; }

/* Ensure all button text is white */
.share-btn {
    color: white !important;
}

/* Copy notification */
.copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #111184;
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.copy-notification.show {
    opacity: 1;
}

@media (max-width: 600px) {
    .share-buttons {
        gap: 8px;
    }
    .share-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}
/* Contact Form Styling */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-body);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(252,150,1,0.1);
}

.submit-btn {
    background: var(--brand);
    color: var(--text-blue);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: var(--text-blue);
    color: var(--white);
    transform: translateY(-2px);
}

#formStatus {
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

#formStatus.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formStatus.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .submit-btn {
        width: 100%;
        text-align: center;
    }
}
/* Contact Form - Improved Layout */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-blue);
    margin-bottom: 16px;
}

.contact-form-container > p {
    color: var(--text-body);
    margin-bottom: 32px;
    border-left: 3px solid var(--brand);
    padding-left: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-body);
    background: var(--white);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(252,150,1,0.1);
}

.turnstile-wrapper {
    margin: 24px 0;
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: var(--brand);
    color: var(--text-blue);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--text-blue);
    color: var(--white);
    transform: translateY(-2px);
}

#formStatus {
    margin-top: 24px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    text-align: center;
}

#formStatus.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formStatus.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 700px) {
    .contact-form-container {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .submit-btn {
        width: 100%;
    }
}
/* ============================================
   HAMBURGER MENU FOR MOBILE
   ============================================ */

/* Hide desktop main menu on mobile, show hamburger */
@media (max-width: 768px) {
    .main-menu-list {
        display: none;
    }
}

/* Hamburger button styles */
.nav-toggle {
    display: none;
    background: var(--text-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 12px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
}

/* Navigation Drawer */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.nav-overlay.open {
    display: block;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-drawer.open {
    right: 0;
}

.nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.nav-drawer-logo {
    font-weight: bold;
    font-size: 18px;
    color: var(--brand);
}

.nav-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
}

.nav-section-label {
    font-weight: bold;
    padding: 15px 20px 5px;
    font-size: 12px;
    color: var(--brand);
    text-transform: uppercase;
}

.nav-links {
    padding: 0 20px 10px;
}

.nav-links a {
    display: block;
    padding: 10px 0;
    color: var(--text-blue);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--brand);
}

.nav-drawer-footer {
    padding: 20px;
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    border-top: 1px solid var(--gray-light);
    margin-top: 20px;
}
/* Hard Copy Protection - Global */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Allow text selection only on form inputs */
input, select, textarea, button {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Disable image dragging */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}
/* Post Navigation Links */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  font-size: 16px;
}

.nav-link {
  color: #FC9601;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #e08500;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}
/* Mobile Nav Drawer Redesign */
@media (max-width: 768px) {

  /* Logo Section — white background */
  .nav-drawer-logo-section {
    position: relative;
    background: var(--white);
    padding: 24px 20px 16px;
    border-bottom: 2px solid var(--text-blue);
  }
  .nav-drawer-logo-main {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand);
    font-family: var(--font-serif, 'Playfair Display', serif);
    text-decoration: underline;
  }
  .nav-drawer-logo-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-blue);
    letter-spacing: 0.08em;
    margin-top: 4px;
  }
  .nav-drawer-logo-section .nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    color: var(--text-blue);
  }

  /* Nav Links Section — blue background, white text */
  .nav-drawer-links-section {
    background: var(--text-blue);
    padding: 8px 0;
  }
  .nav-drawer-links-section a {
    display: block;
    padding: 11px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-drawer-links-section a:last-child {
    border-bottom: none;
  }
  .nav-drawer-links-section a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--brand);
  }

  /* Divider between main and secondary links */
  .nav-drawer-divider {
    background: var(--text-blue);
    border-top: 2px solid rgba(255,255,255,0.25);
  }

  /* Footer Section — white background */
  .nav-drawer-footer-section {
    background: var(--white);
    padding: 20px 24px;
    border-top: 2px solid var(--text-blue);
    text-align: center;
    font-size: 11px;
    color: var(--gray);
    line-height: 2;
  }
  .nav-drawer-footer-section .footer-bottom {
    font-size: 11px;
    color: var(--gray);
  }
  .nav-drawer-footer-section a {
    color: var(--brand);
    text-decoration: none;
  }
  .nav-drawer-footer-section a:hover {
    text-decoration: underline;
  }
}
/* Post page category badge */
.post-category-link {
  display: inline-block;
  background: var(--text-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  transition: background 0.2s, color 0.2s;
}
.post-category-link:hover {
  background: var(--brand);
  color: var(--text-blue);
}
/* Hero category pill */
.hero-cat-pill {
  display: inline-block;
  background: var(--white);
  color: var(--text-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 0;
  color: var(--brand);
}
.breadcrumbs a {
  color: var(--brand);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  color: var(--brand);
}
/* Floating Page Up and Back Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--text-blue);
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-btn:hover {
  background: var(--text-blue);
  color: var(--white);
  transform: scale(1.1);
}
/* Related Stories */
.related-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand);
}

/* Mid Article Related */
.related-mid {
  margin: 40px 0;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 16px;
}
.related-grid-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card-mid {
  text-decoration: none;
  display: block;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-card-mid:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.related-card-mid-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 0;
  overflow: hidden;
  background: #fffdf0;
  margin-bottom: 0;
}
.related-card-mid-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-blue);
  line-height: 1.4;
  padding: 16px;
}
.related-card-mid:hover .related-card-mid-title {
  color: var(--brand);
}
.related-card-mid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card-mid-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(252,150,1,0.3);
}
.related-cat-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--text-blue);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.related-card-mid-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-blue);
  line-height: 1.4;
}
.related-card-mid:hover .related-card-mid-title {
  color: var(--brand);
}

/* Footer Related Stories */
.related-footer-section {
  background: #f8f9fa;
  padding: 40px 0;
  margin-bottom: 0;
}
.related-grid-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card-footer {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-card-footer:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.related-card-footer a {
  text-decoration: none;
  display: block;
}
.related-card-footer-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #fffdf0;
}
.related-card-footer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.related-card-footer:hover img {
  transform: scale(1.05);
}
.related-card-footer-body {
  padding: 16px;
}
.related-card-footer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-blue);
  line-height: 1.4;
  margin-bottom: 8px;
}
.related-card-footer:hover .related-card-footer-title {
  color: var(--brand);
}
.related-card-footer-excerpt {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
}

/* Mobile responsive for related sections */
@media (max-width: 768px) {
  .related-grid-mid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .related-card-mid {
    min-width: 220px;
    max-width: 220px;
    scroll-snap-align: start;
    flex-shrink: 0;
    overflow: hidden;
  }
  .related-card-mid-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
  }
  .related-card-mid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .related-card-mid-title {
    font-size: 12px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .related-grid-footer {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .related-card-footer {
    min-width: 240px;
    max-width: 240px;
    scroll-snap-align: start;
    flex-shrink: 0;
    overflow: hidden;
  }
  .related-card-footer-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .related-card-footer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .related-card-footer-title {
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
/* Content Reveal Buttons */
.content-reveal-btn-wrap {
  text-align: center;
  margin: 24px 0;
}
.content-reveal-btn {
  background: var(--brand);
  color: var(--text-blue);
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(252,150,1,0.3);
}
.content-reveal-btn:hover {
  background: var(--text-blue);
  color: var(--white);
  transform: translateY(-2px);
}
/* Featured Row */
.posts-column {
  min-width: 0;
}
.featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.featured-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.featured-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #fffdf0;
}
.featured-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.featured-card:hover img {
  transform: scale(1.05);
}
.featured-card-thumb .post-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(252,150,1,0.3);
}
.featured-card-body {
  padding: 20px;
}
.featured-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-blue);
  margin-bottom: 10px;
}
.featured-card-title a {
  color: inherit;
  text-decoration: none;
}
.featured-card-title a:hover {
  color: var(--brand);
}
.featured-card-excerpt {
  font-size: 14px;
  color: var(--text-blue);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-card-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  margin: 32px 0 24px;
  gap: 16px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gray-light);
}
.section-divider-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .featured-row {
    grid-template-columns: 1fr;
  }
  .main-content-wrapper {
    grid-template-columns: 1fr;
  }
}
/* Category Sections */
.category-section {
  margin-bottom: 48px;
}
.section-divider {
  display: flex;
  align-items: center;
  margin: 32px 0 24px;
  gap: 16px;
}
.section-divider::before {
  content: '';
  flex: 0 0 4px;
  height: 24px;
  background: var(--brand);
  border-radius: 2px;
}
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gray-light);
}
.section-divider-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}
.section-divider-title:hover {
  color: var(--brand);
}
.section-view-all {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-view-all:hover {
  text-decoration: underline;
}
.category-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .category-posts-grid {
    grid-template-columns: 1fr;
  }
}
