/* =============================================
   TAXI Tours — Travel Blog
   Matches the existing luxury site design system
   Fonts: Playfair Display / Poppins / Inter
   Colors: navy / teal / orange / gold
   ============================================= */

:root {
  --primary: #0B2D4D;
  --primary-light: #134074;
  --primary-dark: #07192e;
  --secondary: #1ABC9C;
  --secondary-dark: #16a085;
  --secondary-light: rgba(26, 188, 156, 0.12);
  --cta: #FF8A00;
  --cta-hover: #e67e00;
  --cta-light: rgba(255, 138, 0, 0.12);
  --gold: #C9A84C;
  --gold-light: rgba(201, 168, 76, 0.15);
  --bg: #F7F9FC;
  --bg-white: #fff;
  --bg-dark: #0A0F1E;
  --text: #1a1a2e;
  --text-muted: #6c757d;
  --text-light: #fff;
  --border: #e9ecef;
  --border-light: #f0f2f5;
  --radius: 20px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-xs: 0 1px 3px rgba(11, 45, 77, 0.06);
  --shadow-sm: 0 2px 8px rgba(11, 45, 77, 0.08);
  --shadow-md: 0 8px 30px rgba(11, 45, 77, 0.10);
  --shadow-lg: 0 16px 48px rgba(11, 45, 77, 0.14);
  --shadow-xl: 0 24px 64px rgba(11, 45, 77, 0.18);
  --shadow-glow-secondary: 0 8px 32px rgba(26, 188, 156, 0.25);
  --shadow-glow-cta: 0 8px 32px rgba(255, 138, 0, 0.3);
  --shadow-glow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 76px;
  --max-width: 1200px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui: 'Poppins', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; padding-top: var(--nav-height) }
img { max-width: 100%; height: auto; display: block }
a { text-decoration: none; color: inherit }
ul { list-style: none }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit }
input, select, textarea { font: inherit; outline: none }
::selection { background: rgba(26, 188, 156, 0.2); color: var(--primary) }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px }
.section { padding: 100px 0 }
.section-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--secondary); margin-bottom: 16px }
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--secondary); border-radius: 2px }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: var(--primary); line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.3px }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; line-height: 1.7 }
.text-center { text-align: center }
.text-center .section-subtitle { margin: 0 auto }

.glass { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border) }
.glass-card { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: var(--shadow-lg) }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-ui); font-weight: 600; font-size: 0.85rem; padding: 14px 32px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; position: relative; overflow: hidden }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.12); opacity: 0; transition: opacity 0.3s }
.btn:hover::after { opacity: 1 }
.btn:active { transform: scale(0.97) }
.btn-primary { background: var(--primary); color: var(--text-light); box-shadow: 0 4px 16px rgba(11, 45, 77, 0.2) }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11, 45, 77, 0.3) }
.btn-secondary { background: var(--secondary); color: var(--text-light); box-shadow: 0 4px 16px rgba(26, 188, 156, 0.25) }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: var(--shadow-glow-secondary) }
.btn-cta { background: var(--cta); color: var(--text-light); box-shadow: 0 4px 16px rgba(255, 138, 0, 0.3) }
.btn-cta:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: var(--shadow-glow-cta) }
.btn-outline { background: transparent; border: 2px solid rgba(255, 255, 255, 0.35); color: var(--text-light) }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.6); transform: translateY(-2px) }
.btn-outline-primary { background: transparent; border: 2px solid var(--primary); color: var(--primary) }
.btn-outline-primary:hover { background: var(--primary); color: var(--text-light); transform: translateY(-2px) }
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3) }
.btn-whatsapp:hover { background: #20bd5d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35) }
.btn-gold { background: var(--gold); color: var(--primary); box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3) }
.btn-gold:hover { background: #b8963a; transform: translateY(-2px); box-shadow: var(--shadow-glow-gold) }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; border-radius: 8px }
.btn-lg { padding: 18px 44px; font-size: 0.95rem }
.btn-block { width: 100%; justify-content: center }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50% }

