/*
Theme Name: IndiAuto
Theme URI: https://example.com/indiauto
Author: Custom Theme
Author URI: https://example.com
Description: A vibrant, India-inspired WordPress theme for automotive blogs, car reviews, and mobility magazines. Featuring a saffron-and-green tri-color design, full-width layout, custom logo, menus, and footer.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: indiauto
Tags: blog, one-column, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready, block-styles, wide-blocks
*/

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --ia-saffron: #FF6B35;
  --ia-saffron-dark: #E14F1B;
  --ia-saffron-light: #FFF1E8;
  --ia-green: #138808;
  --ia-green-dark: #0D6605;
  --ia-green-light: #E8F5E5;
  --ia-navy: #0A2463;
  --ia-navy-light: #1E3A8A;
  --ia-cream: #FFF8F0;
  --ia-bg: #FFFFFF;
  --ia-text: #1a1a1a;
  --ia-muted: #6B7280;
  --ia-border: #EEEEEE;
  --ia-shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --ia-shadow: 0 4px 16px rgba(0,0,0,.08);
  --ia-shadow-lg: 0 12px 32px rgba(0,0,0,.12);
  --ia-radius: 12px;
  --ia-radius-sm: 6px;
  --ia-container: 1400px;
  --ia-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ia-font-heading: 'Poppins', 'Inter', sans-serif;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ia-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ia-text);
  background: var(--ia-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ia-saffron); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ia-saffron-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ia-font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6em;
  color: var(--ia-navy);
}

/* ============================================================
   TRI-COLOR ACCENT BAR
   ============================================================ */
.ia-tricolor {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right,
    var(--ia-saffron) 0%,
    var(--ia-saffron) 33.33%,
    #FFFFFF 33.33%,
    #FFFFFF 66.66%,
    var(--ia-green) 66.66%,
    var(--ia-green) 100%);
  position: relative;
  z-index: 100;
}
.ia-tricolor::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ia-navy);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--ia-navy);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.ia-container {
  width: 100%;
  max-width: var(--ia-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ia-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.ia-content-area {
  flex: 1 0 auto;
  padding: 56px 0;
  display: block;
}

.ia-layout {
  display: block;
  width: 100%;
}

.ia-layout.has-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.ia-layout.has-sidebar .ia-main {
  flex: 1 1 640px;
  min-width: 0;
}
.ia-layout.has-sidebar .ia-sidebar {
  flex: 0 1 320px;
  min-width: 260px;
}

.ia-main { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.ia-header {
  background: #fff;
  border-bottom: 1px solid var(--ia-border);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow .25s ease;
}
.ia-header.no-sticky { position: static; }
.ia-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.ia-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}

/* ---------- Branding ---------- */
.ia-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
}
.ia-branding img { max-height: 52px; width: auto; }

.ia-logo-wheel {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.ia-branding:hover .ia-logo-wheel { transform: rotate(360deg); }

.ia-site-title {
  font-family: var(--ia-font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -.5px;
  color: var(--ia-navy);
  line-height: 1.15;
}
.ia-site-title a { color: inherit; }
.ia-site-title a:hover { color: var(--ia-saffron); }
.ia-site-title .ia-accent { color: var(--ia-saffron); }

.ia-site-description {
  margin: 2px 0 0;
  font-size: .82rem;
  color: var(--ia-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Navigation ---------- */
.ia-nav { flex: 1 1 auto; }
.ia-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}
.ia-nav li { position: relative; }
.ia-nav a {
  color: var(--ia-navy);
  font-family: var(--ia-font-heading);
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 0;
  position: relative;
  display: inline-block;
  transition: color .2s ease;
}
.ia-nav a:hover,
.ia-nav .current-menu-item > a { color: var(--ia-saffron); }
.ia-nav .current-menu-item > a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--ia-saffron);
  border-radius: 2px;
}

/* Sub-menu */
.ia-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: var(--ia-shadow-lg);
  padding: 10px 0;
  flex-direction: column;
  gap: 0;
  border-radius: var(--ia-radius-sm);
  border-top: 3px solid var(--ia-saffron);
  z-index: 100;
}
.ia-nav li:hover > .sub-menu { display: flex; }
.ia-nav .sub-menu a {
  padding: 10px 22px;
  display: block;
  font-size: .9rem;
}
.ia-nav .sub-menu a:hover {
  background: var(--ia-saffron-light);
  color: var(--ia-saffron-dark);
}

/* ---------- Menu Toggle ---------- */
.ia-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 3;
}
.ia-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ia-navy);
  margin: 6px 0;
  transition: .3s;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .ia-menu-toggle { display: block; }
  .ia-nav {
    display: none;
    order: 4;
    width: 100%;
    flex-basis: 100%;
    border-top: 1px solid var(--ia-border);
  }
  .ia-nav.open { display: block; }
  .ia-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    justify-content: flex-start;
    align-items: stretch;
  }
  .ia-nav li { border-bottom: 1px solid var(--ia-border); }
  .ia-nav li:last-child { border-bottom: none; }
  .ia-nav a { padding: 12px 0; display: block; }
  .ia-nav .sub-menu {
    position: static;
    box-shadow: none;
    padding: 0 0 0 20px;
    border-top: none;
    background: transparent;
  }
  .ia-nav .current-menu-item > a::after { display: none; }
}

