#sn-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  font-family: Arial, Helvetica, sans-serif;
  transition: box-shadow 0.3s;
}

#sn-nav.sn-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

/* ---- INNER WRAPPER ---- */

.sn-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ---- LOGO ---- */

.sn-nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.sn-nav-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  color: #0D2B55;
  letter-spacing: -0.5px;
}

.sn-nav-logo-dot {
  color: #E8821A;
}

.sn-nav-logo-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #8A96A8;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

/* ---- DESKTOP LINKS ---- */

.sn-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.sn-nav-links > li {
  position: relative;
}

.sn-nav-links > li > a, .sn-nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #3D4A5C;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.sn-nav-links > li > a:hover, .sn-nav-links > li > button:hover, .sn-nav-links > li > a.sn-active {
  color: #0D2B55;
  background: #F7F9FC;
}

.sn-nav-arrow {
  font-size: 9px;
  margin-top: 1px;
  transition: transform 0.2s;
}

.sn-nav-links > li.sn-open .sn-nav-arrow {
  transform: rotate(180deg);
}

/* ---- DROPDOWN ---- */

.sn-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.13);
  padding: 24px 20px;
  min-width: 480px;
  display: none;
  gap: 24px;
  z-index: 200;
}

.sn-nav-links > li:hover .sn-dropdown, .sn-nav-links > li.sn-open .sn-dropdown {
  display: flex;
}

.sn-dropdown-col {
  flex: 1;
}

.sn-dropdown-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8A96A8;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #F0F4F8;
}

.sn-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #3D4A5C;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.sn-dropdown a:hover {
  background: #F0F5FF;
  color: #0D2B55;
}

.sn-dropdown-icon {
  font-size: 15px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.sn-dropdown-featured {
  background: #FFF8F2;
  color: #E8821A !important;
  font-weight: 700 !important;
  border-radius: 8px;
  margin-top: 4px;
}

.sn-dropdown-featured:hover {
  background: #FDEFD8 !important;
}

.sn-dropdown hr {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 8px 0;
}

.sn-dropdown-all {
  color: #1A4A8A !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}

/* ---- NAV CTA ---- */

.sn-nav-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #E8821A;
  color: #FFFFFF !important;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(232,130,26,0.35);
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
  line-height: 1.2;
}

.sn-nav-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.sn-nav-cta-number {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.sn-nav-cta-label {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.sn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.sn-hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: #0D2B55;
  border-radius: 2px;
  transition: all 0.25s;
}

.sn-hamburger.sn-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sn-hamburger.sn-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.sn-hamburger.sn-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU PANEL ---- */

.sn-mobile-panel {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding: 12px 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-height: 80vh;
  overflow-y: auto;
}

.sn-mobile-panel.sn-open {
  display: flex;
}

.sn-mobile-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8A96A8;
  padding: 12px 12px 4px;
}

.sn-mobile-panel a {
  display: block;
  padding: 11px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #3D4A5C;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}

.sn-mobile-panel a:hover {
  background: #F7F9FC;
  color: #0D2B55;
}

.sn-mobile-panel hr {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 8px 0;
}

.sn-mobile-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E8821A !important;
  color: #FFFFFF !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(232,130,26,0.4);
}

/* ---- MOBILE BOTTOM BAR ---- */

.sn-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #E8821A;
  padding: 13px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sn-bottom-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.sn-bottom-bar-sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  display: block;
  text-align: center;
  margin-top: 2px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255,255,255,0.85);
}

#sn-meetings-item {
  position: relative;
}

.sn-dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  display: block;
}

/* Ensure the dropdown appears on hover for desktop */

