/*
Theme Name: NextGear Pre-Owned Bikes
Theme URI: https://nextgear.in
Author: NextGear
Description: Custom theme for NextGear — certified pre-owned bike dealership in Hyderabad. Includes Bike Listings post type, Customer Stories post type, WhatsApp chat, enquiry form, hero slider, and full schema markup.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: nextgear
*/

:root{
    --navy:#0B1240;
    --navy-2:#161E5C;
    --red:#E30613;
    --red-2:#B4050F;
    --white:#FFFFFF;
    --off:#F6F7FB;
    --gray-100:#EEF0F6;
    --gray-400:#8A8FA3;
    --gray-700:#4A4F63;
    --line:#E7E9F1;
    --shadow-sm: 0 2px 10px rgba(11,18,64,0.06);
    --shadow-md: 0 12px 32px rgba(11,18,64,0.10);
    --shadow-red: 0 10px 28px rgba(227,6,19,0.25);
    --display:'Poppins', sans-serif;
    --body:'Inter', sans-serif;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{ background:var(--white); color:var(--navy); font-family:var(--body); line-height:1.65; -webkit-font-smoothing:antialiased; }
  img{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  .container{max-width:1180px; margin:0 auto; padding:0 24px;}
  h1,h2,h3,h4{font-family:var(--display); font-weight:800; letter-spacing:-0.01em; line-height:1.15; color:var(--navy);}

  .eyebrow{ font-family:var(--display); font-weight:700; font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:var(--red); display:flex; align-items:center; gap:10px; margin-bottom:14px; }
  .eyebrow::before{ content:""; width:22px; height:3px; background:var(--red); border-radius:2px; }

  .btn{ display:inline-flex; align-items:center; gap:8px; font-family:var(--display); font-weight:600; font-size:14px; padding:14px 30px; border-radius:8px; border:none; cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease; }
  .btn-primary{ background:var(--red); color:#fff; box-shadow:var(--shadow-red); }
  .btn-primary:hover{ background:var(--red-2); transform:translateY(-2px); box-shadow:0 16px 36px rgba(227,6,19,0.35); }
  .btn-navy{ background:var(--navy); color:#fff; }
  .btn-navy:hover{ background:var(--navy-2); transform:translateY(-2px); }
  .btn-ghost{ background:#fff; color:var(--navy); border:1.5px solid var(--line); }
  .btn-ghost:hover{ border-color:var(--navy); transform:translateY(-2px); }

  /* reveal-on-scroll animation */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ===== HEADER ===== */
  header{ position:sticky; top:0; z-index:100; background:rgba(255,255,255,0.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
  .nav-row{ display:flex; align-items:center; justify-content:space-between; height:82px; }
  .logo{ display:flex; align-items:center; gap:10px; }
  .logo img{ height:52px; width:52px; border-radius:50%; }
  .logo-text{ font-family:var(--display); font-weight:800; font-size:18px; line-height:1.1; }
  .logo-text .gear{ color:var(--red); }
  .logo-text small{ display:block; font-family:var(--body); font-weight:500; font-size:10px; letter-spacing:0.12em; color:var(--gray-400); text-transform:uppercase; margin-top:2px; }
  nav ul{ display:flex; gap:30px; list-style:none; }
  nav a{ font-size:14px; font-weight:600; color:var(--navy); position:relative; padding:6px 0; }
  nav a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--red); transition:width .2s ease; }
  nav a:hover::after{ width:100%; }
  .nav-cta{ display:flex; gap:12px; align-items:center; }
  .nav-cta .btn{ padding:11px 22px; font-size:13px; }

  /* ===== HERO SLIDER ===== */
  .hero-slider{ position:relative; height:600px; overflow:hidden; background:linear-gradient(180deg,var(--off),#fff); border-bottom:1px solid var(--line); }
  .slide{ position:absolute; inset:0; display:flex; align-items:center; opacity:0; transition:opacity .9s ease; }
  .slide.active{ opacity:1; }
  .slide-content{ position:relative; z-index:2; max-width:620px; }
  .slide-content .container{ padding:0 24px; }
  .slide .tag-pill{ display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); padding:8px 16px; border-radius:30px; font-size:12px; font-weight:600; color:var(--navy); margin-bottom:22px; }
  .slide .tag-pill span{ width:8px; height:8px; border-radius:50%; background:var(--red); display:inline-block; }
  .slide h1{ font-size:48px; margin-bottom:18px; }
  .slide h1 span{ color:var(--red); }
  .slide p{ font-size:16px; color:var(--gray-700); max-width:480px; margin-bottom:30px; }
  .slide-actions{ display:flex; gap:14px; flex-wrap:wrap; }
  .hero-visual{ position:absolute; right:60px; top:50%; transform:translateY(-50%); width:420px; height:420px; z-index:1; }
  .hero-visual .ring{ position:absolute; inset:0; border-radius:50%; border:24px solid var(--off); }
  .hero-visual .ring::before{ content:""; position:absolute; top:-24px; left:-24px; right:-24px; bottom:-24px; border-radius:50%; border:24px solid transparent; border-top-color:var(--navy); border-right-color:var(--red); transform:rotate(-20deg); }
  .hero-visual .stat-card{ position:absolute; background:#fff; border-radius:14px; box-shadow:var(--shadow-md); padding:16px 20px; }
  .hero-visual .stat-1{ top:20px; left:-30px; }
  .hero-visual .stat-2{ bottom:40px; right:-30px; }
  .hero-visual .stat-card .num{ font-family:var(--display); font-weight:800; font-size:22px; color:var(--navy); }
  .hero-visual .stat-card .num span{ color:var(--red); }
  .hero-visual .stat-card .lbl{ font-size:11px; color:var(--gray-400); text-transform:uppercase; letter-spacing:.05em; }

  .slider-dots{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:3; }
  .slider-dots button{ width:28px; height:4px; border-radius:2px; background:var(--gray-100); border:none; cursor:pointer; }
  .slider-dots button.active{ background:var(--red); }

  /* ===== TRUST STRIP ===== */
  .trust-strip{ background:var(--navy); }
  .trust-grid{ display:grid; grid-template-columns:repeat(5,1fr); }
  .trust-item{ padding:22px 16px; text-align:center; font-size:12.5px; font-weight:600; color:#fff; border-right:1px solid rgba(255,255,255,0.1); display:flex; flex-direction:column; align-items:center; gap:8px; }
  .trust-item:last-child{ border-right:none; }
  .trust-item svg{ width:22px; height:22px; stroke:var(--red); }

  /* ===== SECTIONS ===== */
  section{ padding:90px 0; }
  .section-head{ max-width:620px; margin-bottom:48px; }
  .section-head h2{ font-size:34px; }
  .section-head p{ color:var(--gray-700); margin-top:14px; font-size:15px; }

  .why-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
  .why-copy p{ color:var(--gray-700); font-size:15px; margin-bottom:16px; }
  .why-visual{ aspect-ratio:4/3; background:linear-gradient(135deg,var(--off),var(--gray-100)); border-radius:20px; position:relative; overflow:hidden; box-shadow:var(--shadow-md); display:flex; align-items:flex-end; padding:26px; }
  .why-visual .badge-text{ font-family:var(--display); font-weight:800; font-size:24px; color:var(--navy); }
  .why-visual .badge-text span{ color:var(--red); }

  /* Popular categories */
  .cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .cat-card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px 22px; transition:transform .2s, box-shadow .2s, border-color .2s; }
  .cat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
  .cat-card .tag{ font-family:var(--display); font-weight:700; font-size:11px; color:var(--red); text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; display:block; }
  .cat-card h3{ font-size:18px; margin-bottom:8px; }
  .cat-card p{ font-size:13px; color:var(--gray-700); }

  /* Sell CTA */
  .sell-cta{ background:linear-gradient(120deg,var(--navy),var(--navy-2)); border-radius:24px; position:relative; overflow:hidden; }
  .sell-cta::after{ content:""; position:absolute; top:-30%; right:-8%; width:50%; height:160%; background:radial-gradient(circle, rgba(227,6,19,0.25), transparent 65%); }
  .sell-inner{ position:relative; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; padding:56px; }
  .sell-inner h2{ font-size:30px; color:#fff; max-width:520px; }
  .sell-inner p{ color:rgba(255,255,255,0.75); margin-top:10px; max-width:440px; font-size:14px; }

  /* Service areas + AEO */
  .areas-list{ display:flex; flex-wrap:wrap; gap:10px; }
  .areas-list span{ border:1px solid var(--line); background:#fff; padding:9px 16px; border-radius:30px; font-size:13px; color:var(--gray-700); font-weight:500; }
  .quick-answer{ background:var(--off); border-radius:16px; padding:28px 30px; border-left:4px solid var(--red); }
  .quick-answer .q{ font-family:var(--display); font-weight:700; font-size:16px; color:var(--navy); margin-bottom:10px; }
  .quick-answer .a{ font-size:14px; color:var(--gray-700); }

  /* Customer gallery slider */
  .gallery-wrap{ position:relative; }
  .gallery-track{ display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:14px; scrollbar-width:none; }
  .gallery-track::-webkit-scrollbar{ display:none; }
  .gallery-card{ flex:0 0 290px; scroll-snap-align:start; background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; transition:box-shadow .2s, transform .2s; }
  .gallery-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); }
  .gallery-photo{ height:220px; background:linear-gradient(135deg,var(--gray-100),var(--off)); display:flex; align-items:center; justify-content:center; color:var(--gray-400); font-size:12px; font-family:var(--display); font-weight:600; text-transform:uppercase; }
  .gallery-info{ padding:18px; }
  .gallery-info .name{ font-family:var(--display); font-weight:700; font-size:15px; }
  .gallery-info .bike{ font-size:12px; color:var(--red); font-weight:600; margin-top:2px; }
  .gallery-info .quote{ font-size:13px; color:var(--gray-700); margin-top:10px; }
  .gallery-nav{ display:flex; gap:10px; margin-top:20px; }
  .gallery-nav button{ width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:#fff; color:var(--navy); cursor:pointer; font-size:16px; transition:.2s; }
  .gallery-nav button:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }

  /* Enquiry form */
  .enquiry{ background:var(--off); }
  .enquiry-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
  .form-card{ background:#fff; border-radius:20px; padding:36px; box-shadow:var(--shadow-md); }
  .field{ margin-bottom:18px; }
  .field label{ display:block; font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:var(--gray-400); margin-bottom:8px; }
  .field input, .field select, .field textarea{ width:100%; background:var(--off); border:1.5px solid var(--line); border-radius:10px; color:var(--navy); padding:12px 14px; font-family:var(--body); font-size:14px; }
  .field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--red); background:#fff; }
  .field textarea{ resize:vertical; min-height:90px; }
  .form-card .btn{ width:100%; justify-content:center; margin-top:6px; }

  /* Footer */
  footer{ background:var(--navy); padding:64px 0 0; color:#fff; }
  .footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.1); }
  .footer-col h4{ font-size:14px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:18px; color:#fff; }
  .footer-col p, .footer-col a{ font-size:13px; color:rgba(255,255,255,0.65); display:block; margin-bottom:10px; }
  .footer-col a:hover{ color:var(--red); }
  .footer-logo{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
  .footer-logo img{ height:46px; width:46px; border-radius:50%; background:#fff; }
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:12px; color:rgba(255,255,255,0.5); flex-wrap:wrap; gap:10px; }

  /* WhatsApp float */
  .wa-float{ position:fixed; bottom:26px; right:26px; z-index:200; width:60px; height:60px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px rgba(37,211,102,0.4); animation:wa-pulse 2.4s infinite; }
  .wa-float svg{ width:30px; height:30px; fill:#fff; }
  @keyframes wa-pulse{ 0%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);} 70%{box-shadow:0 0 0 14px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

  @media (max-width:900px){
    nav ul{ display:none; }
    .why-grid, .enquiry-grid{ grid-template-columns:1fr; }
    .trust-grid{ grid-template-columns:repeat(2,1fr); }
    .trust-item:nth-child(2n){ border-right:none; }
    .cat-grid{ grid-template-columns:repeat(2,1fr); }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .slide h1{ font-size:32px; }
    .hero-visual{ display:none; }
    .sell-inner{ padding:36px; }
  }



/* ===== ADDITIONAL: inner page pages (Buy/Sell/Exchange/Buyback) ===== */
.page-hero{ padding:60px 0 40px; background:linear-gradient(180deg,var(--off),#fff); border-bottom:1px solid var(--line); }
.breadcrumb{ font-size:12px; color:var(--gray-400); margin-bottom:14px; }
.breadcrumb a:hover{ color:var(--red); }
.page-hero h1{ font-size:36px; }
.page-hero p{ color:var(--gray-700); margin-top:12px; max-width:560px; font-size:15px; }

/* filter bar */
.filter-bar{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; background:#fff; border:1px solid var(--line); border-radius:14px; padding:20px; box-shadow:var(--shadow-sm); margin-bottom:36px; }
.filter-bar select, .filter-bar input{ background:var(--off); border:1.5px solid var(--line); border-radius:8px; color:var(--navy); padding:10px 14px; font-size:13px; font-family:var(--body); }
.filter-bar .btn{ padding:11px 22px; font-size:13px; }

/* bike grid */
.bike-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.bike-card{ background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; transition:transform .2s, box-shadow .2s; }
.bike-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.bike-photo{ height:170px; background:linear-gradient(135deg,var(--gray-100),var(--off)); display:flex; align-items:center; justify-content:center; color:var(--gray-400); font-size:12px; font-family:var(--display); font-weight:600; text-transform:uppercase; position:relative; }
.bike-badge{ position:absolute; top:12px; left:12px; background:var(--red); color:#fff; font-size:10px; font-weight:700; padding:5px 10px; border-radius:20px; text-transform:uppercase; letter-spacing:.04em; }
.bike-body{ padding:18px 20px; }
.bike-body .tag{ font-family:var(--display); font-weight:700; font-size:11px; color:var(--red); text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px; display:block; }
.bike-body h3{ font-size:17px; margin-bottom:6px; }
.bike-body .meta{ font-size:12px; color:var(--gray-400); margin-bottom:12px; }
.bike-body .price-row{ display:flex; align-items:baseline; gap:8px; margin-bottom:14px; }
.bike-body .price{ font-family:var(--display); font-weight:800; font-size:19px; color:var(--navy); }
.bike-body .old-price{ font-size:12px; color:var(--gray-400); text-decoration:line-through; }
.bike-body .btn{ width:100%; justify-content:center; padding:10px; font-size:12.5px; }

/* pagination */
.pagination{ display:flex; justify-content:center; gap:8px; margin-top:40px; }
.pagination button{ width:38px; height:38px; border-radius:8px; border:1px solid var(--line); background:#fff; color:var(--navy); font-weight:600; cursor:pointer; }
.pagination button.active{ background:var(--navy); color:#fff; border-color:var(--navy); }

/* step timeline (Sell / Exchange / Buyback how-it-works) */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.step-card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:28px 22px; position:relative; }
.step-num{ width:38px; height:38px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:800; font-size:15px; margin-bottom:16px; }
.step-card h3{ font-size:16px; margin-bottom:8px; }
.step-card p{ font-size:13px; color:var(--gray-700); }
.step-card:not(:last-child)::after{ content:"→"; position:absolute; right:-28px; top:44px; color:var(--gray-400); font-size:18px; display:none; }
@media(min-width:901px){ .step-card:not(:last-child)::after{ display:block; } }

/* comparison table (Exchange) */
.compare-table{ width:100%; border-collapse:separate; border-spacing:0; background:#fff; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm); }
.compare-table th, .compare-table td{ padding:16px 20px; text-align:left; font-size:14px; border-bottom:1px solid var(--line); }
.compare-table th{ background:var(--off); font-family:var(--display); font-weight:700; color:var(--navy); font-size:12px; text-transform:uppercase; letter-spacing:.04em; }
.compare-table tr:last-child td{ border-bottom:none; }
.compare-highlight{ color:var(--red); font-weight:700; }

/* guarantee badge grid (Buyback) */
.guarantee-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.guarantee-card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:30px 24px; text-align:center; }
.guarantee-card .icon{ width:56px; height:56px; border-radius:50%; background:var(--off); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.guarantee-card .icon svg{ width:26px; height:26px; stroke:var(--red); }
.guarantee-card h3{ font-size:16px; margin-bottom:8px; }
.guarantee-card p{ font-size:13px; color:var(--gray-700); }

.terms-box{ background:var(--off); border-radius:16px; padding:30px; font-size:13px; color:var(--gray-700); line-height:1.9; }
.terms-box li{ margin-bottom:8px; margin-left:18px; }

@media(max-width:900px){
  .bike-grid{ grid-template-columns:repeat(2,1fr); }
  .steps, .guarantee-grid{ grid-template-columns:1fr; }
}

/* ===== ICONS ===== */
.icon-circle{ width:44px; height:44px; border-radius:50%; background:var(--off); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.icon-circle svg{ width:20px; height:20px; stroke:var(--red); }
.icon-circle.navy svg{ stroke:var(--navy); }

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder{ background:linear-gradient(135deg,var(--gray-100),var(--off)); border:1px dashed var(--gray-400); border-radius:14px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; color:var(--gray-400); text-align:center; padding:20px; }
.img-placeholder .ph-icon{ font-size:22px; opacity:.6; }
.img-placeholder .ph-label{ font-family:var(--display); font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.05em; }
.img-placeholder .ph-size{ font-size:10px; color:var(--gray-400); }

/* Trust strip list with checks (Home) */
.trust-list{ display:flex; flex-direction:column; gap:14px; }
.trust-list li{ display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--gray-700); list-style:none; }
.trust-list li svg{ width:18px; height:18px; stroke:#1BAA6E; flex-shrink:0; margin-top:2px; }

/* Numbered process list */
.process-list{ counter-reset:step; }
.process-list li{ list-style:none; display:flex; gap:18px; margin-bottom:22px; }
.process-list .step-circle{ counter-increment:step; width:36px; height:36px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:800; font-size:14px; flex-shrink:0; }
.process-list .step-circle::before{ content: counter(step); }
.process-list .step-text{ font-size:14px; color:var(--gray-700); padding-top:6px; }

/* FAQ accordion */
.faq-item{ border-bottom:1px solid var(--line); padding:22px 0; }
.faq-item summary{ font-family:var(--display); font-weight:700; font-size:15.5px; color:var(--navy); cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:20px; color:var(--red); flex-shrink:0; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ font-size:14px; color:var(--gray-700); margin-top:12px; max-width:720px; }

/* Blog card */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card{ background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; transition:.2s; }
.blog-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.blog-card .blog-img{ height:170px; }
.blog-card .blog-body{ padding:20px; }
.blog-card h3{ font-size:15.5px; margin-bottom:8px; line-height:1.4; }
.blog-card p{ font-size:12.5px; color:var(--gray-700); }

/* Service block */
.service-block{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; padding:50px 0; border-bottom:1px solid var(--line); }
.service-block:last-child{ border-bottom:none; }
.service-block.reverse .service-copy{ order:2; }
.service-block.reverse .img-placeholder{ order:1; }
.service-copy .icon-circle{ margin-bottom:16px; }
.service-copy h3{ font-size:22px; margin-bottom:12px; }
.service-copy p{ font-size:14.5px; color:var(--gray-700); }

/* Contact page */
.contact-info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:40px; }
.contact-info-card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px; text-align:center; }
.contact-info-card .icon-circle{ margin:0 auto 14px; }
.contact-info-card h4{ font-size:14px; margin-bottom:6px; }
.contact-info-card p{ font-size:13px; color:var(--gray-700); }

/* Trust entity block (About) */
.entity-list{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.entity-item{ background:var(--off); border-radius:12px; padding:18px 20px; }
.entity-item .k{ font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:var(--gray-400); font-weight:700; margin-bottom:4px; }
.entity-item .v{ font-size:14px; color:var(--navy); font-weight:600; }

@media(max-width:900px){
  .blog-grid{ grid-template-columns:1fr; }
  .service-block, .service-block.reverse{ grid-template-columns:1fr; }
  .service-block.reverse .service-copy, .service-block.reverse .img-placeholder{ order:0; }
  .contact-info-grid{ grid-template-columns:1fr; }
  .entity-list{ grid-template-columns:1fr; }
}