/* ===========================================================
   Action Advisors — Final-pass overrides
   ===========================================================
   These rules load LAST. Their job: stomp anything inherited
   from GeneratePress, GP Premium, GoDaddy Launch, or the
   Customizer inline-CSS that v1.x of this theme inherited.

   We use !important sparingly but deliberately on the
   identity-defining tokens: accent color, display font,
   heading case. If a host plugin tries to inject Montserrat
   or an orange accent again, this file is the trump card.
   ============================================================ */

html, html[lang], body {
  /* Lock down the brand tokens in case a Customizer rule re-defines them */
  --color-accent:        #1F4A5C !important;
  --color-accent-hover:  #173846 !important;
  --color-accent-wash:   #E7EEF1 !important;
  --accent:              #1F4A5C !important;
  --accent-soft:         #E7EEF1 !important;
  --accent-strong:       #173846 !important;

  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif !important;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', Arial, sans-serif !important;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', Menlo, Consolas, monospace !important;
}

/* ----- Base typography reset (kill GP overrides) ---------- */
body, body p, body li, body td, body th,
.entry-content, .entry-content p,
.inside-article {
  font-family: var(--font-body) !important;
  text-transform: none !important;
}

h1, h2, h3, h4, h5, h6,
.entry-title, .page-title, .site-title,
.hero h1, .section h1, .section h2,
body h1, body h2, body h3 {
  font-family: var(--font-display) !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  font-weight: 600 !important;
  color: var(--color-ink) !important;
}

h3 {
  /* H3 is body-font in our system */
  font-family: var(--font-body) !important;
  letter-spacing: 0 !important;
}

