/*
Theme Name: Hulp bij de CBW
Theme URI: https://hulpbijdecbw.nl
Author: Cyber Security Challengers
Author URI: https://cybersecuritychallengers.nl
Description: Native WordPress theme voor Hulp bij de CBW – CISO-as-a-Service landingspagina. Inclusief Customizer-velden voor contactgegevens en Contact Form 7 ondersteuning.
Version: 1.8.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hulpbijdecbw
*/

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

:root {
  --navy:    #1d3461;
  --navy-dk: #142448;
  --orange:  #e8611a;
  --orange-lt: #f07638;
  --blue-lt: #5ab4e0;
  --blue-pale: #eaf4fb;
  --gray-1:  #f5f6f8;
  --gray-2:  #e8eaed;
  --gray-3:  #9ca3af;
  --text:    #1a1e2e;
  --text-lt: #4b5563;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 80px;
}
.nav-logo img { height: auto; width: 200px; max-width: 55vw; display: block; }
.nav-menu-wrap { display: flex; align-items: center; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  color: var(--text-lt); transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: .45rem 1.1rem; border-radius: 6px;
  font-weight: 600 !important; transition: background .2s !important;
}
.nav-cta:hover { background: var(--orange-lt) !important; color: #fff !important; }

/* Hamburger toggle (verborgen op desktop) */
.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle-bar {
  display: block; height: 2px; width: 100%;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #1e4a7a 100%);
  color: #fff;
  padding: 100px 5% 110px;
  position: relative; overflow: visible;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,180,224,0.12) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: 30%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,26,0.08) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(90,180,224,0.15); border: 1px solid rgba(90,180,224,0.3);
  color: var(--blue-lt); font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; padding: .35rem .8rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; }
.hero-actions--left   { justify-content: flex-start; }
.hero-actions--center { justify-content: center; }
.hero-actions--right  { justify-content: flex-end; }
.btn-primary {
  background: var(--orange); color: #fff;
  padding: .75rem 1.75rem; border-radius: 8px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(232,97,26,0.35);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,97,26,0.45); color: #fff; }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35); color: #fff;
  padding: .75rem 1.75rem; border-radius: 8px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

.hero-visual {
  display: flex; justify-content: center;
  position: relative; z-index: 1;
}
.hero-shield { display: flex; align-items: center; justify-content: center; }
.hero-shield img { width: 380px; max-width: 100%; height: auto; }

/* ── STATS ── */
.stats {
  background: var(--navy);
  display: flex; justify-content: center; gap: 0;
}
.stat {
  flex: 1; max-width: 280px;
  padding: 2rem 2.5rem;
  text-align: center; color: #fff;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 2.4rem; font-weight: 800; color: var(--orange);
  display: block; line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,0.6); margin-top: .4rem; display: block; }

/* ── SECTIONS ── */
.section { padding: 80px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2; color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-lt);
  max-width: 640px; line-height: 1.7;
}