/* ---- Navigation ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: rgba(255, 255, 255, 0.9); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100% }
.navbar-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--primary); letter-spacing: -0.3px; flex-shrink: 0 }
.navbar-brand-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--gold), #a8892e); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--primary-dark); box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3); flex-shrink: 0 }
.navbar-brand-icon img { width: 28px; height: 28px; border-radius: 8px }
.navbar-menu { display: flex; align-items: center; gap: 4px }
.navbar-link { position: relative; font-size: 0.8rem; font-weight: 600; color: var(--text); padding: 8px 14px; border-radius: var(--radius-sm); transition: color 0.3s ease, background 0.3s ease; letter-spacing: 0.2px }
.navbar-link::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-sm); background: var(--bg); opacity: 0; transform: scale(0.92); transition: opacity 0.3s ease, transform 0.3s ease }
.navbar-link:hover::before { opacity: 1; transform: scale(1) }
.navbar-link:hover { color: var(--primary) }
.navbar-link::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%) scaleX(0); width: 18px; height: 2.5px; background: var(--gold); border-radius: 3px; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) }
.navbar-link.active { color: var(--primary) }
.navbar-link.active::after { transform: translateX(-50%) scaleX(1) }
.navbar-lang { margin-left: 8px; padding: 6px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); border: 1px solid var(--border); transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease; background: transparent; cursor: pointer; outline: none }
.navbar-cta { margin-left: 12px }
.navbar-cta .btn { gap: 6px }
.navbar-overlay { display: none }
.navbar-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; z-index: 1001; background: none; border: none }
.navbar-toggle span { display: block; width: 24px; height: 2.5px; background: var(--primary); border-radius: 3px; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, background 0.3s ease }
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px) }
.navbar-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px) }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px) }
.navbar-close { display: none }

/* ---- Page Hero (shared with subpages) ---- */
.page-hero { position: relative; min-height: 55vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, var(--primary-dark), var(--primary)) }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none }
.page-hero::after { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(26, 188, 156, 0.1), transparent 70%); border-radius: 50%; pointer-events: none }
.page-hero-content { position: relative; z-index: 2; width: 100%; padding: 80px 0 60px }
.page-hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.10); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.12); padding: 8px 20px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; color: rgba(255, 255, 255, 0.9); margin-bottom: 24px }
.page-hero-badge-dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; animation: pulse-dot 2s infinite }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1) } 50% { opacity: 0.5; transform: scale(0.8) } }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: var(--text-light); line-height: 1.1; margin-bottom: 16px }
.page-hero h1 span { background: linear-gradient(135deg, var(--gold) 0%, var(--cta) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.page-hero p { font-size: clamp(0.95rem, 1.5vw, 1.15rem); color: rgba(255, 255, 255, 0.8); max-width: 620px; line-height: 1.7; margin-bottom: 28px }
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap }
.page-hero-stats { display: flex; gap: 48px; margin-top: 48px }
.page-hero-stat-value { font-family: var(--font-ui); font-size: 1.6rem; font-weight: 700; color: var(--text-light); line-height: 1 }
.page-hero-stat-label { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); margin-top: 4px }

/* ---- Breadcrumbs ---- */
.breadcrumbs { padding: 16px 0; background: var(--bg-white); border-bottom: 1px solid var(--border-light) }
.breadcrumbs a { font-size: 0.78rem; color: var(--text-muted); transition: color 0.3s }
.breadcrumbs a:hover { color: var(--secondary) }
.breadcrumbs span { font-size: 0.78rem; color: var(--text); font-weight: 600 }
.breadcrumbs .bc-sep { color: var(--text-muted); margin: 0 6px; font-weight: 400 }

