/* =============================================================
   TRIPOD PAGES — Shared Stylesheet
   Brand: BE Home Designs
   Color: Blue #1f4fd8 (primary), Gold #ffc814 (secondary)
   ============================================================= */

/* ——— TOKENS ——— */
:root {
  --blue: #1f4fd8;
  --blue-dark: #1640b0;
  --gold: #ffc814;
  --gold-dark: #e5b400;
  --bg: #f8f9fb;
  --card-bg: #ffffff;
  --sand: #fdf8f2;
  --text: #222222;
  --text-mid: #555555;
  --text-light: #777777;
  --border: rgba(0,0,0,0.09);
  --border-soft: rgba(0,0,0,0.06);
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* ——— RESET & BASE ——— */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { line-height: 1.2; }

/* ——— LAYOUT ——— */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ——— NAVIGATION ——— */
.nt-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nt-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 20px;
}
.nt-nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nt-nav-logo span { color: var(--blue); }
.nt-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex-wrap: wrap;
}
.nt-nav-links li a {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nt-nav-links li a:hover { background: var(--bg); color: var(--text); }
.nt-nav-cta {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nt-nav-cta:hover { background: var(--blue-dark); }
.nt-nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  margin-left: auto;
}
.nt-nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
}
.nt-nav-mobile-menu.open { display: flex; }
.nt-nav-mobile-menu a {
  font-size: 0.95rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.nt-nav-mobile-menu a:last-child { border-bottom: none; }
.nt-nav-mobile-menu .nt-nav-cta {
  margin-top: 10px;
  text-align: center;
  background: var(--blue);
  border-radius: 6px;
  border-bottom: none;
}

@media (max-width: 768px) {
  .nt-nav-links { display: none; }
  .nt-nav-cta.desktop { display: none; }
  .nt-nav-mobile-toggle { display: block; }
}

/* ——— SITE-NAV (shared nav used by all BE Home pages) ——— */
.site-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 16px;
}
.site-nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav-logo span { color: var(--blue); }
.site-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}
.site-nav-links li a {
  font-size: 0.86rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.site-nav-links li a:hover,
.site-nav-links li a.active { background: var(--bg); color: var(--text); }
.site-nav-cta {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.site-nav-cta:hover { background: var(--blue-dark); }
.site-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.site-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.site-nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
}
.site-nav-mobile.open { display: flex; }
.site-nav-mobile a {
  font-size: 0.95rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.site-nav-mobile a:last-child { border-bottom: none; }
.site-nav-mobile .site-nav-cta {
  margin-top: 10px;
  text-align: center;
  background: var(--blue);
  border-bottom: none;
  border-radius: 6px;
}
/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { cursor: pointer; user-select: none; }
.site-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  min-width: 190px;
  z-index: 200;
}
.site-nav-dropdown li { margin: 0; padding: 0; }
.site-nav-dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.86rem;
  color: var(--text-mid);
  white-space: nowrap;
  border-radius: 0;
  background: none;
}
.site-nav-dropdown li a:hover { background: var(--bg); color: var(--text); }
.has-dropdown:hover .site-nav-dropdown,
.has-dropdown:focus-within .site-nav-dropdown { display: block; }

@media (max-width: 768px) {
  .site-nav-links { display: none; }
  .site-nav-cta.desktop-only { display: none; }
  .site-nav-toggle { display: flex; }
}

/* ——— BREADCRUMB ——— */
.nt-breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.82rem;
  color: var(--text-light);
}
.nt-breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nt-breadcrumb a { color: var(--text-light); text-decoration: none; }
.nt-breadcrumb a:hover { color: var(--blue); text-decoration: underline; }
.nt-breadcrumb-sep { color: #ccc; }

/* ——— ARTICLE HERO ——— */
.nt-article-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 48px 20px 40px;
}
.nt-article-hero .container { max-width: 800px; }
.nt-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(31,79,216,0.07);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.nt-article-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}
.nt-hero-meta {
  display: flex;
  gap: 18px;
  font-size: 0.84rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.nt-article-hero p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .nt-article-hero h1 { font-size: 1.55rem; }
}

/* ——— QUICK ANSWER BOX ——— */
.nt-quick-answer {
  background: rgba(31,79,216,0.06);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 32px 0;
}
.nt-qa-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.nt-quick-answer p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.6;
}

/* ——— ARTICLE BODY ——— */
.nt-article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}
.nt-article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text);
  border-bottom: 2px solid var(--border-soft);
  padding-bottom: 8px;
}
.nt-article-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text);
}
.nt-article-body p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0 0 16px;
}
.nt-article-body ul, .nt-article-body ol {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0 0 16px;
  padding-left: 22px;
}
.nt-article-body li { margin-bottom: 6px; }

