/* ================================================================
   LS Desired Space — inner-pages.css
   All inner page templates: page, single, archive, search, 404,
   comments, contact page, author, sidebar, full-width, etc.
   ================================================================ */

/* ── SHARED: inner page body offset (fixed navbar) ────────────── */
.page-banner + *,
.page-banner ~ .inner-page-wrap {
  /* handled per section via padding-top on .inner-page-wrap */
}
.inner-page-wrap {
  padding: 4.5rem 2rem 5rem;
}
.single-post .single-article .comments-section a{
	color:#ef5f3f;
}
.full-width-content {
  max-width: 900px;
  margin: 0 auto;
}

/* ── PAGE BANNER ───────────────────────────────────────────────── */
.page-banner {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--white);
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-banner:hover .pb-bg { transform: scale(1); }

.pb-inner {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 3.5rem;
  width: 100%;
}
.page-banner.pb-center .pb-inner { text-align: center; }
.pb-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.page-banner.pb-center .pb-eyebrow { justify-content: center; }
.pb-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.pb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .9rem;
}
.pb-title em { color: #C49A3C; font-style: normal; }

/* Breadcrumb */
.pb-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.page-banner.pb-center .pb-breadcrumb { justify-content: center; }
.pb-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.pb-breadcrumb a:hover { color: var(--red); }
.pb-sep { color: rgba(255,255,255,.25); font-size: .6rem; }
.pb-current { color: rgba(255,255,255,.7); }

/* ── BLOG LAYOUT (2-col: main + sidebar) ──────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.blog-main { min-width: 0; }

/* ── POST CARDS GRID ──────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.post-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}
.post-card--featured .post-card-img-wrap {
  aspect-ratio: 16/10;
  border-radius: 0;
}

.post-card {
  background: #000000;
    border: 1px solid #343434;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.post-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
  flex-shrink: 0;
}
.post-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.post-card:hover .post-card-img { transform: scale(1.05); }

.post-card-cat {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--red);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .22rem .65rem;
}

.post-card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: .5rem 0 .5rem;
  color: var(--white);
}
.post-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
.post-card-title a:hover { color: var(--red); }
.post-card--featured .post-card-title { font-size: 1.45rem; }

.post-card-excerpt {
  font-size: .88rem;
  color: var(--white);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.post-card-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap .2s;
}
.post-card-more:hover { gap: .7rem; }

/* Archive desc */
.archive-desc {
  max-width: 1180px;
  margin: 0 auto 2rem;
  font-size: .95rem;
  color: var(--white);
  line-height: 1.75;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--red);
  background: #fdf5f6;
}
.archive-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
}

/* Pagination */
.archive-pagination {
  margin-top: 2.5rem;
}
.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .6rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all .25s;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.archive-pagination .page-numbers.dots { border: none; color: var(--white); }