/* ---- Blog Hero (homepage) ---- */
.blog-hero { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, var(--primary-dark), var(--primary)) }
.blog-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none }
.blog-hero::after { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(26, 188, 156, 0.1), transparent 70%); border-radius: 50%; pointer-events: none }
.blog-hero-content { position: relative; z-index: 2; width: 100%; padding: 90px 0 70px }
.blog-hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.10); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.12); padding: 8px 20px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; color: rgba(255, 255, 255, 0.9); margin-bottom: 24px }
.blog-hero-badge-dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; animation: pulse-dot 2s infinite }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 900; color: var(--text-light); line-height: 1.08; margin-bottom: 16px }
.blog-hero h1 span { background: linear-gradient(135deg, var(--gold) 0%, var(--cta) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.blog-hero p { font-size: clamp(0.95rem, 1.5vw, 1.15rem); color: rgba(255, 255, 255, 0.8); max-width: 620px; line-height: 1.7; margin-bottom: 32px }

/* ---- Search Box ---- */
.blog-search { display: flex; gap: 10px; max-width: 560px; background: var(--bg-white); padding: 10px; border-radius: 60px; box-shadow: var(--shadow-lg); align-items: center }
.blog-search-field { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 8px 0 16px }
.blog-search-field i { color: var(--text-muted); font-size: 0.9rem }
.blog-search-input { flex: 1; border: none; font-size: 0.9rem; color: var(--text); padding: 10px 0; background: transparent; min-width: 0 }
.blog-search .btn { border-radius: 50px; padding: 14px 26px }

/* ---- Category Chips ---- */
.category-strip { padding: 28px 0 0 }
.category-strip .container { display: flex; gap: 12px; flex-wrap: wrap; align-items: center }
.category-chip { padding: 10px 22px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); background: var(--bg-white); border: 1px solid var(--border); transition: var(--transition) }
.category-chip:hover { border-color: var(--secondary); color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-sm) }
.category-chip.active { background: var(--secondary); border-color: var(--secondary); color: white; box-shadow: 0 4px 16px rgba(26, 188, 156, 0.25) }

/* ---- Filter Bar (homepage) ---- */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center }
.filter-btn { padding: 10px 24px; border: 2px solid var(--border); border-radius: 50px; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); cursor: pointer; background: var(--bg-white) }
.filter-btn:hover { border-color: var(--secondary); color: var(--secondary) }
.filter-btn.active { background: var(--secondary); border-color: var(--secondary); color: white; box-shadow: 0 4px 16px rgba(26, 188, 156, 0.25) }

/* ---- Article Cards ---- */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px }
.article-card { background: var(--bg-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); transition: var(--transition-bounce); display: flex; flex-direction: column; border: 1px solid var(--border-light) }
.article-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl) }
.article-card-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; display: block }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease }
.article-card:hover .article-card-media img { transform: scale(1.08) }
.article-card-cat { position: absolute; top: 14px; left: 14px; background: var(--cta); color: white; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 6px 14px; border-radius: 50px; box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3) }
.article-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1 }
.article-card-meta { display: flex; align-items: center; gap: 14px; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 10px }
.article-card-meta span { display: inline-flex; align-items: center; gap: 6px }
.article-card-meta i { color: var(--secondary); font-size: 0.7rem }
.article-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--primary); line-height: 1.35; margin-bottom: 10px; transition: color 0.3s }
.article-card:hover .article-card-title { color: var(--secondary) }
.article-card-title a:hover { color: var(--secondary) }
.article-card-excerpt { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden }
.article-card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 0.8rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.5px; transition: gap 0.3s }
.article-card-link:hover { gap: 13px; color: var(--secondary-dark) }

/* ---- Featured Cards ---- */
.featured-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 28px }
.featured-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; box-shadow: var(--shadow-md); transition: var(--transition-bounce); cursor: pointer }
.featured-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl) }
.featured-card-media { position: absolute; inset: 0; z-index: 0 }
.featured-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease }
.featured-card:hover .featured-card-media img { transform: scale(1.08) }
.featured-card-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(7, 25, 46, 0.95) 0%, rgba(11, 45, 77, 0.4) 55%, transparent 100%) }
.featured-card-body { position: relative; z-index: 2; padding: 28px }
.featured-card-cat { display: inline-flex; background: var(--cta); color: white; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 6px 14px; border-radius: 50px; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3) }
.featured-card-meta { display: flex; gap: 14px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 10px }
.featured-card-meta span { display: inline-flex; align-items: center; gap: 6px }
.featured-card-title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 800; color: var(--text-light); line-height: 1.25; margin-bottom: 10px }
.featured-card-excerpt { font-size: 0.84rem; color: rgba(255, 255, 255, 0.75); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden }
.featured-card-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; transition: gap 0.3s }
.featured-card-link:hover { gap: 13px }