@media (min-width: 992px) {
  #sn-meetings-item:hover .sn-dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}

/* ---- RESPONSIVE ---- */

@media (max-width: 960px) {
  .sn-nav-links {
    display: none;
  }
  .sn-hamburger {
    display: flex;
  }
  .sn-nav-cta-label {
    display: none;
  }
  .sn-nav-cta {
    padding: 9px 14px;
  }
  .sn-nav-cta-number {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .sn-nav-cta {
    display: none;
  }
  .sn-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 62px;
  }
  .sn-blog-hero {
    padding: 44px 16px 38px;
  }
  .sn-author-box {
    flex-direction: column;
    gap: 14px;
  }
  .sn-related-grid {
    grid-template-columns: 1fr;
  }
  .sn-cat-hero {
    padding: 40px 16px 36px;
  }
  .sn-blog-home-hero {
    padding: 44px 16px 0;
  }
  .sn-featured-post-body {
    padding: 20px 18px 22px;
  }
  .sn-blog-cat-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

/* ---- LAYOUT ---- */

.sn-section {
  padding: 80px 20px;
}

.sn-section-sm {
  padding: 50px 20px;
  margin-top: -63px !important;
}

.sn-container {
  max-width: 1060px;
  margin: 0 auto;
}

.sn-container-sm {
  max-width: 780px;
  margin: 0 auto;
}

.sn-container-xs {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ---- BACKGROUNDS ---- */

.sn-bg-white {
  background: #FFFFFF;
}

.sn-bg-light {
  background: #F7F9FC;
}

.sn-bg-bluelight {
  background: #F0F5FF;
}

.sn-bg-navy {
  background: #0D2B55;
}

.sn-bg-gradient {
  background: linear-gradient(90deg, #0D2B55 0%, #1E6B72 100%);
}

.sn-bg-hero {
  background: linear-gradient(135deg, #0D2B55 0%, #1A4A8A 60%, #1E6B72 100%);
}

.sn-h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.18;
  color: #0D2B55;
  margin: 0 0 20px 0;
}

.sn-h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: #0D2B55;
  margin: 0 0 18px 0;
}

.sn-h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D2B55;
  margin: 0 0 10px 0;
}

.sn-h1.light, .sn-h2.light, .sn-h3.light {
  color: #FFFFFF;
}

.sn-h2.center, .sn-h3.center {
  text-align: center;
}

.sn-lead {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0 0 36px 0;
}

.sn-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #3D4A5C;
  line-height: 1.75;
  margin: 0 0 16px 0;
}

.sn-text-sm {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.7;
  margin: 0;
}

.sn-text-xs {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #8A96A8;
  margin: 0;
}

.sn-section-header {
  text-align: center;
  margin-bottom: 52px;
}

/* ---- BADGES ---- */

.sn-badge {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.sn-badge-blue {
  background: #E8F4FD;
  color: #1A4A8A;
}

.sn-badge-orange {
  background: #FFF3E0;
  color: #E8821A;
}

.sn-badge-green {
  background: #E8F8F0;
  color: #2E8B57;
}

.sn-badge-ghost {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #A8D8EA;
  border-radius: 50px;
}

.sn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.sn-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.sn-btn-xl {
  font-size: 22px;
  padding: 20px 44px;
}

.sn-btn-lg {
  font-size: 18px;
  padding: 16px 32px;
}

.sn-btn-md {
  font-size: 16px;
  padding: 14px 28px;
}

.sn-btn-sm {
  font-size: 14px;
  padding: 10px 22px;
}

.sn-btn-primary {
  background: #E8821A;
  color: #FFFFFF !important;
  box-shadow: 0 6px 24px rgba(232,130,26,0.4);
}

.sn-btn-outline {
  background: transparent;
  color: #FFFFFF !important;
  border: 2px solid rgba(255,255,255,0.55);
}

.sn-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---- CARDS ---- */

.sn-card {
  background: #F7F9FC;
  border-radius: 16px;
  padding: 32px 28px;
}

.sn-card-white {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.sn-card-step {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sn-card-border-blue {
  border-top: 4px solid #1A4A8A;
}

.sn-card-border-green {
  border-top: 4px solid #2E8B57;
}

.sn-card-border-orange {
  border-top: 4px solid #E8821A;
}

.sn-card-border-purple {
  border-top: 4px solid #9B59B6;
}

.sn-card-border-red {
  border-top: 4px solid #E74C3C;
}

.sn-card-border-teal {
  border-top: 4px solid #1E6B72;
}

.sn-card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

/* ---- GRIDS ---- */

.sn-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 50px;
  align-items: center;
}

.sn-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sn-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.sn-grid-states {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 10px;
}

.sn-grid-cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* ---- FLEX ---- */

.sn-flex-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.sn-flex-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sn-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.sn-col-text {
  flex: 1 1 420px;
}

.sn-col-img {
  flex: 1 1 380px;
}

.sn-img-block {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.sn-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sn-photo-placeholder {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  padding: 30px;
  background: #D6E4F0;
  color: #6B8BA4;
  font-family: Arial, Helvetica, sans-serif;
}

.sn-photo-placeholder.green {
  background: #E0F0E8;
  color: #4A8B6E;
}

.sn-photo-placeholder.warm {
  background: #F0E8DC;
  color: #8B6A4A;
}

.sn-photo-placeholder-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.sn-photo-placeholder-label {
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.sn-photo-placeholder-hint {
  font-size: 11px;
  opacity: 0.75;
  margin-top: 5px;
  display: block;
  line-height: 1.5;
}

/* Human Photo Card */

.sn-human-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.sn-human-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  background: #C8D8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B8BA4;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: center;
}

.sn-human-card-body {
  padding: 22px;
}

.sn-human-card-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-style: italic;
  color: #4A5568;
  line-height: 1.7;
  margin: 0 0 14px 0;
}

.sn-human-card-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0D2B55;
  margin: 0;
}

.sn-human-card-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #8A96A8;
  margin: 2px 0 0 0;
}

/* City Card */

.sn-city-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.sn-city-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.sn-city-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  background: #C8D8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B8BA4;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.sn-city-card-body {
  padding: 18px 20px;
}

