/* ═══════════════════════════════════════════════════════════════════
   Solid Border — Design System v2
   "Steel & Gold" — Precision cybersecurity boutique aesthetic
   ═══════════════════════════════════════════════════════════════════

   Palette
   ──────────────────────────────────────────────────────────────────
   Deep Navy:    #1C1640   (hero/footer backgrounds — richer than #2A2159)
   Navy:         #2A2159   (primary brand color)
   Gold:         #C8A951   (accent — sparingly on key moments)
   Near-Black:   #0F0F0E   (team section background)
   Body:         #5A5858   (body text — warmer than pure #666)
   Warm Border:  #E0DDD8   (cards, dividers — warm not cold gray)
   Off-White:    #F6F5F2   (subtle warm section backgrounds)

   Typography
   ──────────────────────────────────────────────────────────────────
   Display:  GT Walsheim Pro (300 light, 500 medium, 700 bold)
   Body:     Source Sans Pro (300 light, 400 regular, 600 semibold)
*/

/* ── Font declarations ──────────────────────────────────────────── */
@font-face {
  font-family: 'GT Walsheim Pro';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/GT-Walsheim-Pro-Trial-Light.otf') format('opentype');
}
@font-face {
  font-family: 'GT Walsheim Pro';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/GT-Walsheim-Pro-Trial-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'GT Walsheim Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/GT-Walsheim-Pro-Trial-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/sourcesanspro-300.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/sourcesanspro-400.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/sourcesanspro-400-italic.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/sourcesanspro-600.woff') format('woff');
}

/* ── CSS custom properties ──────────────────────────────────────── */
:root {
  --sb-deep-navy:   #1C1640;
  --sb-navy:        #2d2d83;
  --sb-gold:        #C8A951;
  --sb-gold-light:  #D9BC72;
  --sb-near-black:  #0F0F0E;
  --sb-body:        #3D3B3B;
  --sb-border:      #E0DDD8;
  --sb-off-white:   #F6F5F2;
  --sb-font-display: 'GT Walsheim Pro', Helvetica, Arial, sans-serif;
  --sb-font-body:   'Source Sans Pro', Helvetica, Arial, sans-serif;
}

/* ── Base reset & typography ────────────────────────────────────── */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sb-font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--sb-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sb-font-display);
  color: #1A1633;
  font-weight: 300;
  line-height: 1.2;
}

a {
  transition: color 0.25s, opacity 0.25s, border-color 0.25s;
}

.content a {
  color: var(--sb-navy);
  font-weight: 600;
  text-decoration: none;
}
.content a:hover {
  color: var(--sb-deep-navy);
}

/* Override theme's $grey (#888) — applied to .content p, li, blockquote */
.content p,
.content li,
.content blockquote,
.content td,
.content th {
  color: var(--sb-body);
}

/* ── Navigation ─────────────────────────────────────────────────── */
.header {
  border-bottom: 1px solid var(--sb-border);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  max-width: 100%;
  padding-left: 3%;
  padding-right: 3%;
}

#main-menu ul {
  gap: 0.25em;
}

#main-menu li a {
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1633;
  opacity: 0.7;
  padding: 0.5em 1em;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}

#main-menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1em;
  right: 1em;
  height: 1.5px;
  background: var(--sb-gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

#main-menu li a:hover,
#main-menu li.active a {
  opacity: 1;
  color: var(--sb-navy);
  text-decoration: none;
}

#main-menu li a:hover::after,
#main-menu li.active a::after {
  transform: scaleX(1);
}

.title,
.title h1 {
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
  text-align: center;
  color: #1A1633;
}

/* Inner page headings */
.content h1 {
  font-size: 2.4em;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #1A1633;
}

.content h2 {
  font-size: 1.65em;
  font-weight: 300;
  color: #1A1633;
  margin-top: 2em;
}

.content h3 {
  font-size: 1.1em;
  font-weight: 500;
  color: var(--sb-navy);
}

