/* Editorial review layout — refreshed visual system */

:root {
  --ink: #15171c;
  --ink-soft: #3a3f48;
  --ink-faint: #6b7280;
  --paper: #f3f1ec;
  --paper-2: #efece5;
  --white: #fff;
  --rule: #e2ddd3;
  --rule-soft: #ece8df;
  --rule-dark: #0a1f44;

  --brand: #0a1f44;
  --brand-bright: #2563eb;
  --pos: #16a34a;
  --pos-soft: #e8f6ed;
  --neg: #dc2626;
  --neg-soft: #fcecec;
  --cta: #f5a623;
  --cta-dark: #e0900f;

  --link: #2563eb;
  --link-hover: #0a1f44;

  --shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 6px 20px rgba(10, 31, 68, 0.07);
  --shadow-lg: 0 18px 48px rgba(10, 31, 68, 0.12);

  --max: 720px;
  --wide: 1000px;
  --radius: 14px;
  --radius-sm: 9px;

  --font-ui: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { font-size: 18.5px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 50% -200px, rgba(37, 99, 235, 0.05), transparent 70%);
  background-repeat: no-repeat;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p, span, div { font-weight: 400; }
strong, b { font-weight: 700; }
h1 { font-weight: 800; }
h2, h3, h4, h5, h6 { font-weight: 700; }

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

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--link-hover); }

::selection { background: rgba(37, 99, 235, 0.18); }

/* Masthead */
.masthead {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.masthead-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.masthead-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.masthead-logo {
  width: auto;
  height: 29px;
  max-width: 200px;
  flex-shrink: 0;
}

.masthead-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.masthead-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.masthead-nav a + a::before {
  content: "|";
  margin-right: 10px;
  color: var(--rule);
  pointer-events: none;
}

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

.advertorial-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 5px 13px;
  white-space: nowrap;
  background: var(--white);
}

/* Article shell */
.article {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 44px 22px 0;
}

.lead { width: 100%; }

.kicker {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 18px;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
}

.lead h1 {
  font-size: clamp(1.95rem, 4.4vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--ink);
}

.hero-figure {
  margin: 0 auto 32px;
  max-width: 740px;
}

.hero-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hero-figure figcaption {
  font-size: 16px;
  color: var(--ink-faint);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

.intro p,
.product-description,
.wrap-up p {
  margin-bottom: 1em;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.intro p:first-child,
.product-body .product-description:first-of-type {
  font-size: 1.14rem;
  color: var(--ink);
  font-weight: 500;
}

.intro p strong { color: var(--ink); font-weight: 700; }

/* Criteria list */
.criteria {
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  padding: 24px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.criteria-item {
  padding: 0;
}

.criteria dt {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.4;
}

.criteria dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.lead-outro {
  margin-top: 32px;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
}

/* Author bio */
.author-bio {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 48px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--font-ui);
}

.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 24px;
}

.author-name {
  color: #222;
  margin-top: 22px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.author-text {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.68;
  color: #444;
}

/* Rankings */
.rankings {
  width: 100%;
  margin-top: 10px;
}

.rankings-header {
  text-align: center;
  padding: 40px 0 4px;
  margin-bottom: 4px;
}

.rankings-header h2 {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--cta);
}

/* Product card */
.product-card {
  background: var(--white);
  display: flex;
  flex-flow: column;
  margin-top: 26px;
  padding: 30px 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.product-card--top {
  border: 1px solid rgba(37, 99, 235, 0.25);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.04), rgba(255, 255, 255, 0) 160px),
    var(--white);
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.14);
  position: relative;
  overflow: hidden;
}

.product-card--top::before {
  content: "★ TOP PICK";
  position: absolute;
  top: 18px;
  right: -42px;
  transform: rotate(45deg);
  background: var(--cta);
  color: #3a2600;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 54px;
  box-shadow: var(--shadow-sm);
}

.product-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 4px 0 16px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 4px;
}

.product-title-row {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
}

.product-name {
  color: var(--brand);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.product-name a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.18s ease;
}

.product-name a:hover { color: var(--brand-bright); }

.product-brand {
  color: var(--ink-faint);
  font-size: 15px;
  line-height: 1.4;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  align-items: stretch;
}

.product-meta-item {
  background: var(--paper);
  border-radius: var(--radius-sm);
  flex: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  border: 1px solid var(--rule-soft);
}

.product-meta-item--image {
  padding: 12px;
  background: var(--white);
  min-height: 172px;
}

.product-meta-item--image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-meta-item.has-padding-top {
  justify-content: center;
}

.product-image {
  display: block;
  height: 150px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  background: transparent;
}

.rating-image {
  display: block;
  max-width: 108px;
  margin: 6px auto 0;
}

