/*
Theme Name: Locksmith Doctor Trends
Theme URI: https://trends.locksmithdoctorco.com/
Author: Locksmith Doctor Company
Description: Custom article theme for trends.locksmithdoctorco.com, styled to match locksmithdoctorco.com (Montserrat/Open Sans, navy #1B3A7A + gold #F5A800).
Version: 1.0.1
Requires at least: 6.0
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: locksmith-trends
Tags: blog, custom-menu, featured-images
*/

/* ==========================================================================
   1. Design tokens (mirrors the Elementor global kit on locksmithdoctorco.com)
   ========================================================================== */
:root {
  --navy: #1B3A7A;
  --navy-dark: #142C5C;
  --navy-deep: #0E1F41;
  --gold: #F5A800;
  --gold-dark: #D89400;
  --text: #525961;
  --heading: #16233C;
  --muted: #7A828C;
  --line: #E4E8EF;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;

  --font-head: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --wrap: 1200px;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(27, 58, 122, .08);
  --shadow-lg: 0 14px 40px rgba(27, 58, 122, .14);
  --t: .25s ease;
}

/* ==========================================================================
   2. Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.05rem); }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.55rem); }
h4 { font-size: 1.2rem; }
p { margin: 0 0 1.35em; }
ul, ol { margin: 0 0 1.35em; padding-left: 1.3em; }
li { margin-bottom: .5em; }
blockquote {
  margin: 2em 0; padding: 1.4em 1.6em;
  background: var(--bg-soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--heading);
}
blockquote p:last-child { margin-bottom: 0; }
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em; }
code { background: var(--bg-soft); padding: .15em .4em; border-radius: 4px; }
pre { background: var(--navy-deep); color: #E8EDF7; padding: 1.2em; border-radius: var(--radius); overflow-x: auto; }
pre code { background: none; padding: 0; color: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }
table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; }
th, td { padding: .75em 1em; border: 1px solid var(--line); text-align: left; }
th { background: var(--bg-soft); font-family: var(--font-head); font-weight: 700; color: var(--heading); }
figure { margin: 2em 0; }
figcaption { font-size: .875rem; color: var(--muted); margin-top: .6em; text-align: center; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  width: auto; height: auto; clip: auto;
  background: var(--gold); color: var(--navy-deep);
  padding: .7em 1.2em; border-radius: 6px; font-weight: 700;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Shared bits */
.eyebrow {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1rem;
}
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: .85em 1.7em; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: all var(--t); text-align: center;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-dark); color: var(--navy-deep); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ==========================================================================
   3. Header
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  padding: 9px 0;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar__tag {
  font-family: var(--font-head); font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; font-size: 11px;
  margin: 0; color: #fff;
}
.topbar__social { display: flex; align-items: center; gap: 14px; }
.topbar__social a { color: rgba(255,255,255,.85); display: inline-flex; }
.topbar__social a:hover { color: var(--gold); }
.topbar__social svg { width: 16px; height: 16px; fill: currentColor; }

.site-header {
  background: #fff;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(20, 44, 92, .09);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 92px; position: relative;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 72px; width: 72px; object-fit: contain; }
.brand__text { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--navy); line-height: 1.2; }
.brand__text span { display: block; font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: var(--navy); padding: .55em .9em; border-radius: 6px;
  transition: all var(--t); display: block;
}
.nav a:hover,
.nav .current-menu-item > a,
.nav a[aria-current="page"] { color: var(--gold-dark); background: rgba(245,168,0,.09); }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; }
.nav li { margin: 0; }
.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__actions .btn { padding: .75em 1.4em; font-size: 14px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 8px; color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; fill: currentColor; }