/* No posts */
.no-posts-found {
  text-align: center;
  padding: 5rem 2rem;
}
.no-posts-icon {
  width: 70px;
  height: 70px;
  background: rgba(200,16,46,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.no-posts-icon i { font-size: 1.8rem; color: var(--red); }
.no-posts-found h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.no-posts-found p { color: var(--white); margin-bottom: 1.5rem; }

/* ── POST META ROW ────────────────────────────────────────────── */
.post-meta-row {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.pm-avatar { flex-shrink: 0; }
.pm-avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.pm-author {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.pm-author:hover { color: var(--red); }
.pm-secondary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
  font-size: .78rem;
  color: var(--white);
	line-height:35px;
}
.pm-date, .pm-cat, .pm-read { display: flex; align-items: center; gap: .3rem; }
.pm-cat { color: var(--red); text-decoration: none; font-weight: 500; }
.pm-sep { color: var(--border); }

/* ── SINGLE POST ──────────────────────────────────────────────── */
.single-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.single-meta-right {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.single-read-time {
  font-size: .78rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.single-cat-pill {
  background: var(--red);
  color: #fff !important;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  text-decoration: none;
}

.single-featured {
  margin-bottom: 2rem;
  overflow: hidden;
}
.single-feat-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.single-caption {
  font-size: .78rem;
  color: var(--white);
  font-style: italic;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Single body / entry content */
.single-body,
.page-body,
.entry-content {
  font-size: .97rem;
  line-height: 1.9;
  font-weight: 300;
}
.single-body h2, .single-body h3, .single-body h4,
.page-body h2, .page-body h3, .page-body h4,
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  margin: 1.8rem 0 .7rem;
  line-height: 1.2;
}
.single-body h2, .page-body h2, .entry-content h2 { font-size: 1.6rem; }
.single-body h3, .page-body h3, .entry-content h3 { font-size: 1.25rem; }
.single-body h4, .page-body h4, .entry-content h4 { font-size: 1.05rem; }
.single-body p, .page-body p, .entry-content p { margin-bottom: 1.2rem; }
.single-body a, .page-body a, .entry-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-body ul, .single-body ol,
.page-body ul, .page-body ol,
.entry-content ul, .entry-content ol {
  margin: .8rem 0 1.2rem 1.5rem;
}
.single-body li, .page-body li, .entry-content li { margin-bottom: .4rem; }
.single-body blockquote,
.page-body blockquote,
.entry-content blockquote {
  border-left: 4px solid var(--red);
  background: #fdf5f6;
  padding: 1rem 1.3rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--charcoal);
  font-size: 1.05rem;
}
.single-body img, .page-body img, .entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}
.single-body pre, .page-body pre, .entry-content pre {
  background: #f4f4f4;
  padding: 1rem 1.2rem;
  overflow-x: auto;
  font-size: .88rem;
  border-left: 3px solid var(--red);
  margin: 1rem 0;
}
.single-body code, .page-body code, .entry-content code {
  background: #f4f4f4;
  padding: .15rem .4rem;
  font-size: .88em;
  border-radius: 2px;
}
.single-body table, .page-body table, .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: .9rem;
}
.single-body th, .page-body th, .entry-content th {
  background: var(--white);
  color: #fff;
  padding: .6rem .9rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
}
.single-body td, .page-body td, .entry-content td {
  padding: .55rem .9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.single-body tr:nth-child(even) td,
.page-body tr:nth-child(even) td,
.entry-content tr:nth-child(even) td { background: var(--light); }

/* Page links */
.page-links {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.5rem;
  font-size: .85rem;
}
.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--border);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: all .2s;
}
.page-links a:hover,
.page-links > span:not(strong) {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Tags */
.single-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}
.single-tags-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-right: .2rem;
}
.single-tag {
  font-size: .74rem;
  font-weight: 500;
  color: var(--white);
  padding: .25rem .7rem;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .04em;
}
.single-tag:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Social share */
.single-share {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
}
.single-share-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-right: .2rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: .85rem;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  border-radius: 2px;
}
.share-btn:hover { opacity: .85; transform: translateY(-2px); }
.share-fb { background: #1877F2; }
.share-tw { background: #000; }
.share-li { background: #0A66C2; }
.share-wa { background: #25D366; }

/* Author box */
.author-box {
  display: flex;
  gap: 1.3rem;
  padding: 1.5rem;
  background: var(--dark);
  border-left: 4px solid var(--red);
  margin-top: 2rem;
}
.author-box-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box-label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .25rem;
}
.author-box-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}
.author-box-bio {
  font-size: .87rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: .6rem;
}
.author-box-link {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}
.author-box-link:hover { gap: .6rem; }

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--dark);
  margin-top: 2rem;
  border-top: 3px solid var(--red);
}
.post-nav-item {
  background: #fff;
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  text-decoration: none;
  transition: background .2s;
}
.post-nav-item:hover { background: var(--dark); }
.post-nav-empty { background: var(--dark); }
.post-nav-next { text-align: right; }
.post-nav-dir {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.post-nav-next .post-nav-dir { justify-content: flex-end; }
.post-nav-title {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* Related posts */
.related-posts { margin-top: 2.5rem; }
.related-posts-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.related-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.related-card-img { overflow: hidden; aspect-ratio: 16/9; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.related-card:hover .related-card-img img { transform: scale(1.06); }
.related-card-body { padding: .9rem; }
.related-card-cat {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .3rem;
}
.related-card-title {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: .35rem;
}
.related-card-date { font-size: .75rem; color: var(--white); }

/* Comments section */
.single-comments { margin-top: 2.5rem; }

/* ── COMMENTS ─────────────────────────────────────────────────── */
.comments-section { margin-top: 2rem; }
.comments-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
}
.comments-form-heading { margin-top: 2.5rem; }

/* Comment list */
.comment-list { list-style: none; }
.comment-item { padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.comment-item .children { margin-left: 2.5rem; }
.comment-body { display: flex; gap: .9rem; }
.comment-avatar img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.comment-content { flex: 1; }
.comment-meta { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem 1rem; margin-bottom: .5rem; }
.comment-author { font-weight: 700; color: var(--white); font-size: .9rem; }
.comment-date { font-size: .78rem; color: var(--white); display: flex; align-items: center; gap: .3rem; }
.comment-reply-link-wrap .comment-reply-link {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.comment-awaiting { font-size: .83rem; color: var(--white); font-style: italic; margin-bottom: .3rem; }
.comment-text { font-size: .9rem; line-height: 1.75; }
.comment-text p { margin-bottom: .5rem; }
.comments-closed { color: var(--white); font-style: italic; padding: 1rem 0; }

/* WP comment form */
.comment-form { margin-top: 1.5rem; }
.comment-form p.comment-form-cookies-consent { font-size: .82rem; color: var(--white); }
.comment-form p.comment-form-cookies-consent input { margin-right: .4rem; }

/* ── SIDEBAR ──────────────────────────────────────────────────── */
.blog-sidebar-wrap { min-width: 0; }
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sb-widget {
  border: 1px solid var(--border);
  padding: 1.4rem;
}
.sb-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--red);
  position: relative;
}

/* Sidebar Search */
.sb-search { display: flex; gap: 0; }
.sb-search-input {
  flex: 1;
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}
.sb-search-input:focus { border-color: var(--red); }
.sb-search-btn {
  width: 42px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  cursor: pointer;
  font-size: .88rem;
  transition: background .2s;
}
.sb-search-btn:hover { background: var(--red-dark); }

/* Recent posts */
.sb-recent { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.sb-recent-item { display: flex; gap: .75rem; align-items: flex-start; }
.sb-recent-thumb {
  width: 60px;
  height: 60px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.sb-recent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.sb-recent-item:hover .sb-recent-thumb img { transform: scale(1.08); }
.sb-recent-text { flex: 1; }
.sb-recent-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  line-height: 1.35;
  display: block;
  transition: color .2s;
}
.sb-recent-title:hover { color: var(--red); }
.sb-recent-date { font-size: .74rem; color: var(--white); margin-top: .18rem; display: block; }

/* Category list */
.sb-cat-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sb-cat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.sb-cat-list li:last-child { border-bottom: none; }
.sb-cat-list li a {
  font-size: .86rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.sb-cat-list li a:hover { color: var(--red); }
.sb-cat-list li a i { font-size: .7rem; color: var(--red); }
.sb-cat-count {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: var(--white);
  padding: .1rem .45rem;
  border-radius: 10px;
}

/* Tag cloud */
.sb-tag-cloud { display: flex; flex-wrap: wrap; gap: .4rem; }
.sb-tag {
  font-size: .74rem;
  font-weight: 500;
  padding: .28rem .7rem;
  border: 1px solid var(--border);
  color: var(--white);
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .03em;
}
.sb-tag:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* CTA widget */
.sb-cta-widget {
  background: var(--dark);
  border-color: var(--dark);
  text-align: center;
}
.sb-cta-widget .sb-title { border-color: var(--red); color: #fff; }
.sb-cta-icon {
  width: 54px;
  height: 54px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
}
.sb-cta-icon i { font-size: 1.3rem; color: #fff; }
.sb-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}
.sb-cta-widget p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 1rem; }
.sb-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  padding: .72rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s;
  margin-bottom: .6rem;
}
.sb-cta-btn:hover { background: var(--red-dark); }
.sb-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  text-decoration: none;
  transition: color .2s;
}
.sb-cta-phone:hover { color: var(--red); }

/* ── AUTHOR ARCHIVE ───────────────────────────────────────────── */
.author-profile-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  background: var(--light);
  border-left: 4px solid var(--red);
  margin-bottom: 2rem;
}
.author-profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--red);
}
.author-profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}
.author-profile-stats {
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.author-profile-stats span { display: flex; align-items: center; gap: .35rem; }
.author-profile-stats i { color: var(--red); }
.author-profile-bio { font-size: .9rem; color: var(--white); line-height: 1.7; margin-bottom: .5rem; }
.author-profile-web {
  font-size: .82rem;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.author-profile-web:hover { text-decoration: underline; }

/* ── SEARCH PAGE ──────────────────────────────────────────────── */
.search-form-top {
  display: flex;
  gap: 0;
  margin-bottom: 1.8rem;
  max-width: 600px;
}
.search-form-input {
  flex: 1;
  padding: .85rem 1.1rem;
  border: 2px solid var(--border);
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.search-form-input:focus { border-color: var(--red); }
.search-form-btn {
  padding: .85rem 1.4rem;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s;
}
.search-form-btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.search-result-count {
  font-size: .85rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.search-results-list { display: flex; flex-direction: column; gap: 0; }
.search-result-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.search-result-item:first-child { border-top: 1px solid var(--border); }
.search-result-thumb {
  width: 100px;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.search-result-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.search-result-item:hover .search-result-img { transform: scale(1.05); }
.search-result-content { flex: 1; }
.search-result-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: .35rem; }
.search-result-cat {
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .15rem .55rem;
}
.search-result-date { font-size: .76rem; color: var(--white); display: flex; align-items: center; gap: .3rem; }
.search-result-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.search-result-title a { color: inherit; text-decoration: none; transition: color .2s; }
.search-result-title a:hover { color: var(--red); }
.search-result-excerpt { font-size: .86rem; color: var(--white); line-height: 1.65; margin-bottom: .45rem; }
.search-result-link {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* ── 404 PAGE ─────────────────────────────────────────────────── */
.page-404-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 6rem 2rem;
}
.page-404-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,16,46,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(27,75,138,.1) 0%, transparent 60%);
}
.page-404-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
}
.page-404-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(200,16,46,.5);
  line-height: 1;
  margin-bottom: .2rem;
  letter-spacing: -.05em;
}
.page-404-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: .5rem auto 1.5rem;
}
.page-404-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.2;
}
.page-404-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
}
.page-404-search {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 2rem;
}
.page-404-input {
  flex: 1;
  padding: .82rem 1.1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-right: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .25s;
}
.page-404-input::placeholder { color: rgba(255,255,255,.3); }
.page-404-input:focus { border-color: var(--red); }
.page-404-search-btn {
  width: 48px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s;
}
.page-404-search-btn:hover { background: var(--red-dark); }
.page-404-links {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-404 {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  transition: background .2s;
}
.btn-404:hover { background: var(--red-dark); }
.btn-404-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-404-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.5); }
.page-404-popular { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; }
.page-404-popular-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.page-404-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.page-404-popular-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .9rem .5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  font-weight: 500;
  transition: all .25s;
}
.page-404-popular-item i { font-size: 1.3rem; color: var(--red); transition: transform .25s; }
.page-404-popular-item:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.page-404-popular-item:hover i { color: #fff; transform: scale(1.15); }

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-page-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 3rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.cp-card {
  background: #fff;
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all .3s;
}
.cp-card:hover { background: var(--white); }
.cp-card:hover .cp-card-icon { background: var(--red); }
.cp-card:hover .cp-card-label,
.cp-card:hover .cp-card-value,
.cp-card:hover .cp-card-value a { color: rgba(255,255,255,.7); }
.cp-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,16,46,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .85rem;
  transition: background .3s;
}
.cp-card-icon i { color: var(--red); font-size: 1.1rem; }
.cp-card:hover .cp-card-icon i { color: #fff; }
.cp-card-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .4rem;
  transition: color .3s;
}
.cp-card-value {
  font-size: .9rem;
  color: var(--charcoal);
  line-height: 1.65;
  transition: color .3s;
}
.cp-card-value a { color: var(--charcoal); text-decoration: none; transition: color .2s; }
.cp-card-value a:hover { color: var(--red); }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.contact-page-map {
  height: 100%;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-page-map iframe { display: block; }
.contact-page-map--nomap {
  background: var(--light);
  display: flex;
  align-items: center;
}
.contact-page-form-header { margin-bottom: 1.5rem; }
.contact-page-form-header .eyebrow { margin-bottom: .5rem; }

/* ── FULL-WIDTH PAGE ──────────────────────────────────────────── */
.page-featured-img {
  margin-bottom: 2rem;
  overflow: hidden;
}
.page-thumb { width: 100%; max-height: 420px; object-fit: cover; display: block; }

/* ── STANDARD PAGE ────────────────────────────────────────────── */
.inner-page-content { max-width: 800px; margin: 0 auto; }
.page-article { }

/* ── CATEGORY / TAG INDEX HEADER ─────────────────────────────── */
.term-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.term-count { font-size: .82rem; color: var(--white); }

/* ── UTILITY ──────────────────────────────────────────────────── */
.comments-password { color: var(--white); font-style: italic; padding: 2rem; text-align: center; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr 280px; gap: 2rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .sb-cta-widget { grid-column: span 2; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card--featured { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-page-cards { grid-template-columns: repeat(2, 1fr); }
  .author-profile-card { flex-direction: column; text-align: center; }
  .author-profile-avatar { margin: 0 auto; }
  .author-profile-web { justify-content: center; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
  .post-nav-next .post-nav-dir { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .inner-page-wrap { padding: 3rem 1.2rem 4rem; }
  .page-banner { min-height: 230px; }
  .pb-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .blog-sidebar { grid-template-columns: 1fr; }
  .sb-cta-widget { grid-column: span 1; }
  .contact-page-cards { grid-template-columns: 1fr; }
  .page-404-popular-grid { grid-template-columns: repeat(2, 1fr); }
  .page-404-links { flex-direction: column; align-items: center; }
  .author-box { flex-direction: column; }
  .author-box-avatar img { width: 60px; height: 60px; }
  .single-meta-bar { flex-direction: column; align-items: flex-start; }
  .search-form-top { flex-direction: column; }
  .search-form-input { border-right: 1px solid var(--border); border-bottom: none; }
  .search-result-item { flex-direction: column; }
  .search-result-thumb { width: 100%; height: 140px; }
}

/* ── LEGAL / PRIVACY PAGE ─────────────────────────────────────── */
.legal-page-wrap { max-width: 800px; margin: 0 auto; }
.legal-meta {
  font-size: .8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ── PAGE FEATURED IMAGE ──────────────────────────────────────── */
.page-featured-img { margin-bottom: 2rem; overflow: hidden; }
.page-thumb { width: 100%; max-height: 420px; object-fit: cover; display: block; }

/* ── TERM / ARCHIVE HEADER ────────────────────────────────────── */
.term-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.term-count {
  font-size: .82rem;
  color: var(--white);
  background: var(--light);
  padding: .3rem .8rem;
  border: 1px solid var(--border);
  font-weight: 600;
}

/* ── NAVBAR SOLID STATE for inner pages (utility) ─────────────── */
body.is-inner-page #navbar:not(.solid) {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
}
body.is-inner-page #navbar:not(.solid) .nav-lnk { color: #222; }
body.is-inner-page #navbar:not(.solid) .nav-lnk:hover { color: var(--red); }
body.is-inner-page #navbar:not(.solid) .logo-n { color: #111; }
body.is-inner-page #navbar:not(.solid) .logo-s { color: var(--red); }
body.is-inner-page #navbar:not(.solid) .nav-cta { background: var(--red); color: #fff; }
body.is-inner-page #navbar:not(.solid) #brgr span { background: #111; }

/* ── SKIP LINK (accessibility) ────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--red);
  color: #fff;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── WP ALIGNMENTS (Gutenberg/Classic) ───────────────────────── */
.entry-content .alignleft  { float: left;  margin: .5rem 1.5rem .5rem 0; max-width: 45%; }
.entry-content .alignright { float: right; margin: .5rem 0 .5rem 1.5rem; max-width: 45%; }
.entry-content .aligncenter { display: block; margin: 1rem auto; text-align: center; }
.entry-content .alignwide  { margin-left: -2rem; margin-right: -2rem; max-width: calc(100% + 4rem); }
.entry-content .wp-block-image figcaption,
.entry-content .wp-caption-text {
  font-size: .78rem;
  color: var(--white);
  text-align: center;
  font-style: italic;
  padding: .35rem 0;
}
.entry-content .wp-block-quote {
  border-left: 4px solid var(--red);
  background: #fdf5f6;
  padding: 1rem 1.3rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--charcoal);
}
.entry-content .wp-block-separator {
  border: none;
  border-top: 2px solid var(--border);
  margin: 2rem 0;
}
.entry-content .wp-block-button__link {
  background: var(--red);
  color: #fff;
  padding: .7rem 1.6rem;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-block;
  transition: background .2s;
}
.entry-content .wp-block-button__link:hover { background: var(--red-dark); }

/* Clear floats */
.entry-content::after { content: ''; display: table; clear: both; }

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────────── */
@media (max-width: 600px) {
  .entry-content .alignleft,
  .entry-content .alignright {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }
  .entry-content .alignwide {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
    max-width: calc(100% + 2.4rem);
  }
  .contact-page-cards { grid-template-columns: 1fr 1fr; }
}