/* ── Homepage wrapper ───────────────────────────────────────────── */
.sb-home-content {
  width: 100%;
}

.sb-home-content h1 {
  font-size: 2.7em;
  font-weight: 300;
  line-height: 1.25em;
}
.sb-home-content h2 {
  font-size: 2.2em;
  font-weight: 300;
  line-height: 1.15;
}
.sb-home-content h3 {
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Gold accent separator ──────────────────────────────────────── */
.sb-separator {
  display: block;
  width: 2.5em;
  height: 2px;
  background: var(--sb-gold);
  margin-bottom: 2em;
  border: none;
  box-shadow: none;
}

/* ── Hero entrance animation ────────────────────────────────────── */
@keyframes sb-hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero ───────────────────────────────────────────────────────── */
.sb-hero {
  position: relative;
  background-image: url('/images/back.jpg');
  background-size: cover;
  background-position: center 40%;
  min-height: 550px;
  display: flex;
  align-items: center;
  padding: 5em 5%;
}

.sb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2A2159;
  opacity: 0.8;
  z-index: 0;
}

.sb-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 600px;
  animation: sb-hero-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.sb-hero-content .sb-separator {
  background: var(--sb-gold);
}

.sb-hero-content h1 {
  color: white;
  font-size: 2.7em;
  font-weight: 300;
  line-height: 1.25em;
  margin-bottom: 0.5em;
}

.sb-hero-content p {
  color: white;
  font-size: 1.85em;
  font-weight: 300;
  line-height: 1.25em;
  opacity: 0.9;
}

/* ── Team section ───────────────────────────────────────────────── */
.sb-team {
  display: flex;
  flex-wrap: wrap;
  background: var(--sb-near-black);
  color: white;
  padding: 0;
}

.sb-team-image {
  flex: 1 1 520px;
  min-height: 460px;
  background-image: url('/images/team.jpg');
  background-size: cover;
  background-position: 50% 65%;
}

.sb-team-text {
  flex: 1 1 380px;
  padding: 5.5em 5%;
  color: #C9CACC;
  font-size: 1em;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sb-team-text p {
  color: #C9CACC;
}

.sb-team-text .sb-separator {
  background: var(--sb-gold);
}

.sb-team-text h2 {
  color: white;
  font-family: var(--sb-font-display);
  font-weight: 300;
  font-size: 2em;
  line-height: 1.2;
  margin-bottom: 0.75em;
}

/* ── Featured vendors ───────────────────────────────────────────── */
.sb-featured-vendors {
  text-align: center;
  padding: 5.5em 5%;
  background: var(--sb-off-white);
}

.sb-featured-vendors > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.sb-featured-vendors h2 {
  font-family: var(--sb-font-display);
  font-weight: 300;
  font-size: 2em;
  color: #1A1633;
  margin-bottom: 0.35em;
}

.sb-featured-vendors .sb-eyebrow {
  display: block;
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.72em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sb-gold);
  margin-bottom: 0.6em;
}

.sb-vendor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5em 1em;
  margin: 3em auto 3em;
  max-width: 960px;
}

.sb-vendor-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25em 1.75em;
  transition: opacity 0.2s;
}

.sb-vendor-grid img {
  max-height: 40px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.sb-vendor-grid a:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── Outline / CTA buttons ──────────────────────────────────────── */
.sb-outline-button {
  display: inline-block;
  padding: 0.65em 1.5em;
  border: 1.5px solid var(--sb-navy);
  color: var(--sb-navy);
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.sb-outline-button:hover {
  background: var(--sb-navy);
  color: white;
}

/* ── Blog teaser (homepage) ─────────────────────────────────────── */
.sb-blog-section {
  background: var(--sb-deep-navy);
  color: white;
  padding: 5.5em 6%;
  line-height: 1.7;
}

.sb-blog-section .sb-blog-label {
  display: block;
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.72em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sb-gold);
  margin-bottom: 0.75em;
}

.sb-blog-section h3 {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.72em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sb-blog-section h2 {
  color: white;
  font-family: var(--sb-font-display);
  font-weight: 300;
  font-size: 1.85em;
  line-height: 1.25;
}

.sb-blog-section a {
  color: inherit;
  text-decoration: none;
}

.sb-blog-section a:hover {
  color: var(--sb-gold-light);
}

.sb-blog-section p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.sb-blog-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5em;
  max-width: 1100px;
}

.sb-blog-grid > div {
  flex: 1;
  min-width: 180px;
}

/* Left column: typographic anchor */
.sb-blog-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 0.5em;
}