@media (max-width: 1080px) {
  .site-header__inner { min-height: 70px; }
  .nav-toggle { display: inline-flex; order: 3; }
  .nav {
    position: absolute; left: -24px; right: -24px; top: 100%;
    background: #fff; flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 24px 20px;
    box-shadow: 0 14px 24px rgba(20,44,92,.12);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { padding: .85em .4em; border-bottom: 1px solid var(--line); border-radius: 0; }
  .topbar__tag { display: none; }
  .topbar__inner { justify-content: center; }
}
@media (max-width: 620px) {
  .header__actions .btn--label { display: none; }
  .brand img { height: 54px; width: 54px; }
}

/* ==========================================================================
   4. Page hero
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #24478C 100%);
  color: #fff; position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 92px) 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(245,168,0,.16), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(255,255,255,.08), transparent 45%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__lead { font-size: 1.09rem; color: rgba(255,255,255,.88); max-width: 62ch; margin-bottom: 0; }
.hero--center { text-align: center; }
.hero--center h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.hero--center .hero__lead { margin-left: auto; margin-right: auto; }
.hero--article h1 { max-width: 24ch; }

.breadcrumbs {
  font-size: 13px; color: rgba(255,255,255,.72);
  margin-bottom: 1.1rem; font-family: var(--font-head); font-weight: 600;
}
.breadcrumbs a { color: rgba(255,255,255,.9); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { padding: 0 .5em; opacity: .5; }

/* ==========================================================================
   5. Article grid + cards
   ========================================================================== */
.section { padding: clamp(46px, 6vw, 78px) 0; }
.section--soft { background: var(--bg-soft); }

.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px; margin-bottom: 36px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.chips a {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 13px;
  padding: .5em 1.05em; border-radius: 50px;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
}
.chips a:hover, .chips .is-active a { background: var(--navy); border-color: var(--navy); color: #fff; }

.searchform { display: flex; max-width: 320px; width: 100%; }
.searchform input[type="search"] {
  flex: 1; min-width: 0;
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  padding: .72em 1em; border: 1px solid var(--line); border-right: 0;
  border-radius: 50px 0 0 50px; background: #fff; outline: none;
}
.searchform input[type="search"]:focus { border-color: var(--navy); }
.searchform button {
  border: 0; cursor: pointer; background: var(--navy); color: #fff;
  padding: 0 1.15em; border-radius: 0 50px 50px 0; display: inline-flex; align-items: center;
  transition: background var(--t);
}
.searchform button:hover { background: var(--gold); color: var(--navy-deep); }
.searchform svg { width: 17px; height: 17px; fill: currentColor; }

.grid { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid { grid-template-columns: 1fr; } }

.card {
  position: relative; /* anchors .card__cat, which is a sibling of .card__media */
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); display: block; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__ph {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #2C5199 100%);
  display: flex; align-items: center; justify-content: center;
}
.card__ph svg { width: 54px; height: 54px; fill: rgba(255,255,255,.32); }
.card__cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: .42em .95em; border-radius: 50px;
}
.card__cat:hover { background: var(--navy); color: #fff; }
.card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.22rem; margin-bottom: .5rem; line-height: 1.35; }
.card__title a { color: var(--heading); }
.card__title a:hover { color: var(--navy); }
.card__excerpt { font-size: .945rem; margin-bottom: 1.3rem; }
.card__meta {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 12.5px; color: var(--muted);
  font-family: var(--font-head); font-weight: 600;
}
.card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.card__meta svg { width: 13px; height: 13px; fill: var(--gold); }

/* Featured (first) card on the index */
.card--feature { grid-column: 1 / -1; flex-direction: row; }
.card--feature .card__media { flex: 0 0 52%; aspect-ratio: auto; }
.card--feature .card__body { padding: 40px; justify-content: center; }
.card--feature .card__title { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.card--feature .card__excerpt { font-size: 1.02rem; }
@media (max-width: 860px) {
  .card--feature { flex-direction: column; }
  .card--feature .card__media { flex: none; aspect-ratio: 16 / 9; }
  .card--feature .card__body { padding: 26px; }
}

/* Empty state */
.empty {
  text-align: center; padding: 68px 24px;
  background: #fff; border: 1px dashed var(--line); border-radius: var(--radius);
}
.empty svg { width: 60px; height: 60px; fill: var(--gold); margin-bottom: 18px; }
.empty p { max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   6. Pagination
   ========================================================================== */
.pagination { margin-top: 52px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 .8em;
  border: 1px solid var(--line); border-radius: 50px; background: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy);
  transition: all var(--t);
}
.pagination a.page-numbers:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.pagination .page-numbers.dots { border-color: transparent; background: none; }

/* ==========================================================================
   7. Single article
   ========================================================================== */
.article-head__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  margin-top: 1.5rem; font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  color: rgba(255,255,255,.85);
}
.article-head__meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-head__meta svg { width: 15px; height: 15px; fill: var(--gold); }

.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px;
  align-items: start;
}
@media (max-width: 1000px) { .article-layout { grid-template-columns: 1fr; gap: 44px; } }