.meta-label {
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.meta-grade {
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.meta-rating {
  color: var(--ink);
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.product-body {
  color: var(--ink-soft);
  background: transparent;
  margin-top: 22px;
  padding: 0;
  font-family: var(--font-ui);
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-bright);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-description {
  margin-bottom: 14px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--ink-soft);
  font-weight: 400;
}

.product-description strong { color: var(--ink); font-weight: 700; }

/* CTA */
.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
  padding: 13px 36px;
  margin: 26px auto;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid var(--brand);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cta-button:hover {
  color: #fff;
  background: #163a6e;
  border-color: #163a6e;
}

.cta-button:active { opacity: 0.92; }

/* Action row: bars (left) + CTA (right) 50/50 */
.product-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.product-action-row .performance-bars {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.product-action-row .cta-button {
  width: 100%;
  max-width: none;
  align-self: center;
  margin: 0;
  padding: 15px 24px;
  white-space: nowrap;
}

/* Performance bars */
.performance-bars {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.performance-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.performance-name {
  flex: 0 0 44%;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.performance-track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.bar {
  flex: 1;
  background-color: var(--rule);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.performance-progress {
  background: linear-gradient(90deg, #22c55e, var(--pos));
  border-radius: 999px;
  height: 100%;
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 0.8, 0.24, 1);
}

.performance-percent {
  flex: 0 0 42px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.divider {
  background-color: var(--rule);
  height: 1px;
  margin: 26px 0;
  border: none;
}

/* Pros / Cons */
.pros-label,
.cons-label {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-label { color: var(--pos); }
.cons-label { color: var(--neg); }

.pros-label::before,
.cons-label::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 13px 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.pros-label::before {
  background-color: var(--pos-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.cons-label::before {
  background-color: var(--neg-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.pros-cons {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pros-section { padding: 0; }

.cons-section {
  margin-top: 24px;
  padding: 0;
}

.pros-list,
.cons-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
}

.pros-item,
.cons-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  padding-left: 29px;
}

/* Hide the underlying <img>; draw icons via CSS so they never break */
.check-icon,
.close-icon { display: none; }

.pros-item::before,
.cons-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.pros-item::before {
  background-color: var(--pos-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.cons-item::before {
  background-color: var(--neg-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* Wrap-up */
.product-card--top .wrap-up {
  margin-top: 8px;
  padding: 20px 22px;
  background: var(--pos-soft);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-left: 4px solid var(--pos);
  border-radius: var(--radius-sm);
}

.wrap-up {
  margin-top: 18px;
  font-family: var(--font-ui);
}

.wrap-up .section-label { color: var(--pos); }

.wrap-up p {
  line-height: 1.78;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.wrap-up p:last-child { margin-bottom: 0; }

/* Buying guide */
.buying-guide {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-panel {
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  font-family: var(--font-ui);
  padding: 0 0 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}

.guide-panel:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.guide-panel__title {
  margin: 0 0 22px;
  padding: 0;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  background: none;
  border: none;
  letter-spacing: -0.01em;
}

.guide-panel--benefits .guide-panel__title,
.guide-panel--tips .guide-panel__title,
.guide-panel--avoid .guide-panel__title {
  background: none;
}

.guide-benefits,
.guide-tips,
.guide-avoid {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Benefits — full-width list */
.guide-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-benefits li {
  position: relative;
  padding: 16px 0 16px 36px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
}

.guide-benefits li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guide-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 18px;
  height: 18px;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: none;
}

/* Tips — numbered editorial blocks */
.guide-tips {
  counter-reset: tip;
}

.guide-tips li {
  counter-increment: tip;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 14px;
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--rule-soft);
}

.guide-tips li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.guide-tips li::before {
  content: counter(tip);
  grid-column: 1;
  grid-row: 1;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin: 0;
}

.guide-tips strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.guide-tips p {
  grid-column: 2;
  grid-row: 2;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

/* Avoid — left-accent warning blocks */
.guide-avoid li {
  padding: 14px 0 14px 18px;
  margin-bottom: 14px;
  position: relative;
  border-left: 3px solid #e8c4c4;
  border-bottom: none;
}

.guide-avoid li:last-child {
  margin-bottom: 0;
}

.guide-avoid li::before {
  display: none;
}

.guide-avoid strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.guide-avoid p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

/* Footer */
.site-footer {
  margin-top: 72px;
  background: var(--brand);
  color: rgba(255, 255, 255, 0.7);
  padding: 44px 22px 52px;
  font-family: var(--font-ui);
}

.footer-inner {
  max-width: var(--wide);
  margin: 0 auto;
  text-align: center;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo {
  width: auto;
  height: 29px;
  max-width: 200px;
  margin: 0 auto 22px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 26px;
}

.footer-link {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.18s ease;
}

.footer-link:hover { color: #fff; opacity: 0.7; }

.footer-disclaimer {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 760px;
  margin: 0 auto 12px;
}

/* Responsive */
@media (max-width: 991px) {
  html { font-size: 17.5px; }
  .product-name { font-size: 24px; }
  .meta-grade { font-size: 44px; }
}

@media (max-width: 767px) {
  html { font-size: 17px; }

  .article { padding: 32px 16px 0; }

  .lead h1 { font-size: 1.85rem; line-height: 1.28; }

  .criteria { grid-template-columns: 1fr; gap: 20px; }

  .product-card {
    padding: 22px 16px 20px;
  }

  .product-card--top::before { display: none; }

  .product-meta {
    flex-direction: column;
    gap: 12px;
  }

  .product-meta-item { padding: 16px 14px; }

  .product-image { height: 150px; }

  .meta-grade { font-size: 42px; }

  .meta-rating { font-size: 23px; }

  .rating-image { max-width: 120px; }

  .product-name { font-size: 23px; }

  .pros-list,
  .cons-list { grid-template-columns: 1fr; }

  .product-action-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-action-row .cta-button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 15px 28px;
    font-size: 16px;
  }

  .performance-item {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }

  .performance-name { flex: none; font-size: 14px; }

  .performance-percent { font-size: 14px; flex-basis: 36px; }

  .bar { height: 10px; }

  .buying-guide { gap: 0; padding-top: 28px; }

  .guide-panel {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .guide-panel__title { font-size: 1.15rem; margin-bottom: 18px; }

  .guide-benefits li {
    padding: 14px 0 14px 32px;
    font-size: 16px;
  }

  .guide-benefits li::before {
    top: 17px;
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }

  .guide-tips li {
    grid-template-columns: 28px 1fr;
    gap: 0 10px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .guide-tips li::before { font-size: 18px; }

  .guide-avoid li {
    padding: 12px 0 12px 14px;
    margin-bottom: 12px;
  }

  .masthead-nav { display: none; }
}