.sn-city-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0D2B55;
  margin: 0 0 4px 0;
}

.sn-city-meta {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #8A96A8;
  margin: 0 0 12px 0;
}

.sn-city-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #E8821A;
  text-decoration: none;
}

.sn-city-link:hover {
  text-decoration: underline;
}

/* State Link */

.sn-state-link {
  display: block;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A4A8A;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.sn-state-link:hover {
  background: #F7F9FC;
  border-color: #1A4A8A;
  color: #0D2B55;
}

/* ---- STATS BAR ---- */

.sn-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px 40px;
  text-align: center;
  flex-direction: row;
  align-items: center;
  padding-top: 60px !important;
  padding: 20px;
}

.sn-stat-item {
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  flex: 1;
}

.sn-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #E8821A;
}

.sn-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
}

.sn-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  min-height: 40px;
}

/* ---- CHECKLIST ---- */

.sn-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sn-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #3D4A5C;
}

.sn-check-icon {
  color: #2E8B57;
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ---- STEP NUMBERS ---- */

.sn-step-number {
  width: 56px;
  height: 56px;
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.sn-step-blue {
  background: #1A4A8A;
}

.sn-step-green {
  background: #2E8B57;
}

.sn-step-orange {
  background: #E8821A;
}

/* ---- INFO ROWS ---- */

.sn-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F7F9FC;
  border-radius: 10px;
  padding: 18px 20px;
}

.sn-info-icon {
  font-size: 22px;
  min-width: 30px;
}

.sn-info-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0D2B55;
  display: block;
  margin-bottom: 4px;
}

.sn-info-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #4A5568;
  line-height: 1.6;
}

/* ---- FAQ ---- */

.sn-faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sn-faq-q {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0D2B55;
  margin: 0 0 10px 0;
}

.sn-faq-a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.75;
  margin: 0;
}

/* ---- HERO ---- */

.sn-hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px;
}

.sn-hero-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.sn-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
}