/* ============================================================
   POSTS
   ============================================================ */
.ia-post {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ia-border);
  position: relative;
}
.ia-post:last-child { border-bottom: none; }

/* Left accent bar on hover */
.ia-post::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 40px;
  width: 3px;
  background: transparent;
  transition: background .3s ease;
  border-radius: 3px;
}
.ia-post:hover::before { background: var(--ia-saffron); }

@media (max-width: 900px) {
  .ia-post::before { display: none; }
}

.ia-post-thumbnail {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--ia-radius);
  display: block;
  position: relative;
}
.ia-post-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,.15), rgba(19,136,8,.15));
  opacity: 0;
  transition: opacity .3s ease;
}
.ia-post-thumbnail:hover::after { opacity: 1; }
.ia-post-thumbnail img {
  width: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.ia-post-thumbnail:hover img { transform: scale(1.04); }

.ia-post-title {
  font-family: var(--ia-font-heading);
  font-size: 1.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
.ia-post-title a { color: var(--ia-navy); }
.ia-post-title a:hover { color: var(--ia-saffron); }

.ia-post-meta {
  font-size: .85rem;
  color: var(--ia-muted);
  margin-bottom: 20px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.ia-post-meta a { color: var(--ia-muted); font-weight: 500; }
.ia-post-meta a:hover { color: var(--ia-saffron); }
.ia-post-meta .ia-cat-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--ia-saffron-light);
  color: var(--ia-saffron-dark);
  border-radius: 100px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.ia-post-meta .ia-cat-badge:hover {
  background: var(--ia-saffron);
  color: #fff;
}

/* ============================================================
   POST CONTENT
   ============================================================ */
.ia-post-content,
.entry-content {
  color: var(--ia-text) !important;
  font-size: 1.05rem;
  visibility: visible;
  opacity: 1;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ia-post-content > *,
.entry-content > * { max-width: 100%; }

.ia-post-content p,
.entry-content p {
  margin: 0 0 1.4em;
  color: var(--ia-text);
}

.ia-post-content h1,
.ia-post-content h2,
.ia-post-content h3,
.ia-post-content h4,
.ia-post-content h5,
.ia-post-content h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ia-navy) !important;
  margin-top: 1.4em;
  margin-bottom: .6em;
  font-family: var(--ia-font-heading);
}
.ia-post-content h1, .entry-content h1 { font-size: 2.2rem; }
.ia-post-content h2, .entry-content h2 {
  font-size: 1.8rem;
  padding-bottom: .3em;
  border-bottom: 3px solid var(--ia-saffron-light);
}
.ia-post-content h3, .entry-content h3 { font-size: 1.4rem; }
.ia-post-content h4, .entry-content h4 { font-size: 1.2rem; }

.ia-post-content ul,
.ia-post-content ol,
.entry-content ul,
.entry-content ol {
  padding-left: 1.6em;
  margin: 0 0 1.4em;
}
.ia-post-content li,
.entry-content li {
  margin-bottom: .55em;
  color: var(--ia-text);
}
.ia-post-content ul li::marker,
.entry-content ul li::marker { color: var(--ia-saffron); }

.ia-post-content img,
.ia-post-content figure img,
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ia-radius);
  margin: 1em 0;
}
.ia-post-content figure,
.entry-content figure { margin: 1.5em 0; }