.featured-image { margin: 0 0 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.entry-content { font-size: 1.045rem; }
.entry-content > h2 { margin-top: 2.1em; }
.entry-content > h3 { margin-top: 1.7em; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(27,58,122,.35); }
.entry-content a:hover { text-decoration-color: var(--gold); }
.entry-content img { border-radius: var(--radius); }
.entry-content ul li::marker { color: var(--gold); }
.entry-content ol li::marker { color: var(--navy); font-family: var(--font-head); font-weight: 700; }
.entry-content > *:last-child { margin-bottom: 0; }

.entry-footer {
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tags__label { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--heading); }
.tags a {
  font-size: 12.5px; font-family: var(--font-head); font-weight: 600;
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: .4em .9em; border-radius: 50px; color: var(--navy);
}
.tags a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.share { display: flex; align-items: center; gap: 10px; }
.share__label { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--heading); }
.share a {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; transition: all var(--t);
}
.share a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }
.share svg { width: 15px; height: 15px; fill: currentColor; }

/* Sidebar */
.sidebar { position: sticky; top: 108px; display: grid; gap: 24px; }
@media (max-width: 1000px) { .sidebar { position: static; } }
.widget {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.widget__title {
  font-size: 1.02rem; margin-bottom: 1rem; padding-bottom: .7rem;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { margin-bottom: .7em; padding-bottom: .7em; border-bottom: 1px solid var(--line); }
.widget li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.widget a { font-family: var(--font-head); font-weight: 600; font-size: .93rem; color: var(--heading); }
.widget a:hover { color: var(--navy); }
.widget .count { color: var(--muted); font-weight: 600; font-size: .82rem; }

.recent { display: flex; gap: 13px; align-items: flex-start; }
.recent__thumb {
  flex: 0 0 68px; height: 60px; border-radius: 7px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #2C5199);
}
.recent__thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent__date { display: block; font-size: 11.5px; color: var(--muted); font-weight: 600; margin-top: 3px; font-family: var(--font-head); }

/* CTA card */
.cta-card {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; border-radius: var(--radius); padding: 30px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(245,168,0,.22), transparent 55%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h3 { color: #fff; font-size: 1.28rem; }
.cta-card p { color: rgba(255,255,255,.85); font-size: .93rem; }
.cta-card .btn { width: 100%; justify-content: center; }
.cta-card__phone {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.42rem; color: var(--gold); margin: .4em 0 .9em;
}
.cta-card__phone:hover { color: #fff; }

/* Wide CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff; text-align: center; padding: clamp(46px, 6vw, 74px) 0;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(245,168,0,.2), transparent 60%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 1.8rem; }

/* Related */
.related__head { text-align: center; margin-bottom: 40px; }

/* Post navigation */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
@media (max-width: 640px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav a {
  display: block; padding: 22px 24px; border: 1px solid var(--line);
  border-radius: var(--radius); background: #fff; transition: all var(--t); height: 100%;
}
.post-nav a:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.post-nav__label {
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: .45em;
}
.post-nav__title { font-family: var(--font-head); font-weight: 700; color: var(--heading); font-size: .98rem; line-height: 1.4; }
.post-nav__next { text-align: right; grid-column: 2; }
@media (max-width: 640px) { .post-nav__next { text-align: left; grid-column: 1; } }

/* ==========================================================================
   8. Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); font-size: .93rem; }
.site-footer__top { padding: clamp(46px, 6vw, 70px) 0 44px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.5fr 1fr 1.35fr 1fr; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; position: relative; padding-bottom: .65rem; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 2px; background: var(--gold); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .6em; }
.footer-col a { color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--gold); }
.footer-brand img { max-height: 58px; margin-bottom: 18px; }
.footer-brand p { margin-bottom: 1.2em; }
.footer-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--gold);
}
.footer-phone:hover { color: #fff; }
.footer-phone svg { width: 17px; height: 17px; fill: currentColor; }
.footer-social { display: flex; gap: 11px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; transition: all var(--t);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; font-size: .85rem; }
.site-footer__bottom .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.site-footer__bottom a { color: rgba(255,255,255,.8); }
.site-footer__bottom a:hover { color: var(--gold); }

/* ==========================================================================
   9. Misc / utilities
   ========================================================================== */
.alignwide { max-width: 1000px; margin-left: auto; margin-right: auto; }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: .4em 1.8em 1.2em 0; }
.alignright { float: right; margin: .4em 0 1.2em 1.8em; }
.wp-caption { max-width: 100%; }
.sticky .card { border-color: var(--gold); }

@media print {
  .topbar, .site-header, .site-footer, .sidebar, .cta-band, .related, .share, .post-nav { display: none !important; }
  body { font-size: 12pt; }
}