/* ——— CALLOUT BOXES ——— */
.nt-callout {
  background: var(--sand);
  border: 1px solid #ede8df;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 28px 0;
}
.nt-callout p { margin: 0; font-size: 0.94rem; }
.nt-callout.blue-tint {
  background: rgba(31,79,216,0.05);
  border-color: rgba(31,79,216,0.15);
}

/* ——— FULL-WIDTH SECTIONS ——— */
.nt-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}
.nt-section h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text);
}
.nt-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text);
}

/* ——— HERO SPLIT (preserve existing layout) ——— */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0 40px;
}
.hero-text { flex: 1; text-align: left; }
.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 15px;
}
.hero-image { flex: 1; text-align: right; }
.books-image { max-width: 420px; width: 100%; height: auto; border-radius: var(--radius); }

@media (max-width: 768px) {
  .hero-split { flex-direction: column; padding: 32px 0 24px; }
  .hero-text { text-align: center; }
  .hero-image { text-align: center; margin-top: 20px; }
  .books-image { max-width: 90%; }
  .hero-text h1 { font-size: 1.6rem; }
}

/* ——— FEATURE GRID & CARDS (preserve existing) ——— */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 6px;
}
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 14px 0 8px;
  color: var(--text);
}
.card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}

/* ——— BUTTONS (preserve existing) ——— */
.button-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  margin-top: 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.button-primary:hover { background: var(--blue-dark); color: var(--gold); }
.button-secondary {
  display: inline-block;
  background: var(--gold);
  color: #111;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.15s;
}
.button-secondary:hover { color: #fff; }

/* ——— SPEC / COMPARISON TABLE ——— */
.nt-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: 0.92rem;
}
.nt-spec-table th {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
}
.nt-spec-table th:first-child { border-radius: 6px 0 0 0; }
.nt-spec-table th:last-child { border-radius: 0 6px 0 0; }
.nt-spec-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-mid);
  vertical-align: top;
}
.nt-spec-table tr:nth-child(even) td { background: var(--sand); }
.nt-spec-table .nt-win { color: #2a7a2a; font-weight: 700; }
.nt-spec-table td:first-child { color: var(--text); font-weight: 500; }

/* ——— USE CASE GRID ——— */
.nt-use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
}
.nt-use-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.nt-use-card .nt-use-icon { font-size: 1.8rem; margin-bottom: 10px; }
.nt-use-card h4 { font-size: 0.95rem; font-weight: 700; margin: 0 0 6px; color: var(--text); }
.nt-use-card p { font-size: 0.84rem; color: var(--text-mid); margin: 0; }