.ia-post-content blockquote,
.entry-content blockquote {
  border-left: 4px solid var(--ia-saffron);
  padding: 16px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--ia-navy);
  background: var(--ia-saffron-light);
  border-radius: 0 var(--ia-radius-sm) var(--ia-radius-sm) 0;
}

.ia-post-content hr,
.entry-content hr {
  border: none;
  border-top: 1px solid var(--ia-border);
  margin: 2.5em 0;
}

.ia-post-content strong,
.entry-content strong { font-weight: 700; color: var(--ia-navy); }

.ia-post-content a,
.entry-content a {
  color: var(--ia-saffron);
  text-decoration: underline;
  text-decoration-color: rgba(255,107,53,.3);
  text-underline-offset: 3px;
}
.ia-post-content a:hover,
.entry-content a:hover {
  color: var(--ia-saffron-dark);
  text-decoration-color: var(--ia-saffron-dark);
}

/* WP Blocks fallback */
.wp-block-image { margin: 1.5em 0; }
.wp-block-image img { border-radius: var(--ia-radius); }
.wp-block-heading { margin: 1.4em 0 .6em; font-family: var(--ia-font-heading); }
.wp-block-separator {
  border: none !important;
  border-top: 1px solid var(--ia-border) !important;
  margin: 2.5em 0 !important;
  background: none !important;
  height: 0 !important;
}
.wp-block-list { padding-left: 1.6em; }
.wp-block-button__link {
  background: var(--ia-saffron) !important;
  color: #fff !important;
  border-radius: var(--ia-radius-sm) !important;
  padding: 12px 26px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: .2s !important;
}
.wp-block-button__link:hover { background: var(--ia-saffron-dark) !important; }
.wp-block-quote {
  border-left: 4px solid var(--ia-saffron);
  padding-left: 24px;
  background: var(--ia-saffron-light);
  padding: 16px 24px;
  border-radius: 0 var(--ia-radius-sm) var(--ia-radius-sm) 0;
}

/* ============================================================
   READ MORE
   ============================================================ */
.ia-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--ia-font-heading);
  font-weight: 600;
  color: var(--ia-saffron);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: all .2s ease;
}
.ia-read-more::after {
  content: '→';
  transition: transform .2s ease;
}
.ia-read-more:hover {
  color: var(--ia-saffron-dark);
  border-bottom-color: var(--ia-saffron);
}
.ia-read-more:hover::after { transform: translateX(4px); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.ia-sidebar .widget {
  background: var(--ia-cream);
  padding: 26px;
  border-radius: var(--ia-radius);
  margin-bottom: 28px;
  border: 1px solid var(--ia-border);
}
.ia-sidebar .widget-title {
  font-family: var(--ia-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 10px;
  color: var(--ia-navy);
  position: relative;
}
.ia-sidebar .widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--ia-saffron), var(--ia-green));
  border-radius: 2px;
}
.ia-sidebar ul { list-style: none; padding: 0; margin: 0; }
.ia-sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ia-sidebar ul li:last-child { border-bottom: none; }
.ia-sidebar ul li a { color: var(--ia-navy); font-weight: 500; }
.ia-sidebar ul li a:hover { color: var(--ia-saffron); }

/* ============================================================
   FOOTER
   ============================================================ */
.ia-footer {
  background: var(--ia-navy);
  color: #c9cfe0;
  padding: 0;
  margin-top: auto;
  flex-shrink: 0;
  position: relative;
}

.ia-footer-widgets {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 64px 0 40px;
}
.ia-footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}
.ia-footer .widget-title {
  color: #fff;
  font-family: var(--ia-font-heading);
  font-size: 1.05rem;
  margin: 0 0 18px;
  padding-bottom: 12px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ia-footer .widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 3px;
  background: var(--ia-saffron);
  border-radius: 2px;
}
.ia-footer a { color: #c9cfe0; }
.ia-footer a:hover { color: var(--ia-saffron); }
.ia-footer ul { list-style: none; padding: 0; margin: 0; }
.ia-footer ul li { padding: 6px 0; }

.ia-footer-nav {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
}
.ia-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.ia-footer-nav a {
  color: #c9cfe0;
  font-weight: 500;
  font-size: .9rem;
}
.ia-footer-nav a:hover { color: var(--ia-saffron); }

.ia-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
  font-size: .85rem;
  color: #8b93ab;
}
.ia-footer-bottom .ia-made {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: .8rem;
}
.ia-footer-bottom .ia-made .ia-flag-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ia-saffron);
  margin-right: 2px;
}
.ia-footer-bottom .ia-made .ia-flag-dot:nth-child(2) { background: #fff; }
.ia-footer-bottom .ia-made .ia-flag-dot:nth-child(3) { background: var(--ia-green); margin-left: 2px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.ia-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--ia-saffron);
  color: #fff;
  border-radius: var(--ia-radius-sm);
  font-family: var(--ia-font-heading);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .3px;
}
.ia-btn:hover {
  background: var(--ia-saffron-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,.3);
}
.ia-btn-outline {
  background: transparent;
  color: var(--ia-saffron);
  border: 2px solid var(--ia-saffron);
}
.ia-btn-outline:hover {
  background: var(--ia-saffron);
  color: #fff;
}