.sb-blog-grid > .sb-blog-entry {
  flex: 2.5;
  display: flex;
  flex-direction: column;
  gap: 1em;
  border-left: 1.5px solid rgba(200, 169, 81, 0.45);
  padding-left: 2.5em;
}

.sb-blog-all-link {
  display: block;
  margin-top: 1.5em;
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.72em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.sb-blog-all-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.sb-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1em;
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sb-gold);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.sb-read-more::after {
  content: '→';
  font-size: 1.1em;
}

.sb-read-more:hover {
  opacity: 1;
  color: var(--sb-gold-light);
}

/* ── Blog list page ─────────────────────────────────────────────── */
.sb-blog-post-card {
  border: 1px solid var(--sb-border);
  border-left: 3px solid transparent;
  padding: 1.75em 2em;
  margin-bottom: 1.25em;
  background: white;
  transition: border-left-color 0.2s, box-shadow 0.2s;
  border-radius: 2px;
}

.sb-blog-post-card:hover {
  border-left-color: var(--sb-gold);
  box-shadow: 0 4px 20px rgba(28, 22, 64, 0.06);
}

.sb-blog-post-card-title {
  color: var(--sb-navy);
  font-family: var(--sb-font-display);
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4em;
  line-height: 1.3;
  transition: color 0.2s;
}

.sb-blog-post-card-title:hover {
  color: var(--sb-deep-navy);
}

.sb-blog-post-card-desc {
  color: var(--sb-body);
  font-weight: 300;
  line-height: 1.65;
  margin: 0.4em 0 0;
}

.sb-blog-post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25em;
  padding-top: 1em;
  border-top: 1px solid var(--sb-off-white);
}

.sb-blog-post-card-date {
  color: #808080;
  font-size: 0.82em;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.sb-blog-post-card-read-more {
  color: var(--sb-navy);
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.78em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.sb-blog-post-card-read-more:hover {
  color: var(--sb-gold);
}

/* ── Footer ─────────────────────────────────────────────────────── */
.sb-footer {
  background: #0F0F0E;
  color: white;
  padding: 4.5em 0 3em;
  border-top: 1.5px solid rgba(200, 169, 81, 0.35);
}

.sb-footer .sb-separator {
  background: var(--sb-gold);
  opacity: 0.6;
}

.sb-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4em;
}

.sb-footer-contact {
  flex: 1 1 280px;
}

.sb-footer-contact .sb-big {
  font-family: var(--sb-font-display);
  font-size: 1.65em;
  font-weight: 300;
  color: white;
  margin-bottom: 0.75em;
  line-height: 1.2;
}

.sb-footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 0.95em;
  line-height: 1.8;
}

.sb-footer-contact p a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.sb-footer-contact p a:hover {
  color: white;
}

.sb-footer-contact strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.sb-footer-nav {
  flex: 0 0 auto;
  margin-left: auto;
}

.sb-footer-nav-cols {
  display: flex;
  gap: 4em;
}