.sn-hero-micro {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 22px 0 0 0;
}

/* ---- TRUST BADGES ---- */

.sn-trust-badge {
  background: #F7F9FC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #6B7A8D;
}

/* ---- DIVIDER ---- */

.sn-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 0;
}

@media (max-width: 768px) {
  .sn-section {
    padding: 50px 16px;
  }
  .sn-grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sn-grid-3 {
    grid-template-columns: 1fr;
  }
  .sn-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sn-grid-cities {
    grid-template-columns: 1fr;
  }
  .sn-grid-states {
    grid-template-columns: repeat(3, 1fr);
  }
  .sn-col-text, .sn-col-img {
    flex: 1 1 100%;
  }
  .sn-btn-xl {
    font-size: 18px;
    padding: 16px 28px;
  }
  .sn-stat-divider {
    display: none;
  }
  .sn-stats-inner {
    gap: 20px;
    flex-direction: column;
  }
  .sn-stat-number {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .sn-cards-row {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .sn-grid-4 {
    grid-template-columns: 1fr;
  }
  .sn-grid-states {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* The container needs to be the 'clipper' */

.sn-city-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.sn-blog-hero {
  background: linear-gradient(135deg, #0D2B55 0%, #1A4A8A 60%, #1E6B72 100%);
  padding: 64px 20px 52px;
}

.sn-blog-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.sn-blog-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.sn-blog-breadcrumb {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.sn-blog-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.sn-blog-breadcrumb a:hover {
  color: rgba(255,255,255,0.85);
}

.sn-blog-breadcrumb-sep {
  margin: 0 4px;
}

.sn-blog-hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  color: #FFFFFF;
  margin: 0 0 22px 0;
}

.sn-blog-hero-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}

.sn-blog-author-avatar, .sn-blog-author-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.sn-blog-byline-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.sn-blog-byline-name {
  font-weight: 700;
  color: #FFFFFF;
}

.sn-blog-byline-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 3px;
}

.sn-blog-byline-dot::before {
  content: "\00B7";
  margin-right: 10px;
  opacity: 0.45;
}

.sn-blog-layout {
  max-width: 1060px;
  margin: 0 auto;
  padding: 52px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}

.sn-blog-featured-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 38px;
  background: #D6E4F0;
}

.sn-blog-featured-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.sn-article-body h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(21px, 2.8vw, 27px);
  font-weight: 700;
  line-height: 1.25;
  color: #0D2B55;
  margin: 44px 0 14px 0;
}

.sn-article-body h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  font-weight: 700;
  color: #0D2B55;
  margin: 32px 0 10px 0;
}

.sn-article-body p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #3D4A5C;
  line-height: 1.8;
  margin: 0 0 18px 0;
}

.sn-article-body a {
  color: #1A4A8A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sn-article-body a:hover {
  color: #0D2B55;
}

.sn-article-body ul, .sn-article-body ol {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #3D4A5C;
  line-height: 1.8;
  margin: 0 0 20px 0;
  padding-left: 22px;
}

.sn-article-body li {
  margin-bottom: 8px;
}

.sn-article-body strong {
  color: #0D2B55;
  font-weight: 700;
}

.sn-pullquote {
  border-left: 4px solid #E8821A;
  background: #FFF8F2;
  border-radius: 0 10px 10px 0;
  padding: 22px 26px;
  margin: 32px 0;
}