/* ——— MODE CARDS (selfie vs tripod) ——— */
.nt-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 32px;
}
.nt-mode-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.nt-mode-card .nt-mode-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 6px;
}
.nt-mode-card h4 { font-size: 1rem; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.nt-mode-card ul { margin: 0; padding-left: 18px; font-size: 0.88rem; color: var(--text-mid); }
.nt-mode-card li { margin-bottom: 4px; }

@media (max-width: 500px) {
  .nt-mode-grid { grid-template-columns: 1fr; }
}

/* ——— CTA BLOCK ——— */
.nt-cta-block {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin: 40px 0;
}
.nt-cta-block h3 { font-size: 1.3rem; margin: 0 0 10px; color: #fff; }
.nt-cta-block p { color: rgba(255,255,255,0.85); margin: 0 0 20px; font-size: 0.97rem; }
.nt-cta-block .button-primary {
  background: var(--gold);
  color: #111;
  margin-top: 0;
}
.nt-cta-block .button-primary:hover { color: #111; background: var(--gold-dark); }

/* ——— STOREFRONT SECTION ——— */
.nt-storefront {
  text-align: center;
  margin: 40px 0;
}
.nt-storefront img {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius);
  margin: 0 auto;
}

/* ——— RELATED ARTICLES ——— */
.nt-related {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 40px 0;
}
.nt-related h4 { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin: 0 0 14px; }
.nt-related-list { list-style: none; margin: 0; padding: 0; }
.nt-related-list li { border-top: 1px solid var(--border-soft); }
.nt-related-list li:first-child { border-top: none; }
.nt-related-list li a {
  display: block;
  padding: 10px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nt-related-list li a:hover { color: var(--blue); }
.nt-related-list .arrow { color: var(--blue); margin-right: 8px; }

/* ——— FAQ SECTION ——— */
.nt-faq-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 48px 20px;
}
.nt-faq-section .container { max-width: 800px; }
.nt-faq-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 28px;
  color: var(--text);
}
.nt-faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.nt-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.nt-faq-q:hover { color: var(--blue); }
.nt-faq-arrow {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-light);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nt-faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.nt-faq-item.open .nt-faq-a { display: block; }
.nt-faq-item.open .nt-faq-arrow { transform: rotate(45deg); color: var(--blue); }

/* ——— FOOTER ——— */
.nt-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 36px 20px 28px;
  text-align: center;
}
.nt-footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.nt-footer-links {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nt-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.nt-footer-links a:hover { color: #fff; }
.nt-footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.nt-footer-disclaimer a { color: rgba(255,255,255,0.55); }
.nt-footer-disclaimer a:hover { color: rgba(255,255,255,0.8); }

/* ——— HERO VIDEO ——— */
.hero-video {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  margin: 0 0 32px;
}

/* ——— TRUST BADGES ——— */
.nt-trust {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 14px 0;
}
.nt-trust strong { color: var(--text); }

/* ——— UTILITY ——— */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 600px) {
  .nt-spec-table { font-size: 0.83rem; }
  .nt-spec-table th, .nt-spec-table td { padding: 9px 10px; }
  .nt-use-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   COMPATIBILITY LAYER
   Aliases for all class name variants used across the 4 pages
   ============================================================= */

/* ——— NAV CONTAINER ALIASES ——— */
/* .nt-nav-container is used by selfie-stick-to-tripod.html
   .nt-nav-inner is the canonical name in this CSS */
.nt-nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 20px;
}

/* ——— NAV MENU / LINK ALIASES ——— */
/* .nt-nav-menu used instead of .nt-nav-links ul */
.nt-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.nt-nav-menu a,
a.nt-nav-link {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nt-nav-menu a:hover,
a.nt-nav-link:hover,
.nt-nav-menu a.active,
a.nt-nav-link.active {
  background: var(--bg);
  color: var(--text);
}

/* ——— NAV TOGGLE ALIASES ——— */
/* .nt-nav-toggle used instead of .nt-nav-mobile-toggle */
.nt-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  font-size: 1.5rem;
  line-height: 1;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nt-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .nt-nav-menu { display: none; }
  .nt-nav-toggle { display: flex; }
  .nt-nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    z-index: 99;
    gap: 0;
  }
  .nt-nav-menu.active a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
  }
}

/* ——— CONTAINER ALIASES ——— */
/* Various agents used .nt-container, .nt-container-wide, .nt-article-container */
.nt-container,
.nt-container-wide,
.nt-article-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.nt-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ——— BREADCRUMB CONTAINER ALIASES ——— */
.nt-breadcrumb-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ——— ARTICLE HERO ALIASES ——— */
.nt-article-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
/* .nt-hero-container used in selfie-stick-and-tripod */
.nt-hero-container {
  max-width: 900px;
  margin: 0 auto;
}
/* eyebrow alias used with different class names */
.nt-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(31,79,216,0.07);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ——— ARTICLE META ALIASES ——— */
/* .nt-article-meta, .nt-meta, .nt-hero-meta all display the same way */
.nt-article-meta,
.nt-meta {
  display: flex;
  gap: 18px;
  font-size: 0.84rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* ——— INTRO PARAGRAPH ——— */
.nt-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}

/* ——— ARTICLE WRAPPER ——— */
/* .nt-article used as the article body section wrapper */
.nt-article {
  padding: 48px 20px;
  background: var(--card-bg);
}

/* ——— HERO SPLIT ALIASES ——— */
/* .nt-hero-split used instead of .hero-split */
.nt-hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}
.nt-hero-split-text {
  flex: 1;
  min-width: 260px;
  text-align: left;
}
.nt-hero-split-image {
  flex: 1;
  min-width: 260px;
  text-align: right;
}
.nt-hero-split-image img {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .nt-hero-split { flex-direction: column; }
  .nt-hero-split-text { text-align: center; }
  .nt-hero-split-image { text-align: center; }
}

/* ——— TRUST SIGNALS ——— */
.nt-trust-signals {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.nt-trust-item {
  font-size: 0.88rem;
  color: var(--text-mid);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ——— QUICK ANSWER Q LABEL ALIAS ——— */
/* Some agents wrapped the label in <strong> instead of .nt-qa-label */
.nt-quick-answer strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

/* ——— NAV LOGO ALIAS ——— */
/* Some agents wrapped logo in .nt-nav-logo div then used <a> inside */
.nt-nav-logo a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nt-nav-logo a span { color: var(--blue); }

/* ——— SECTION ALIASES ——— */
.nt-section-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ——— ACTIVE NAV LINK ——— */
.nt-nav-links li a.active { color: var(--blue); font-weight: 700; }
.nt-nav-links li a.active:hover { background: rgba(31,79,216,0.07); }