.eyebrow,
body .eyebrow {
  color: var(--color-accent) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

/* ----- Strip GeneratePress structural wrappers ----------- */
.site,
.site-content,
.site-main,
.content-area,
.inside-article,
.inside-content {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  border: none !important;
  box-shadow: none !important;
}

#page,
.site-content,
.content-area {
  display: block !important;
  float: none !important;
  width: 100% !important;
}

article.page,
article.post,
.entry-content {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* GP renders its own page header (.entry-header) on every page — hide it,
   our templates render the hero directly */
.entry-header,
.page-header,
.featured-image,
.post-image {
  display: none !important;
}

/* GP sticky header / nav adjustments don't apply to our header */
body.is-sticky-menu,
body.sticky-menu-fade {
  padding-top: 0 !important;
}

/* ----- Suppress GoDaddy Launch / GP Premium overlay UI --- */
.offside-js,
#offside,
#site-navigation.offside,
.gp-premium-mobile-menu,
.slideout-toggle,
.menu-toggle.has-svg,
.has-inline-mobile-toggle .mobile-bar-items {
  display: none !important;
}

/* Re-show OUR mobile toggle */
.topbar .nav-toggle {
  display: none;
}
@media (max-width: 880px) {
  .topbar .nav-toggle { display: flex !important; }
}

/* ----- GP form input look — replace with ours ------------ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="url"],
textarea,
select {
  font-family: var(--font-body) !important;
  background: var(--bg-raised) !important;
  color: var(--t-1) !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: var(--radius) !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  text-transform: none !important;
}

/* ----- Buttons ------------------------------------------- */
.btn,
body .btn,
a.btn {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-radius: var(--radius) !important;
}

/* ----- Lock down link underlines from GP --------------- */
/* Scope to non-button anchors. The original rule clobbered the
   bottom border on .btn anchors inside <section> blocks (showed
   up as the "Join our team" pill missing its bottom edge). */
.entry-content a:not(.btn),
.section a:not(.btn),
.topbar a:not(.btn),
.footer a:not(.btn) {
  border-bottom-color: transparent;
}

/* Belt-and-braces: any .btn anchor anywhere keeps its full border. */
a.btn,
body a.btn,
.section a.btn,
.entry-content a.btn,
.topbar a.btn,
.footer a.btn {
  border: 1px solid var(--border-strong) !important;
  border-bottom-color: var(--border-strong) !important;
}
a.btn--primary,
body a.btn--primary,
.section a.btn--primary {
  border-color: var(--t-1) !important;
}

/* ----- Primary nav: kill the disc bullets that wp_nav_menu's
   <li> elements pick up by default. List-reset rules apply at
   ALL viewport sizes; the desktop layout (display:flex) lives
   inside a min-width media query so we don't clobber the
   mobile hamburger dropdown that hides the nav by default. */
.primary-nav,
.primary-nav ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.primary-nav li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.primary-nav li::before,
.primary-nav li::marker { content: none !important; display: none !important; }

/* ----- Desktop: inline flex row of nav items ----- */
@media (min-width: 881px) {
  .primary-nav {
    display: flex;
    gap: var(--s-5);
    align-items: center;
    margin-left: auto;
  }
  .primary-nav li { display: inline-flex; }
}

/* ----- Mobile: nav hidden until hamburger toggles body.nav-open ----- */
@media (max-width: 880px) {
  /* Reaffirm site.css rules in case a host stylesheet leaks in later. */
  .primary-nav { display: none !important; }
  .topbar__cta { display: none !important; }

  /* Hamburger button — bump padding so the touch target hits Apple's
     44x44pt minimum on iOS. Use touch-action: manipulation to kill the
     300ms tap delay; remove the gray tap-highlight overlay. */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    padding: 16px 12px;          /* 12.5 content + 32 padding = 44.5 (Apple HIG min) */
    background: transparent;
    border: 0;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    color: var(--t-1);
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    pointer-events: none;          /* clicks land on the button, not the span */
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  /* Subtle hamburger -> X morph when open */
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  /* Open menu — switch the topbar__inner to grid with explicit areas
     when nav-open. This lets us put brand+toggle on row 1, primary-nav
     on row 2, topbar__cta on row 3 in source-independent order without
     any absolute positioning. */
  body.nav-open .topbar__inner {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand   toggle"
      "nav     nav"
      "cta     cta";
    gap: 0;
    row-gap: 0;
    align-items: center;
    background: var(--bg-raised);
    box-shadow: 0 12px 24px rgba(15, 24, 32, 0.08);
    border-bottom: 1px solid var(--border);
  }
  body.nav-open .topbar__inner > .brand       { grid-area: brand; }
  body.nav-open .topbar__inner > .nav-toggle  { grid-area: toggle; }
  body.nav-open .topbar__inner > .primary-nav { grid-area: nav; }
  body.nav-open .topbar__inner > .topbar__cta { grid-area: cta; }

  body.nav-open .primary-nav,
  body.nav-open .topbar__cta {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0 !important;
    padding: var(--s-3) 0 0;
    border-top: 1px solid var(--border);
    /* The base mobile rule in site.css uses position:absolute which
       removes these from the grid flow. Force them back to static so
       grid-template-areas can place them on their own rows. */
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    background: transparent !important;   /* parent .topbar__inner already paints the bg */
  }
  body.nav-open .primary-nav { padding-top: var(--s-2); }
  body.nav-open .topbar__cta { padding: var(--s-4) 0 var(--s-2); gap: 8px; }
  body.nav-open .primary-nav li {
    display: block;
    width: 100%;
  }
  body.nav-open .primary-nav a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--t-1);
    -webkit-tap-highlight-color: transparent;
  }
  body.nav-open .primary-nav li:last-child a { border-bottom: 0; }
  body.nav-open .topbar__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  /* iOS Safari sometimes leaves :hover states sticky after tap. Reset. */
  .primary-nav a:hover { color: inherit; }
  .nav-toggle:hover { background: transparent; }

  /* ----- Two-column grids stack to one column on mobile -----
     Several templates use an inline `grid-template-columns: 1.4fr 1fr`
     which beats the .two-col-stack media query (inline > class). Force
     all two-col grids in section/page bodies to one column under 880px.
  */
  .two-col-stack,
  .home-agents-grid,
  .home-blog-head {
    grid-template-columns: 1fr !important;
    gap: var(--s-5) !important;
  }
  /* Listing detail page — the 1.4fr/1fr inline grid in single-listing.php */
  article > div[style*="grid-template-columns:1.4fr"],
  article > div[style*="grid-template-columns: 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: var(--s-5) !important;
  }
  /* Sticky sidebar becomes static on mobile so it doesn't crowd the body */
  article aside[style*="position:sticky"],
  article aside[style*="position: sticky"] {
    position: static !important;
    top: auto !important;
  }

  /* ----- Hero spacing trims for small screens ----- */
  .hero { padding: var(--s-5) var(--page-pad) !important; }
  .section { padding: var(--s-5) var(--page-pad) !important; }
  .section--tight { padding: var(--s-5) var(--page-pad) !important; }

  /* ----- Footer columns stack ----- */
  .footer__inner { grid-template-columns: 1fr !important; }
  .footer__nav { grid-template-columns: repeat(2, 1fr) !important; gap: var(--s-5) !important; }

  /* ----- Stat-strip — auto-fit handles this but enforce padding ----- */
  .stat-strip { padding: var(--s-5) var(--page-pad) !important; }
  .stat-strip__inner { gap: var(--s-4) !important; }

  /* ----- About page composed-header rows stack ----- */
  .aa-area-head { grid-template-columns: 1fr !important; }

  /* ----- Stop horizontal overflow from any rogue wide element ----- */
  body { overflow-x: hidden; }
}