/* ---- Pagination ---- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap }
.page-link { min-width: 44px; height: 44px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; color: var(--text-muted); background: var(--bg-white); border: 1px solid var(--border); transition: var(--transition) }
.page-link:hover { border-color: var(--secondary); color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-sm) }
.page-link.active { background: var(--secondary); border-color: var(--secondary); color: white; box-shadow: 0 4px 16px rgba(26, 188, 156, 0.25) }
.page-link.disabled { opacity: 0.45; pointer-events: none }

/* ---- Newsletter ---- */
.newsletter-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); position: relative; overflow: hidden }
.newsletter-section::before { content: ''; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(26, 188, 156, 0.12), transparent 70%); border-radius: 50%; pointer-events: none }
.newsletter-content { position: relative; z-index: 2; text-align: center }
.newsletter-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: var(--text-light); margin-bottom: 16px }
.newsletter-text { color: rgba(255, 255, 255, 0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; line-height: 1.7 }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center }
.newsletter-form input { flex: 1; min-width: 220px; padding: 16px 22px; border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.08); color: var(--text-light); font-size: 0.9rem }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5) }
.newsletter-form input:focus { border-color: var(--secondary); background: rgba(255, 255, 255, 0.12) }
.newsletter-note { font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); margin-top: 16px }

/* ---- Article Layout ---- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start }
.article-main { min-width: 0; background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); padding: 48px; overflow: hidden }
.article-figure { margin-bottom: 28px; border-radius: var(--radius); overflow: hidden }
.article-figure img { width: 100%; height: auto; border-radius: var(--radius) }
.article-figure figcaption { font-size: 0.75rem; color: var(--text-muted); padding: 10px 4px 0; font-style: italic }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light) }
.article-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted) }
.article-meta-item i { color: var(--secondary); width: 16px }
.article-meta-author { display: flex; align-items: center; gap: 10px }
.article-meta-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--secondary); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-weight: 700; font-size: 0.85rem; flex-shrink: 0 }
.article-meta-name { font-size: 0.82rem; font-weight: 600; color: var(--primary) }
.article-meta-role { font-size: 0.7rem; color: var(--text-muted) }

/* ---- Share Row ---- */
.share-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px }
.share-label { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-right: 6px }
.share-btn { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: white; font-size: 0.85rem; transition: var(--transition) }
.share-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-md) }
.share-fb { background: #1877F2 }
.share-tw { background: #000 }
.share-wa { background: #25D366 }
.share-pin { background: #E60023 }
.share-in { background: #0A66C2 }
.share-mail { background: var(--text-muted) }

/* ---- Table of Contents ---- */
.toc { background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border-light); padding: 24px 28px; margin-bottom: 36px }
.toc-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 16px }
.toc-title i { color: var(--secondary) }
.toc-list { counter-reset: toc }
.toc-list li { counter-increment: toc; margin-bottom: 6px }
.toc-list a { display: inline-flex; align-items: baseline; gap: 10px; font-size: 0.88rem; color: var(--text-muted); transition: color 0.3s; line-height: 1.6 }
.toc-list a::before { content: counter(toc); font-family: var(--font-ui); font-size: 0.68rem; font-weight: 700; color: var(--secondary); background: var(--secondary-light); width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0 }
.toc-list a:hover { color: var(--secondary) }

/* ---- Article Content ---- */
.article-content { font-size: 0.98rem; color: var(--text); line-height: 1.9 }
.article-content p { margin-bottom: 20px }
.article-content strong { color: var(--primary); font-weight: 600 }
.article-content a { color: var(--secondary); font-weight: 600 }
.article-content a:hover { text-decoration: underline }
.article-content h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--primary); margin: 44px 0 18px; line-height: 1.25; scroll-margin-top: 100px }
.article-content h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 32px 0 14px; scroll-margin-top: 100px }
.article-content h4 { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; color: var(--primary); margin: 26px 0 12px }
.article-content ul, .article-content ol { margin: 0 0 20px 4px; padding-left: 22px }
.article-content ul li, .article-content ol li { margin-bottom: 8px; padding-left: 4px }
.article-content ul li { list-style: none; position: relative; padding-left: 26px }
.article-content ul li::before { content: '◆'; position: absolute; left: 2px; top: 2px; font-size: 0.6rem; color: var(--secondary) }
.article-content ol li { list-style: decimal }
.article-content blockquote { border-left: 4px solid var(--secondary); background: var(--secondary-light); padding: 18px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; color: var(--text-muted) }
.article-content blockquote strong { color: var(--primary) }
.article-content table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin: 24px 0 32px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-xs) }
.article-content thead { background: var(--primary); color: white }
.article-content th { padding: 14px 18px; text-align: left; font-family: var(--font-ui); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.5px }
.article-content td { padding: 13px 18px; border-bottom: 1px solid var(--border-light); background: var(--bg-white) }
.article-content tbody tr:hover td { background: var(--secondary-light) }
.article-content img { border-radius: var(--radius); margin: 24px 0 }