.sn-pullquote p {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 18px !important;
  font-style: italic;
  color: #0D2B55 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

.sn-pullquote cite {
  display: block;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  color: #E8821A;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.sn-callout {
  background: #F0F5FF;
  border: 1px solid #C5D8F0;
  border-radius: 12px;
  padding: 22px 26px;
  margin: 32px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sn-callout-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

.sn-callout-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #3D4A5C;
  line-height: 1.7;
}

.sn-callout-text strong {
  color: #0D2B55;
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.sn-callout-orange {
  background: #FFF8F2;
  border-color: #F5C596;
}

.sn-callout-green {
  background: #E8F8F0;
  border-color: #A8D8BE;
}

.sn-article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sn-article-table thead tr {
  background: #0D2B55;
  color: #FFFFFF;
}

.sn-article-table thead th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sn-article-table tbody tr {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
}

.sn-article-table tbody tr:nth-child(even) {
  background: #F7F9FC;
}

.sn-article-table tbody td {
  padding: 13px 18px;
  color: #3D4A5C;
  line-height: 1.5;
}

/* ---- TAGS ---- */

.sn-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.sn-article-tags-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #8A96A8;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.sn-tag {
  display: inline-block;
  background: #F7F9FC;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 5px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3D4A5C;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.sn-tag:hover {
  background: #EFF4FF;
  border-color: #1A4A8A;
  color: #1A4A8A;
}

/* ---- SHARE BAR ---- */

.sn-share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  margin: 44px 0;
}

.sn-share-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #8A96A8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 4px;
}

.sn-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.sn-share-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.sn-share-facebook {
  background: #1877F2;
  color: #FFFFFF;
}

.sn-share-twitter {
  background: #1DA1F2;
  color: #FFFFFF;
}

.sn-share-linkedin {
  background: #0A66C2;
  color: #FFFFFF;
}

.sn-share-copy {
  background: #F7F9FC;
  color: #3D4A5C;
  border: 1px solid #E2E8F0;
}

.sn-author-box {
  background: #F7F9FC;
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-top: 10px;
}

.sn-author-photo, .sn-author-photo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1A4A8A;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.sn-author-role {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #E8821A;
  margin: 0 0 4px 0;
}

.sn-author-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D2B55;
  margin: 0 0 8px 0;
}

.sn-author-bio {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #4A5568;
  line-height: 1.7;
  margin: 0;
}

/* MOBILE FIX */

/* ---- PREV / NEXT POST NAV ---- */

.sn-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}

.sn-post-nav-item {
  background: #F7F9FC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 18px 20px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  display: block;
}

.sn-post-nav-item:hover {
  background: #EFF4FF;
  border-color: #1A4A8A;
}

.sn-post-nav-item.next {
  text-align: right;
}

.sn-post-nav-dir {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8A96A8;
  display: block;
  margin-bottom: 5px;
}

.sn-post-nav-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  color: #0D2B55;
  line-height: 1.35;
}

/* ---- RELATED POSTS ---- */

.sn-related-posts {
  margin-top: 52px;
}

.sn-related-posts-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  color: #0D2B55;
  margin: 0 0 24px 0;
  padding-bottom: 14px;
  border-bottom: 2px solid #E2E8F0;
}

.sn-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.sn-related-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}

.sn-related-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.sn-related-card-img {
  height: 150px;
  background: #D6E4F0;
  overflow: hidden;
}

.sn-related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sn-related-card-body {
  padding: 16px 18px 20px;
}

.sn-related-card-cat {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E8821A;
  margin: 0 0 6px 0;
}

.sn-related-card-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  color: #0D2B55;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.sn-related-card-date {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #8A96A8;
}

/* ---- SIDEBAR ---- */

.sn-blog-sidebar {
  position: sticky;
  top: 86px;
}