.sb-footer-nav-col p {
  font-family: var(--sb-font-display);
  color: var(--sb-gold);
  font-weight: 500;
  font-size: 0.72em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.sb-footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sb-footer-nav-col ul li {
  margin-bottom: 0.5em;
}

.sb-footer-nav-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.sb-footer-nav-col a:hover {
  color: white;
}

.sb-footer-cta {
  display: inline-block;
  padding: 0.65em 1.5em;
  border: 1px solid rgba(200, 169, 81, 0.5);
  color: var(--sb-gold);
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 1.5em;
}

.sb-footer-cta:hover {
  border-color: var(--sb-gold);
  background: rgba(200, 169, 81, 0.08);
  color: var(--sb-gold-light);
}

/* ── Vendor card grid (regular) ─────────────────────────────────── */
.sb-vendor-card-grid {
  display: grid;
  gap: 0;
  background: white;
  border: 1px solid var(--sb-border);
  border-radius: 3px;
  overflow: hidden;
  margin: 1.5em 0 2em;
}

.sb-vendor-cols-1 { grid-template-columns: 1fr; }
.sb-vendor-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sb-vendor-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sb-vendor-cols-4 { grid-template-columns: repeat(4, 1fr); }

.sb-vendor-card {
  display: flex;
  align-items: center;
  gap: 1.25em;
  padding: 1.25em 1.5em;
  background: white;
  border-bottom: 1px solid var(--sb-border);
  border-right: 1px solid var(--sb-border);
  transition: background 0.2s, border-left-color 0.2s;
  border-left: 3px solid transparent;
}

.sb-vendor-card:hover {
  background: var(--sb-off-white);
  border-left-color: var(--sb-gold);
}

.sb-vendor-card-logo {
  width: 72px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sb-vendor-card-logo img {
  max-height: 48px;
  max-width: 72px;
  object-fit: contain;
}

.sb-vendor-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  min-width: 0;
}

.sb-vendor-card-info a {
  text-decoration: none;
  color: inherit;
}

.sb-vendor-card-info a:hover strong {
  color: var(--sb-navy);
}

.sb-vendor-card-info strong {
  color: #1A1633;
  font-weight: 600;
  font-size: 0.92em;
  transition: color 0.2s;
}

.sb-vendor-card-info span {
  color: #585656;
  font-size: 0.83em;
  line-height: 1.35;
}

/* ── Vendor tier1 grid ──────────────────────────────────────────── */
.sb-vendor-grid-tier1 {
  display: grid;
  gap: 1.25em;
  margin: 1.5em 0 2em;
}

.sb-vendor-tier1-card {
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em 2.25em;
  border: 1px solid var(--sb-border);
  border-left: 3px solid var(--sb-gold);
  border-radius: 2px;
  background: white;
  transition: box-shadow 0.2s;
}

.sb-vendor-tier1-card:hover {
  box-shadow: 0 4px 24px rgba(28, 22, 64, 0.07);
}

.sb-vendor-tier1-card img {
  max-height: 56px;
  max-width: 96px;
  object-fit: contain;
  flex-shrink: 0;
}

.sb-vendor-tier1-info {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.sb-vendor-tier1-info a {
  text-decoration: none;
  color: inherit;
}

.sb-vendor-tier1-info a:hover strong {
  color: var(--sb-gold);
}

.sb-vendor-tier1-info strong {
  color: var(--sb-navy);
  font-family: var(--sb-font-display);
  font-weight: 500;
  font-size: 1.05em;
  transition: color 0.2s;
}

.sb-vendor-tier1-info span {
  color: #4A4848;
  font-size: 0.92em;
  line-height: 1.45;
}

.sb-vendor-tier1-extended {
  margin: 0.5em 0 0;
  color: #4A4848;
  font-size: 0.9em;
  line-height: 1.65;
}

/* ── Services cards ─────────────────────────────────────────────── */
.sb-service-card {
  padding: 2em 2.25em;
  border: 1px solid var(--sb-border);
  border-left: 3px solid var(--sb-navy);
  margin-bottom: 1.25em;
  border-radius: 2px;
  background: white;
  transition: border-left-color 0.2s, box-shadow 0.2s;
}

.sb-service-card:hover {
  border-left-color: var(--sb-gold);
  box-shadow: 0 4px 20px rgba(28, 22, 64, 0.05);
}

.sb-service-card h3 {
  color: var(--sb-navy);
  margin-top: 0;
  font-family: var(--sb-font-display);
  font-weight: 500;
}

/* ── Contact ────────────────────────────────────────────────────── */
.sb-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 2em;
}

.sb-contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.sb-placeholder {
  padding: 3em;
  border: 1.5px dashed var(--sb-border);
  text-align: center;
  border-radius: 4px;
  margin: 2em 0;
}

.sb-placeholder p {
  margin: 0.5em 0;
  color: var(--sb-body);
}

/* ── Code blocks ────────────────────────────────────────────────── */
.content pre {
  border-radius: 8px;
  padding: 1.25em 1.5em;
  overflow-x: auto;
  position: relative;
}

.sb-copy-btn {
  position: absolute;
  top: 0.6em;
  right: 0.6em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.3em 0.5em;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.75em;
  font-family: var(--sb-font-display);
}

.sb-copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.sb-copy-btn--copied {
  background: rgba(100, 200, 120, 0.25);
  border-color: rgba(100, 200, 120, 0.5);
  color: #7dda8a;
}

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.sb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.82em;
  font-family: var(--sb-font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #aaa;
  margin-bottom: 1.25em;
}

.sb-breadcrumb a {
  color: var(--sb-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.sb-breadcrumb a:hover {
  color: var(--sb-gold);
}

.sb-breadcrumb span {
  color: #ccc;
}

.sb-breadcrumb span:last-child {
  color: #888;
}

/* ── DIR page ───────────────────────────────────────────────────── */
.sb-dir-header {
  text-align: center;
  margin-bottom: 2.5em;
}

.page-dir .content h2,
.page-dir .content h3,
.page-dir-single .content h2,
.page-dir-single .content h3,
.page-wide .content h2,
.page-wide .content h3 {
  font-weight: 700;
}

.page-dir .content h3,
.page-dir-single .content h3 {
  color: #1A1633;
}

.page-dir .content hr,
.page-dir-single .content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2em 0;
}

/* ── Responsive vendor grids ────────────────────────────────────── */
@media (max-width: 768px) {
  .sb-vendor-cols-2,
  .sb-vendor-cols-3,
  .sb-vendor-cols-4 {
    grid-template-columns: 1fr;
  }
  .sb-vendor-grid-tier1 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .sb-vendor-cols-3,
  .sb-vendor-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sb-vendor-grid-tier1:not(.sb-vendor-cols-1) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sb-vendor-grid-tier1:not(.sb-vendor-cols-1) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .sb-home-content h1 {
    font-size: 3.2em;
  }

  .sb-hero {
    min-height: 400px;
    padding: 3em 5%;
  }

  .sb-hero-content h1 {
    font-size: 3.2em;
  }

  .sb-team {
    flex-direction: column;
  }

  .sb-team-image {
    min-height: 320px;
  }

  .sb-blog-grid {
    flex-direction: column;
    gap: 2.5em;
  }

  .sb-blog-grid > .sb-blog-entry {
    border-left: none;
    border-top: 1.5px solid var(--sb-gold);
    padding-left: 0;
    padding-top: 1.5em;
  }

  .sb-footer-nav {
    margin-left: 0;
  }

  .sb-footer-nav-cols {
    gap: 2.5em;
  }

  .sb-footer-grid {
    flex-direction: column;
    gap: 2.5em;
  }

  .sb-vendor-grid a {
    padding: 1em 1.25em;
  }
}

@media (max-width: 576px) {
  .sb-home-content h1 {
    font-size: 2.4em;
  }

  .sb-hero-content h1 {
    font-size: 2.4em;
  }

  .sb-footer-nav-cols {
    flex-direction: column;
    gap: 1.5em;
  }
}