/* ---- FAQ ---- */
.faq-list { max-width: 100%; margin: 0 auto }
.faq-item { background: var(--bg-white); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow-xs); border: 1px solid var(--border-light); overflow: hidden; transition: var(--transition) }
.faq-item:hover { box-shadow: var(--shadow-sm) }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--secondary) }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 24px; font-size: 0.9rem; font-weight: 600; color: var(--text); text-align: left; transition: var(--transition); cursor: pointer }
.faq-item.open .faq-question { color: var(--secondary) }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--text-muted); transition: var(--transition); flex-shrink: 0 }
.faq-item.open .faq-icon { background: var(--secondary-light); color: var(--secondary); transform: rotate(180deg) }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px }
.faq-answer p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7 }

/* ---- Booking CTA card ---- */
.route-cta-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); text-align: center; border: 1px solid var(--border-light) }
.route-cta-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 8px }
.route-cta-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px }
.route-cta-price { font-family: var(--font-ui); font-size: 2.2rem; font-weight: 800; color: var(--secondary); margin-bottom: 4px }
.route-cta-price small { font-size: 0.9rem; font-weight: 400; color: var(--text-muted) }
.route-cta-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px }
.route-cta-features { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 24px }
.route-cta-features span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted) }
.route-cta-features i { color: var(--secondary) }

/* ---- Author Card ---- */
.author-card { display: flex; gap: 20px; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border-light); padding: 28px; margin-top: 40px; align-items: flex-start }
.author-card-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--secondary); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; flex-shrink: 0; box-shadow: 0 4px 16px rgba(26, 188, 156, 0.3) }
.author-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 2px }
.author-card-role { font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary); margin-bottom: 10px }
.author-card-bio { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7 }
.author-card-bio a { color: var(--secondary); font-weight: 600 }

/* ---- Prev / Next ---- */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px }
.post-nav-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px; transition: var(--transition) }
.post-nav-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); transform: translateY(-3px) }
.post-nav-label { display: flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--secondary); margin-bottom: 8px }
.post-nav-label.next { justify-content: flex-end }
.post-nav-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--primary); line-height: 1.4 }
.post-nav-card:hover .post-nav-title { color: var(--secondary) }
.post-nav-card.next { text-align: right }