.sn-widget {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.sn-widget-header {
  background: #0D2B55;
  padding: 14px 20px;
}

.sn-widget-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.sn-widget-body {
  padding: 18px 20px;
}

/* TOC */

.sn-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sn-toc li a {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #3D4A5C;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
  border-left: 2px solid transparent;
}

.sn-toc li a:hover, .sn-toc li.sn-toc-active a {
  background: #F0F5FF;
  color: #0D2B55;
  border-left-color: #E8821A;
}

.sn-toc li.sn-toc-h3 a {
  padding-left: 22px;
  font-size: 13px;
  color: #4A5568;
}

/* Sidebar CTA */

.sn-sidebar-cta {
  background: linear-gradient(135deg, #0D2B55 0%, #1E6B72 100%);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  margin-bottom: 24px;
}

.sn-sidebar-cta-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.sn-sidebar-cta-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.sn-sidebar-cta-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.sn-sidebar-cta-btn {
  display: block;
  background: #E8821A;
  color: #FFFFFF;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(232,130,26,0.45);
  transition: opacity 0.2s, transform 0.15s;
}

.sn-sidebar-cta-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.sn-sidebar-cta-phone {
  display: block;
  margin-top: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.sn-sidebar-cta-phone:hover {
  color: rgba(255,255,255,0.9);
}

.sn-recent-post {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F0F4F8;
  text-decoration: none;
  transition: opacity 0.15s;
}

.sn-recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sn-recent-post:first-child {
  padding-top: 0;
}

.sn-recent-post:hover {
  opacity: 0.8;
}

.sn-recent-post-thumb, .sn-recent-post-thumb img {
  width: 64px;
  height: 54px;
  border-radius: 8px;
  background: #D6E4F0;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.sn-recent-post-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0D2B55;
  line-height: 1.4;
  margin: 0 0 4px 0;
}

.sn-recent-post-date {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #8A96A8;
}

@media (max-width: 860px) {
  .sn-blog-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 36px 16px 60px;
  }
  .sn-blog-sidebar {
    position: static;
    margin-top: 48px;
  }
  .sn-blog-featured-img img {
    height: 260px;
  }
  .sn-post-nav {
    grid-template-columns: 1fr;
  }
  .sn-post-nav-item.next {
    text-align: left;
  }
  .sn-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sn-related-grid {
    grid-template-columns: 1fr;
  }
}

.sn-cat-hero {
  background: linear-gradient(135deg, #0D2B55 0%, #1A4A8A 60%, #1E6B72 100%);
  padding: 56px 20px 48px;
}

.sn-cat-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.sn-cat-hero-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.sn-cat-hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  color: #FFFFFF;
  margin: 0 0 14px 0;
}

.sn-cat-hero-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

/* ---- POST GRID ---- */

.sn-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

/* ---- POST CARD ---- */

.sn-post-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.sn-post-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}

/* Card image */

.sn-post-card-img-wrap {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #D6E4F0;
  flex-shrink: 0;
  text-decoration: none;
}

.sn-post-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sn-post-card:hover .sn-post-card-img {
  transform: scale(1.03);
}

/* Category badge on image */

.sn-post-card-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  padding: 4px 12px;
  border-radius: 4px;
}

.sn-post-card-cat-blue {
  background: #E8F4FD;
  color: #1A4A8A;
}

.sn-post-card-cat-orange {
  background: #FFF3E0;
  color: #E8821A;
}

.sn-post-card-cat-green {
  background: #E8F8F0;
  color: #2E8B57;
}

.sn-post-card-cat-teal {
  background: #E0F4F5;
  color: #1E6B72;
}

/* Card body */

.sn-post-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sn-post-card-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #0D2B55;
  margin: 0 0 10px 0;
}

.sn-post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.sn-post-card-title a:hover {
  color: #1A4A8A;
}

.sn-post-card-excerpt {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #4A5568;
  line-height: 1.65;
  margin: 0 0 18px 0;
  flex: 1;
}

/* Container for the 3-step process */

.sn-cards-row {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

/* Individual card behavior */

/* Responsive adjustment for mobile */

/* Card meta row */

.sn-post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #F0F4F8;
  margin-top: auto;
}

.sn-post-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sn-post-card-avatar, .sn-post-card-avatar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  background: #C8D8E8;
}

.sn-post-card-author-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0D2B55;
}

.sn-post-card-meta-right {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #8A96A8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sn-post-card-dot {
  opacity: 0.5;
}

/* ---- ACTIVE CATEGORY LINK ---- */