/* ── PROBLEM ── */
.problem { background: var(--gray-1); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 3rem;
}
.problem-points { display: flex; flex-direction: column; gap: 1.5rem; }
.problem-point { display: flex; gap: 1rem; align-items: flex-start; }
.problem-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(232,97,26,0.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.problem-icon svg { width: 22px; height: 22px; }
.problem-point h4 { font-weight: 700; margin-bottom: .3rem; color: var(--navy); }
.problem-point p { font-size: .92rem; color: var(--text-lt); }

.callout {
  background: var(--navy);
  color: #fff; border-radius: 16px;
  padding: 2.5rem; position: relative; overflow: hidden;
}
.callout::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(90,180,224,0.1);
}
.callout h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.callout p { font-size: .95rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.callout-accent { color: var(--orange); font-weight: 700; }

/* ── PHASES ── */
.phases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.phase-card {
  background: #fff; border: 1px solid var(--gray-2);
  border-radius: 16px; padding: 2rem;
  transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.phase-card:hover { box-shadow: 0 8px 32px rgba(29,52,97,0.1); transform: translateY(-3px); }
.phase-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
}
.phase-card:nth-child(1)::before { background: var(--blue-lt); }
.phase-card:nth-child(2)::before { background: var(--orange); }
.phase-card:nth-child(3)::before { background: var(--navy); }

.phase-num {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-3); margin-bottom: .5rem;
}
.phase-title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.phase-duration {
  display: inline-block; font-size: .78rem; font-weight: 600;
  background: var(--gray-1); color: var(--text-lt);
  padding: .25rem .65rem; border-radius: 100px; margin-bottom: 1rem;
}
.phase-desc { font-size: .9rem; color: var(--text-lt); line-height: 1.6; margin-bottom: 1.25rem; }
.phase-deliverables { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.phase-deliverables li {
  font-size: .85rem; color: var(--text-lt);
  display: flex; gap: .6rem; align-items: flex-start;
}
.phase-deliverables li::before {
  content: '✓'; color: var(--orange); font-weight: 700;
  flex-shrink: 0; margin-top: .05rem;
}

/* ── WHY ── */
.why { background: var(--gray-1); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: #fff; border-radius: 14px;
  padding: 1.75rem; border: 1px solid var(--gray-2);
}
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: var(--text-lt); line-height: 1.6; }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p { color: var(--text-lt); line-height: 1.75; margin-bottom: 1rem; }
.about-highlights {
  display: flex; flex-direction: column; gap: .75rem;
  margin-top: 1.5rem;
}
.highlight { display: flex; gap: .75rem; align-items: center; }
.highlight-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.highlight span { font-size: .92rem; font-weight: 500; color: var(--navy); }

.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a7a 100%);
  border-radius: 20px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.about-stat {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.07); border-radius: 12px;
  padding: 1rem 1.25rem;
}
.about-stat-num {
  font-size: 1.6rem; font-weight: 800; color: var(--orange);
  white-space: nowrap; min-width: 64px; flex-shrink: 0;
}
.about-stat-label { font-size: .82rem; color: rgba(255,255,255,0.75); line-height: 1.4; }

/* ── CONTACT ── */
.contact { background: var(--navy); color: #fff; }
.contact .section-title { color: #fff; }
.contact .section-sub { color: rgba(255,255,255,0.7); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.contact-points { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-point { display: flex; gap: 1rem; align-items: flex-start; }
.contact-point-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-point h5 { font-size: .85rem; color: rgba(255,255,255,0.5); margin-bottom: .2rem; font-weight: 500; }
.contact-point p { font-size: .95rem; font-weight: 500; }

.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 2rem;
}

/* Contact Form 7 styling overrides */
.contact-form-wrap .wpcf7-form p { margin: 0; }
.contact-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form-wrap .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.contact-form-wrap .form-group label,
.contact-form-wrap label {
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,0.65);
  display: block;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: .7rem .9rem;
  color: #fff; font-size: .9rem; font-family: inherit;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form-wrap select option { background: var(--navy-dk); color: #fff; }
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--blue-lt);
  background: rgba(255,255,255,0.1);
}
.contact-form-wrap textarea { resize: vertical; min-height: 110px; }
.contact-form-wrap input[type="submit"],
.contact-form-wrap button[type="submit"],
.contact-form-wrap .wpcf7-submit {
  width: 100%; padding: .85rem;
  background: var(--orange); color: #fff;
  border: none; border-radius: 8px; font-size: 1rem;
  font-weight: 700; cursor: pointer; font-family: inherit;
  transition: background .2s, transform .15s;
  margin-top: .5rem;
}
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap button[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover { background: var(--orange-lt); transform: translateY(-1px); }

.contact-form-wrap .wpcf7-not-valid-tip { color: #ffb4a8; font-size: .8rem; }
.contact-form-wrap .wpcf7-response-output {
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff; padding: .8rem 1rem; margin: 1rem 0 0; border-radius: 8px;
  font-size: .9rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dk);
  padding: 2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.45); font-size: .82rem;
  flex-wrap: wrap; gap: 1rem;
}
.site-footer img { height: 28px; opacity: .7; }
.site-footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
.site-footer a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .problem-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .phases-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .stats { flex-wrap: wrap; }
}
@media (max-width: 820px) {
  .site-nav { padding: 0 4%; height: 68px; }
  .nav-logo img { width: 160px; }
  .nav-toggle { display: flex; }
  .nav-menu-wrap {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none; padding: 1rem 5%;
  }
  .nav-menu-wrap.is-open { display: block; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: .9rem 0; font-size: 1rem;
    border-bottom: 1px solid var(--gray-2);
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-cta {
    display: inline-block; margin-top: .75rem; text-align: center;
  }
}
@media (max-width: 600px) {
  .phases-grid, .why-grid { grid-template-columns: 1fr; }
  .contact-form-wrap .form-row { grid-template-columns: 1fr; }
}

/* scroll fade-in */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }
/* Fallback: als JS niet geladen is of reduced-motion aan staat, altijd tonen */
.no-js .fade-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Artikelen / Blog
   ========================================================= */