/* ---- Related Articles ---- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
.related-card { background: var(--bg-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); border: 1px solid var(--border-light); transition: var(--transition-bounce) }
.related-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg) }
.related-card-media { aspect-ratio: 16 / 9; overflow: hidden }
.related-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease }
.related-card:hover .related-card-media img { transform: scale(1.08) }
.related-card-body { padding: 20px }
.related-card-cat { font-family: var(--font-ui); font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--cta); margin-bottom: 8px }
.related-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--primary); line-height: 1.4 }
.related-card:hover .related-card-title { color: var(--secondary) }
.related-card-meta { display: flex; gap: 12px; font-size: 0.7rem; color: var(--text-muted); margin-top: 8px }

/* ---- Sidebar ---- */
.article-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px }
.sidebar-widget { background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: var(--shadow-xs); padding: 26px }
.sidebar-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 18px }
.sidebar-title i { color: var(--secondary) }
.sidebar-search { position: relative }
.sidebar-search input { width: 100%; padding: 14px 44px 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--text); background: var(--bg); transition: var(--transition) }
.sidebar-search input:focus { border-color: var(--secondary); background: white; box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.1) }
.sidebar-search button { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--secondary); font-size: 0.9rem }
.sidebar-cats li { margin-bottom: 4px }
.sidebar-cats a { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-radius: var(--radius-sm); font-size: 0.84rem; color: var(--text-muted); transition: var(--transition) }
.sidebar-cats a:hover { background: var(--secondary-light); color: var(--secondary); padding-left: 18px }
.sidebar-cats .count { font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; color: var(--secondary); background: var(--secondary-light); padding: 3px 9px; border-radius: 50px }
.sidebar-recent { display: flex; flex-direction: column; gap: 14px }
.sidebar-recent-item { display: flex; gap: 12px; align-items: center }
.sidebar-recent-img { width: 68px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0 }
.sidebar-recent-title { font-size: 0.82rem; font-weight: 600; color: var(--primary); line-height: 1.45; transition: color 0.3s }
.sidebar-recent-title:hover { color: var(--secondary) }
.sidebar-recent-date { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px }
.sidebar-cta { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; border: none }
.sidebar-cta .sidebar-title { color: white }
.sidebar-cta .sidebar-title i { color: var(--cta) }
.sidebar-cta p { font-size: 0.84rem; color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 18px }

/* ---- CTA Section ---- */
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); position: relative; overflow: hidden }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(26, 188, 156, 0.1), transparent 70%); border-radius: 50%; pointer-events: none }
.cta-content { position: relative; z-index: 2; text-align: center }
.cta-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: var(--text-light); margin-bottom: 16px }
.cta-text { color: rgba(255, 255, 255, 0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.7 }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap }

/* ---- Internal links ---- */
.internal-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px }
.internal-link { padding: 12px 20px; background: var(--bg-white); border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; color: var(--primary); border: 1px solid var(--border); transition: var(--transition) }
.internal-link:hover { border-color: var(--secondary); color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-sm) }