/* ----- Section spacing — tighter than default GP rhythm.
   The original .section padding (--s-9) created too much
   air between blocks. Drop it one notch. */
.section { padding: var(--s-7) var(--page-pad) !important; }
.section--tight { padding: var(--s-6) var(--page-pad) !important; }
.aa-divider { margin: var(--s-5) auto !important; }
.hero { padding-top: var(--s-7) !important; padding-bottom: var(--s-6) !important; }
.stat-strip { padding: var(--s-6) var(--page-pad) !important; }

/* ----- Listing filters in archive — replace GP form CSS - */
form#listings-filter label {
  font-family: var(--font-body) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  font-size: 12px !important;
  color: var(--t-3) !important;
  font-weight: 500 !important;
}

/* ----- Featured listing card on hero —--------------------- */
.hero__featured-img {
  background-color: var(--bg-surface) !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}
.hero__featured-img:not([style*="url("]) {
  background-image:
    radial-gradient(circle at 30% 30%, rgba(31,74,92,0.06), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(31,74,92,0.04), transparent 40%),
    linear-gradient(135deg, #EDE9DD 0%, #F2EFE6 50%, #E8E2D2 100%) !important;
}

/* Listing-card star placeholder when no photo — same pattern as the static mock */
.listing-card__img {
  aspect-ratio: 4 / 3;
  background-color: var(--bg-surface);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.listing-card__img:not([style*="url("]) {
  background-image:
    radial-gradient(circle at 30% 30%, rgba(31,74,92,0.06), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(31,74,92,0.04), transparent 40%),
    linear-gradient(135deg, #EDE9DD 0%, #F2EFE6 50%, #E8E2D2 100%);
}
.listing-card__img:not([style*="url("])::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,12 56.1,33.4 78.4,33.6 60.6,46.6 67.0,67.7 50,55.0 33.0,67.7 39.4,46.6 21.6,33.6 43.9,33.4' fill='none' stroke='%231F4A5C' stroke-width='1.4' stroke-opacity='0.18'/></svg>");
  background-position: center;
  background-size: 40% auto;
  background-repeat: no-repeat;
}

/* ----- Final selection / focus outlines ---------------- */
::selection {
  background: var(--color-accent) !important;
  color: var(--color-paper) !important;
}

/* ============================================================
   BLOG INDEX — list layout (one post per row)
   ============================================================ */
.blog-list-section { max-width: 920px; }
.blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.blog-list__item {
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.blog-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  align-items: start;
  color: inherit;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease);
}
.blog-row:hover {
  background: rgba(31, 74, 92, 0.025);
}
.blog-row:hover .blog-row__title { color: var(--accent); }
.blog-row:hover .blog-row__cta { color: var(--accent-strong); }

.blog-row__media {
  width: 240px;
  height: 160px;
  border-radius: var(--radius);
  background-color: var(--bg-surface);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
/* Placeholder pattern when no thumbnail */
.blog-row__media:not([style*="url("]) {
  background-image:
    radial-gradient(circle at 30% 30%, rgba(31,74,92,0.06), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(31,74,92,0.04), transparent 40%),
    linear-gradient(135deg, #EDE9DD 0%, #F2EFE6 50%, #E8E2D2 100%);
}
.blog-row__media:not([style*="url("])::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,12 56.1,33.4 78.4,33.6 60.6,46.6 67.0,67.7 50,55.0 33.0,67.7 39.4,46.6 21.6,33.6 43.9,33.4' fill='none' stroke='%231F4A5C' stroke-width='1.4' stroke-opacity='0.18'/></svg>");
  background-position: center;
  background-size: 38% auto;
  background-repeat: no-repeat;
}

.blog-row__body { min-width: 0; }
.blog-row__eyebrow {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  margin: 0 0 var(--s-2) !important;
  font-weight: 500 !important;
}
.blog-row__title {
  font-family: var(--font-display) !important;
  font-size: clamp(20px, 2vw, 24px) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
  color: var(--t-1) !important;
  margin: 0 0 var(--s-2) !important;
  text-transform: none !important;
  transition: color var(--dur-fast) var(--ease);
}
.blog-row__excerpt {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--t-2);
  line-height: 1.5;
  margin: 0 0 var(--s-3);
  /* Belt-and-suspenders 2-line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 64ch;
}
.blog-row__cta {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
  transition: color var(--dur-fast) var(--ease);
}

@media (max-width: 640px) {
  .blog-row {
    grid-template-columns: 120px 1fr;
    gap: var(--s-4);
    padding: var(--s-4) 0;
  }
  .blog-row__media { width: 120px; height: 90px; }
  .blog-row__title { font-size: 17px !important; }
  .blog-row__excerpt { font-size: 13.5px; }
}

/* ============================================================
   BLOG SINGLE POST
   ============================================================ */
.blog-post-section { max-width: 1080px; }
.blog-post__back { margin-bottom: var(--s-5); }
.blog-post__back a { font-size: 13px; color: var(--t-3); }
.blog-post__back a:hover { color: var(--accent); }

.blog-post__header { max-width: 760px; margin-bottom: var(--s-6); }
.blog-post__eyebrow {
  font-family: var(--font-mono) !important;
  margin-bottom: var(--s-3) !important;
}
.blog-post__title {
  font-size: clamp(34px, 4.5vw, 52px) !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
}

.blog-post__hero {
  margin: 0 0 var(--s-7);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-post__hero-img {
  aspect-ratio: 16 / 10;
  background-color: var(--bg-surface);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.blog-post__hero-img:not([style*="url("]) {
  background-image:
    radial-gradient(circle at 30% 30%, rgba(31,74,92,0.06), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(31,74,92,0.04), transparent 40%),
    linear-gradient(135deg, #EDE9DD 0%, #F2EFE6 50%, #E8E2D2 100%);
}
.blog-post__hero-img:not([style*="url("])::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,12 56.1,33.4 78.4,33.6 60.6,46.6 67.0,67.7 50,55.0 33.0,67.7 39.4,46.6 21.6,33.6 43.9,33.4' fill='none' stroke='%231F4A5C' stroke-width='1.4' stroke-opacity='0.18'/></svg>");
  background-position: center;
  background-size: 22% auto;
  background-repeat: no-repeat;
}

.blog-post__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 880px) {
  .blog-post__layout { grid-template-columns: 1fr; }
}

.blog-post__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--t-2);
  max-width: 64ch;
}
.blog-post__body p {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: var(--t-2) !important;
  margin: 0 0 var(--s-4) !important;
  max-width: none !important;
}
.blog-post__body h2 {
  font-family: var(--font-display) !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  color: var(--t-1) !important;
  margin: var(--s-7) 0 var(--s-3) !important;
  line-height: 1.2 !important;
}
.blog-post__body h3 {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--t-1) !important;
  margin: var(--s-6) 0 var(--s-3) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
}
.blog-post__body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(31, 74, 92, 0.3);
  transition: border-color var(--dur-fast) var(--ease);
}
.blog-post__body a:hover { border-bottom-color: var(--accent); }
.blog-post__body ul, .blog-post__body ol {
  margin: 0 0 var(--s-4) var(--s-5);
  padding: 0;
}
.blog-post__body li { margin-bottom: var(--s-2); }
.blog-post__body blockquote {
  border-left: 3px solid var(--accent);
  padding: var(--s-2) 0 var(--s-2) var(--s-5);
  margin: var(--s-5) 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--t-1);
}
.blog-post__body blockquote p { font-size: 22px !important; line-height: 1.4 !important; color: var(--t-1) !important; }
.blog-post__body figure {
  margin: var(--s-5) 0;
}
.blog-post__body figure img { border-radius: var(--radius); }
.blog-post__body figcaption {
  font-size: 13px;
  color: var(--t-3);
  margin-top: var(--s-2);
  font-style: italic;
}
.blog-post__body img { border-radius: var(--radius); height: auto; }
.blog-post__body code {
  background: var(--bg-surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.92em;
}
.blog-post__body pre {
  background: var(--bg-surface);
  padding: var(--s-4);
  border-radius: var(--radius);
  overflow-x: auto;
  margin: var(--s-4) 0;
}

/* Drop cap on first paragraph only */
.blog-post__body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  float: left;
  font-size: 4.2em;
  line-height: 0.9;
  margin: 0.05em 0.08em 0 0;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.blog-post__aside {
  position: sticky;
  top: 90px;
  align-self: start;
  display: grid;
  gap: var(--s-5);
}
@media (max-width: 880px) {
  .blog-post__aside { position: static; }
}
.blog-post__aside-block {
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--border);
}
.blog-post__aside-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-post__aside-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-3);
  margin: 0 0 var(--s-3);
  font-weight: 500;
}
.blog-post__taglist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-post__taglist li { list-style: none; }
.blog-post__taglist a {
  display: inline-block;
  padding: 5px 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--dur-fast) var(--ease);
}
.blog-post__taglist a:hover { background: var(--accent); color: #fff; }
.blog-post__taglist--tags a {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--t-2);
}
.blog-post__taglist--tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.blog-post__share {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.blog-post__share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  color: var(--t-2);
  transition: all var(--dur-fast) var(--ease);
}
.blog-post__share a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.blog-related {
  max-width: 920px;
  border-top: 1px solid var(--border);
  margin-top: var(--s-6);
}