.blog-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem) 4rem;
}
.blog-hero {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.blog-hero-label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.blog-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.blog-hero-sub {
  color: var(--text-lt);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(20, 36, 72, .25);
  border-color: var(--blue-lt);
}
.blog-card-media {
  display: block;
  aspect-ratio: 16/9;
  background: var(--blue-pale);
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-pale), var(--gray-1));
}
.blog-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.blog-card-meta {
  font-size: .8rem;
  color: var(--gray-3);
  letter-spacing: .04em;
}
.blog-card-title {
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--navy);
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--orange); }
.blog-card-excerpt {
  color: var(--text-lt);
  font-size: .95rem;
  line-height: 1.55;
  flex: 1;
}
.blog-card-link {
  margin-top: .4rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  font-size: .95rem;
}
.blog-card-link:hover { color: var(--orange-lt); }

.blog-pagination { margin-top: 3rem; }
.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.blog-pagination .page-numbers {
  padding: .55rem .95rem;
  border-radius: 8px;
  border: 1px solid var(--gray-2);
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  background: #fff;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.blog-empty {
  text-align: center;
  color: var(--text-lt);
  padding: 3rem 1rem;
}

/* Single post */
.blog-single {
  max-width: 760px;
  margin: 0 auto;
}
.blog-single-header { text-align: center; margin-bottom: 2rem; }
.blog-single-meta {
  font-size: .9rem;
  color: var(--text-lt);
  margin-bottom: 1rem;
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-single-meta a { color: var(--orange); text-decoration: none; font-weight: 600; }
.blog-single-meta a:hover { color: var(--orange-lt); }
.blog-single-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.blog-single-lede {
  font-size: 1.15rem;
  color: var(--text-lt);
  line-height: 1.55;
}
.blog-single-media {
  margin: 2rem -1rem 2.5rem;
  border-radius: 14px;
  overflow: hidden;
}
.blog-single-media img { width: 100%; height: auto; display: block; }
.blog-single-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}
.blog-single-content h2 { font-size: 1.6rem; color: var(--navy); margin: 2rem 0 .8rem; }
.blog-single-content h3 { font-size: 1.3rem; color: var(--navy); margin: 1.6rem 0 .6rem; }
.blog-single-content p,
.blog-single-content ul,
.blog-single-content ol,
.blog-single-content blockquote { margin-bottom: 1.2rem; }
.blog-single-content ul,
.blog-single-content ol { padding-left: 1.4rem; }
.blog-single-content a { color: var(--orange); text-decoration: underline; }
.blog-single-content blockquote {
  border-left: 4px solid var(--orange);
  padding: .5rem 1.2rem;
  color: var(--text-lt);
  font-style: italic;
  background: var(--gray-1);
  border-radius: 0 8px 8px 0;
}
.blog-single-content img { max-width: 100%; height: auto; border-radius: 10px; }
.blog-single-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-2);
  font-size: .9rem;
  color: var(--text-lt);
}
.blog-single-footer a { color: var(--navy); text-decoration: none; }
.blog-single-footer a:hover { color: var(--orange); }

.blog-prevnext {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-prevnext a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  padding: .8rem 1.1rem;
  border: 1px solid var(--gray-2);
  border-radius: 10px;
  background: #fff;
  display: inline-block;
  max-width: 320px;
}
.blog-prevnext a:hover { border-color: var(--navy); color: var(--orange); }

@media (max-width: 600px) {
  .blog-single-media { margin-left: 0; margin-right: 0; }
}