/* ---- Footer ---- */
.footer { background: var(--bg-dark); padding: 64px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.04) }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text-light); display: flex; align-items: center; gap: 12px; margin-bottom: 14px; letter-spacing: -0.3px }
.footer-brand .navbar-brand-icon { width: 36px; height: 36px; font-size: 0.9rem }
.footer-desc { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); line-height: 1.7; max-width: 300px; margin-bottom: 16px }
.footer-socials { display: flex; gap: 10px }
.footer-social { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; transition: var(--transition) }
.footer-social:hover { background: var(--secondary); color: white; transform: translateY(-3px) }
.footer-heading { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px }
.footer-links li { margin-bottom: 10px }
.footer-links a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px }
.footer-links a:hover { color: var(--secondary); transform: translateX(4px) }
.footer-contact { padding: 20px; background: rgba(255, 255, 255, 0.04); border-radius: var(--radius-sm); margin-top: 12px }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 8px }
.footer-contact-item:last-child { margin-bottom: 0 }
.footer-contact-item i { width: 16px; color: var(--secondary) }
.footer-contact-link { color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.3s ease }
.footer-contact-link:hover { color: var(--secondary) }
.footer-contact-wa { color: #25D366; font-size: 0.85rem; transition: transform 0.3s ease; display: inline-flex; align-items: center }
.footer-contact-wa:hover { color: #20bd5d; transform: scale(1.15) }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px }
.footer-copy { font-size: 0.75rem; color: rgba(255, 255, 255, 0.3) }

/* ---- Floating elements ---- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); transition: var(--transition-bounce); animation: wa-pulse 2.5s ease-in-out infinite }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5) }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4) } 50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.65) } }
.whatsapp-float-tooltip { position: absolute; right: 68px; background: white; color: var(--text); padding: 10px 18px; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 600; white-space: nowrap; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: var(--transition) }
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; right: 72px }

.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0)); background: var(--bg-white); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08); gap: 10px; animation: slideUp 0.3s ease-out }
@keyframes slideUp { from { transform: translateY(100%) } to { transform: translateY(0) } }
.sticky-mobile-cta .btn { flex: 1; justify-content: center }

.back-to-top { position: fixed; bottom: 96px; right: 24px; z-index: 997; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: var(--transition) }
.back-to-top.visible { opacity: 1; pointer-events: auto }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) }

/* ---- Scroll animation ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease }
.reveal.visible { opacity: 1; transform: translateY(0) }
body { animation: pageFadeIn 0.5s ease-out }
@keyframes pageFadeIn { from { opacity: 0 } to { opacity: 1 } }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr) }
  .featured-grid { grid-template-columns: 1fr 1fr }
  .featured-card:first-child { grid-column: 1 / -1; min-height: 380px }
  .related-grid { grid-template-columns: 1fr 1fr }
  .article-layout { grid-template-columns: 1fr }
  .article-sidebar { position: static }
  .article-sidebar { flex-direction: row; flex-wrap: wrap }
  .article-sidebar .sidebar-widget { flex: 1 1 300px }
}

@media (max-width: 768px) {
  .section { padding: 60px 0 }
  .navbar-overlay { display: block; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.45); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px) }
  .navbar-overlay.open { opacity: 1; pointer-events: auto }
  .navbar-toggle { display: flex }
  .navbar-menu { position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh; height: 100dvh; background: var(--primary); flex-direction: column; padding: 90px 28px 32px; align-items: flex-start; transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1); gap: 4px; z-index: 999; overflow-y: auto; box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15) }
  .navbar-menu.open { right: 0 }
  .navbar-close { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.9); font-size: 1.4rem; position: absolute; top: 20px; right: 20px; transition: var(--transition) }
  .navbar-link { width: 100%; padding: 12px 16px; font-size: 0.9rem; border-radius: 8px; color: rgba(255, 255, 255, 0.9) }
  .navbar-link::before { display: none }
  .navbar-link::after { bottom: auto; left: 0; top: 50%; transform: translateY(-50%) scaleY(0); width: 3px; height: 20px }
  .navbar-link.active::after { transform: translateY(-50%) scaleY(1) }
  .navbar-cta { margin-left: 0; margin-top: 8px; width: 100% }
  .navbar-cta .btn { width: 100%; justify-content: center }
  .navbar-lang { display: none }
  .page-hero, .blog-hero { min-height: 50vh }
  .page-hero-content, .blog-hero-content { padding: 60px 0 40px }
  .page-hero-stats { gap: 24px; flex-wrap: wrap }
  .sticky-mobile-cta { display: flex }
  .whatsapp-float { bottom: 76px; width: 48px; height: 48px; font-size: 1.25rem }
  .whatsapp-float-tooltip { display: none }
  .back-to-top { bottom: 148px }
  .footer-grid { grid-template-columns: 1fr; gap: 28px }
  .featured-grid { grid-template-columns: 1fr }
  .featured-card:first-child { grid-column: auto }
  .articles-grid { grid-template-columns: 1fr }
  .article-main { padding: 28px 22px }
  .post-nav { grid-template-columns: 1fr }
  .related-grid { grid-template-columns: 1fr }
  .blog-search { flex-direction: column; border-radius: 20px; align-items: stretch }
  .blog-search-field { padding: 8px 16px }
  .blog-search .btn { border-radius: 12px }
  .newsletter-form { flex-direction: column }
  .newsletter-form input, .newsletter-form .btn { width: 100% }
}

@media (max-width: 480px) {
  .page-hero-actions, .cta-actions { flex-direction: column; width: 100% }
  .page-hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center }
  .author-card { flex-direction: column; align-items: flex-start }
  .article-meta { gap: 12px }
}