.sn-state-link-active {
  background: #EFF4FF !important;
  border-color: #1A4A8A !important;
  color: #0D2B55 !important;
  font-weight: 700;
}

/* ---- PAGINATION ---- */

.sn-pagination {
  margin-top: 12px;
}

.sn-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.sn-pagination .page-numbers li {
  display: block;
}

.sn-pagination .page-numbers a, .sn-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3D4A5C;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.sn-pagination .page-numbers a:hover {
  background: #F0F5FF;
  border-color: #1A4A8A;
  color: #0D2B55;
}

.sn-pagination .page-numbers .current {
  background: #0D2B55;
  border-color: #0D2B55;
  color: #FFFFFF;
}

.sn-pagination .page-numbers .dots {
  border-color: transparent;
  background: transparent;
  color: #8A96A8;
  cursor: default;
}

.sn-pagination .page-numbers .prev, .sn-pagination .page-numbers .next {
  padding: 0 18px;
  color: #1A4A8A;
}

/* ---- EMPTY STATE ---- */

.sn-no-posts {
  text-align: center;
  padding: 80px 20px;
}

.sn-no-posts-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.sn-no-posts-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 700;
  color: #0D2B55;
  margin: 0 0 12px 0;
}

/* ---- BLOG LAYOUT ---- */

/* ---- FEATURED IMAGE ---- */

/* ---- ARTICLE BODY ---- */

/* ---- PULL QUOTE ---- */

/* ---- CALLOUT BOX ---- */

/* ---- ARTICLE TABLE ---- */

/* ---- AUTHOR BOX ---- */

/* =============================================
   2. SIDEBAR (shared — single, archive, home)
   ============================================= */

/* =============================================
   3. ARCHIVE PAGE (archive.php)
   ============================================= */

/* ---- ACTIVE CATEGORY ---- */

/* =============================================
   4. BLOG HOMEPAGE (home.php)
   ============================================= */

/* ---- BLOG HOME HERO ---- */

.sn-blog-home-hero {
  background: linear-gradient(135deg, #0D2B55 0%, #1A4A8A 60%, #1E6B72 100%);
  padding: 64px 20px 0;
}

.sn-blog-home-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.sn-blog-home-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 14px 0 16px 0;
}

.sn-blog-home-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 auto 36px auto;
  max-width: 620px;
}

/* ---- CATEGORY TABS ---- */

.sn-blog-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding-bottom: 0;
}

.sn-blog-cat-tab {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 10px 18px 12px;
  border-radius: 8px 8px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  transition: color 0.15s, background 0.15s;
  position: relative;
  bottom: -1px;
  background: rgba(255,255,255,0.06);
}

.sn-blog-cat-tab:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.12);
}

.sn-blog-cat-tab-active {
  color: #0D2B55 !important;
  background: #FFFFFF !important;
  font-weight: 700;
}

/* ---- FEATURED POST ---- */

.sn-featured-post {
  display: block;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 8px;
}

.sn-featured-post:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.sn-featured-post-img-wrap {
  position: relative;
  width: 100%;
  background: #D6E4F0;
  overflow: hidden;
}

.sn-featured-post-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.sn-featured-post:hover .sn-featured-post-img {
  transform: scale(1.02);
}

.sn-featured-post-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #E8821A;
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  padding: 4px 12px;
  border-radius: 4px;
}

.sn-featured-post-body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
}

.sn-featured-post-eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #E8821A;
  display: block;
  margin-bottom: 10px;
}

.sn-featured-post-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: #0D2B55;
  margin: 0 0 12px 0;
}

.sn-featured-post-excerpt {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.7;
  margin: 0 0 18px 0;
}

.sn-featured-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #8A96A8;
  margin-bottom: 18px;
}

.sn-featured-post-author {
  font-weight: 700;
  color: #0D2B55;
}

.sn-featured-post-cta {
  display: inline-flex;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #E8821A;
}

/* =============================================
   5. RESPONSIVE
   ============================================= */