/* ============================================================
   FORMS
   ============================================================ */
.ia-search-form {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.ia-search-form input[type="search"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--ia-border);
  border-radius: var(--ia-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color .2s;
}
.ia-search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--ia-saffron);
  box-shadow: 0 0 0 3px var(--ia-saffron-light);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.ia-pagination { margin-top: 48px; text-align: center; }
.ia-pagination .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 4px 6px 0;
  border-radius: var(--ia-radius-sm);
  background: var(--ia-cream);
  color: var(--ia-navy);
  font-weight: 600;
  font-family: var(--ia-font-heading);
  transition: all .2s;
}
.ia-pagination .page-numbers:hover {
  background: var(--ia-saffron-light);
  color: var(--ia-saffron-dark);
}
.ia-pagination .current {
  background: var(--ia-saffron);
  color: #fff;
}
.ia-pagination .current:hover {
  background: var(--ia-saffron);
  color: #fff;
}

/* ============================================================
   POST NAVIGATION
   ============================================================ */
.ia-post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0;
  padding: 28px 0;
  border-top: 1px solid var(--ia-border);
  border-bottom: 1px solid var(--ia-border);
  flex-wrap: wrap;
}
.ia-post-navigation a {
  max-width: 48%;
  padding: 16px 20px;
  background: var(--ia-cream);
  border-radius: var(--ia-radius);
  transition: all .2s;
  color: var(--ia-navy);
}
.ia-post-navigation a:hover {
  background: var(--ia-saffron-light);
  transform: translateY(-2px);
  box-shadow: var(--ia-shadow);
}
.ia-post-navigation .nav-subtitle {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ia-saffron);
  font-weight: 700;
  margin-bottom: 4px;
}
.ia-post-navigation .nav-title {
  font-weight: 600;
  font-size: .95rem;
}

/* ============================================================
   ARCHIVE HEADER
   ============================================================ */
.page-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ia-border);
}
.page-header .page-title {
  font-family: var(--ia-font-heading);
  color: var(--ia-navy);
  font-size: 2.2rem;
  margin: 0;
  position: relative;
  padding-left: 20px;
}
.page-header .page-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(to bottom, var(--ia-saffron), var(--ia-green));
  border-radius: 3px;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.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 !important;
  width: 1px;
  word-wrap: normal !important;
}
.skip-link:focus {
  background: #fff;
  color: var(--ia-saffron);
  padding: 12px 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  border-radius: 0 0 var(--ia-radius-sm) 0;
  font-weight: 700;
}

/* ============================================================
   HERO SECTION (используется в page templates)
   ============================================================ */
.ia-hero {
  background: linear-gradient(135deg,
    var(--ia-saffron) 0%,
    #FF8C42 40%,
    #FFB800 60%,
    var(--ia-green) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}
.ia-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.ia-hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 16px;
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.ia-hero p {
  font-size: 1.15rem;
  opacity: .95;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .ia-container { padding: 0 16px; }
  .ia-content-area { padding: 32px 0; }
  .ia-post-title { font-size: 1.55rem; }
  .ia-single .ia-post-title { font-size: 1.85rem; }
  .ia-post-content h1 { font-size: 1.75rem; }
  .ia-post-content h2 { font-size: 1.45rem; }
  .ia-post-content h3 { font-size: 1.2rem; }
  .ia-post-navigation a { max-width: 100%; }
  .ia-hero { padding: 56px 0; }
  .ia-hero h1 { font-size: 2rem; }
  .ia-hero p { font-size: 1rem; }
  .page-header .page-title { font-size: 1.6rem; }
}
