/* ============================================================
   Cats By The Tracks — Editorial Article Template (v2)
   Scoped entirely under .cbtt-article-v2 so it cannot affect
   any other page, post, or template on the site.
   Uses the site's existing brand tokens — no new palette.
   ============================================================ */

.cbtt-article-v2 {
  --a2-primary: #C9555B;
  --a2-primary-dark: #A83E44;
  --a2-tint: #F6E4E3;
  --a2-bg: #FDFAF6;
  --a2-card: #FFFFFF;
  --a2-border: #ECE6E1;
  --a2-ink: #231F1E;
  --a2-ink-soft: #6B6360;
  --a2-radius: 10px;
  --a2-shadow: 0 2px 12px rgba(35,31,30,0.06);
  --a2-max: 1320px;
  --a2-hero-border: #D9D4CD;

  background: var(--a2-bg);
  color: var(--a2-ink);
  font-family: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
}
.cbtt-article-v2 * { box-sizing: border-box; }
.cbtt-article-v2 h1, .cbtt-article-v2 h2, .cbtt-article-v2 h3, .cbtt-article-v2 h4 {
  font-family: 'Poppins', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--a2-ink);
  line-height: 1.3;
  text-wrap: balance;
}

/* ---------- Breadcrumbs (sits above the two-column layout, same container width) ---------- */
.cbtt-breadcrumbs {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(88px, 9vw, 120px) 20px 32px;
  font-size: 13px;
  color: var(--a2-ink-soft);
}
.cbtt-breadcrumbs a { color: var(--a2-ink-soft); text-decoration: none; }
.cbtt-breadcrumbs a:hover { color: var(--a2-primary); }
.cbtt-breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }
.cbtt-breadcrumbs .current { color: var(--a2-ink); font-weight: 500; }

/* ---------- Progress bar ---------- */
.cbtt-progress-track { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 9999; pointer-events: none; }
.cbtt-progress-bar { height: 100%; width: 0%; background: var(--a2-primary); transition: width 0.1s linear; }
@media (prefers-reduced-motion: reduce) { .cbtt-progress-bar { transition: none; } }

/* ---------- Hero: lives INSIDE the main content column, not full browser width ----------
   Image (rounded top corners) + white content card (rounded bottom corners),
   stacked with no gap, forming one seamless rounded block matching the
   content column's own width exactly. ---------- */
.cbtt-hero-wrap {
  margin: 0 0 48px;
}
/* The theme's core "constrained" layout support caps every non-aligned
   direct child of .cbtt-main at --wp--style--global--content-size (645px)
   with forced auto margins. The hero must fill the full content column
   instead, so it's excluded from that cap here. */
.cbtt-main.is-layout-constrained > .cbtt-hero-wrap {
  max-width: none !important;
  width: 100%;
}
/* .cbtt-main also picks up the theme's automatic global side padding
   (~50px each side) as a side effect of its "constrained" layout type.
   That padding is meant for prose columns, not a full-bleed hero, so
   it's removed here and the hero is pulled back out to the column edge. */
.cbtt-main.has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.cbtt-hero-wrap .wp-block-post-featured-image {
  margin: 0;
}
.cbtt-hero-wrap .wp-block-post-featured-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  display: block;
  margin: 0;
}
@media (max-width: 900px) {
  .cbtt-hero-wrap .wp-block-post-featured-image img { height: 340px; }
}
@media (max-width: 600px) {
  .cbtt-hero-wrap .wp-block-post-featured-image img { height: 260px; border-radius: 18px 18px 0 0; }
}

.cbtt-hero-content-card {
  background: #FFFFFF;
  padding: 48px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
@media (max-width: 600px) {
  .cbtt-hero-content-card { padding: 24px; border-radius: 0 0 18px 18px; }
}

.cbtt-hero-content-card .cbtt-hero__badge {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--a2-primary);
  margin-bottom: 14px;
  display: block;
}
.cbtt-hero-content-card .cbtt-hero__badge a {
  color: var(--a2-primary);
  text-decoration: none;
}
.cbtt-hero-content-card .cbtt-hero__badge a:hover { text-decoration: underline; }

.cbtt-hero-content-card h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 0 22px;
}
@media (max-width: 900px) {
  .cbtt-hero-content-card h1 { font-size: 36px; }
}
@media (max-width: 600px) {
  .cbtt-hero-content-card h1 { font-size: 30px; margin-bottom: 18px; }
}

.cbtt-byline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--a2-border);
  padding-top: 22px;
}
.cbtt-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--a2-ink-soft);
}
.cbtt-byline img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.cbtt-byline strong { color: var(--a2-ink); font-weight: 600; }
.cbtt-byline .sep { margin: 0 8px; opacity: 0.5; }
.cbtt-byline p, .cbtt-byline .wp-block-post-date, .cbtt-byline time { margin: 0; display: inline; font-size: 16px; }
.cbtt-byline-row > .wp-block-group { margin: 0; }

.cbtt-share-save {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cbtt-share-save a,
.cbtt-share-save button.cbtt-icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--a2-bg);
  border: 1px solid var(--a2-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--a2-ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.cbtt-share-save a:hover,
.cbtt-share-save button.cbtt-icon-btn:hover { background: var(--a2-primary); color: #fff; border-color: var(--a2-primary); }
.cbtt-share-save svg { width: 15px; height: 15px; fill: currentColor; }

.cbtt-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 34px;
  border-radius: 999px;
  background: var(--a2-bg);
  border: 1px solid var(--a2-border);
  color: var(--a2-ink);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cbtt-save-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.cbtt-save-btn:hover { border-color: var(--a2-primary); color: var(--a2-primary); }
.cbtt-save-btn.is-saved { background: var(--a2-primary); border-color: var(--a2-primary); color: #fff; }
.cbtt-save-btn.is-saved svg { fill: currentColor; stroke: none; }

/* ---------- Layout grid ---------- */
.cbtt-article-layout {
  max-width: var(--a2-max);
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1000px) {
  .cbtt-article-layout { grid-template-columns: 1fr; gap: 36px; }
}

.cbtt-main { min-width: 0; }

/* ---------- Body typography (plain, no card treatment on intro) ---------- */
.entry-content { font-size: 17px; line-height: 1.8; color: var(--a2-ink); }
.entry-content p { margin: 0 0 22px; max-width: 70ch; }
.entry-content h2 { font-size: 28px; margin: 44px 0 16px; }
.entry-content h2:first-of-type { margin-top: 4px; }
.entry-content h3 { font-size: 21px; margin: 32px 0 14px; }

/* ---------- Lists: checkmark style ---------- */
.entry-content ul.wp-block-list,
.entry-content ol.wp-block-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
.entry-content ul.wp-block-list li,
.entry-content ol.wp-block-list li {
  position: relative;
  padding: 0 0 14px 32px;
  line-height: 1.65;
}
.entry-content ul.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--a2-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9555B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.entry-content ol.wp-block-list { counter-reset: cbtt-count; }
.entry-content ol.wp-block-list li { counter-increment: cbtt-count; }
.entry-content ol.wp-block-list li::before {
  content: counter(cbtt-count);
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--a2-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Images ---------- */
.entry-content figure.wp-block-image { margin: 28px 0; }
.entry-content figure.wp-block-image img {
  border-radius: var(--a2-radius);
  box-shadow: var(--a2-shadow);
  width: 100%; height: auto; display: block;
  transition: transform 0.35s ease;
}
.entry-content figure.wp-block-image:hover img { transform: scale(1.012); }
.entry-content figure.wp-block-image figcaption {
  margin-top: 8px; font-size: 13.5px; color: var(--a2-ink-soft); text-align: center; font-style: italic;
}

/* ---------- Tables ---------- */
.entry-content .wp-block-table table {
  width: 100%; border-collapse: collapse; border-radius: var(--a2-radius); overflow: hidden;
  border: 1px solid var(--a2-border);
}
.entry-content .wp-block-table th {
  background: var(--a2-primary); color: #fff; font-size: 12.5px;
  letter-spacing: 0.03em; text-transform: uppercase; padding: 12px 16px; text-align: left;
}
.entry-content .wp-block-table td { padding: 12px 16px; border-top: 1px solid var(--a2-border); font-size: 15px; }
.entry-content .wp-block-table tbody tr:nth-child(even) { background: #FBF5F4; }
.entry-content .wp-block-table figcaption { margin-top: 8px; font-size: 13px; color: var(--a2-ink-soft); }

/* ---------- Blockquotes ---------- */
.entry-content blockquote {
  margin: 28px 0; padding: 4px 0 4px 22px;
  border-left: 3px solid var(--a2-primary);
  font-size: 18px; font-style: italic; color: var(--a2-ink);
}

/* ---------- FAQ accordion ---------- */
.entry-content details.cbtt-faq-item {
  background: var(--a2-card); border: 1px solid var(--a2-border);
  border-radius: 8px; padding: 2px 18px; margin-bottom: 10px;
}
.entry-content details.cbtt-faq-item summary {
  padding: 14px 28px 14px 0; font-weight: 600; font-size: 16px; cursor: pointer; list-style: none; position: relative;
}
.entry-content details.cbtt-faq-item summary::-webkit-details-marker { display: none; }
.entry-content details.cbtt-faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 12px; font-size: 20px; color: var(--a2-primary); transition: transform 0.2s ease;
}
.entry-content details.cbtt-faq-item[open] summary::after { transform: rotate(45deg); }
.entry-content details.cbtt-faq-item p { padding-bottom: 14px; margin: 0; }

/* ---------- Tip / callout box (available; only used where content genuinely fits) ---------- */
.cbtt-callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px; border-radius: 8px;
  background: var(--a2-tint); margin: 24px 0;
}
.cbtt-callout__icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--a2-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.cbtt-callout__icon svg { width: 16px; height: 16px; fill: currentColor; }
.cbtt-callout p { margin: 0; font-size: 15.5px; }
.cbtt-callout strong { color: var(--a2-primary-dark); }

/* ---------- Author box ---------- */
.cbtt-author-box {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--a2-card); border: 1px solid var(--a2-border);
  border-radius: var(--a2-radius); padding: 24px; margin: 44px 0 0;
}
.cbtt-author-box img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cbtt-author-box__name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; margin: 0 0 6px; }
.cbtt-author-box__bio { font-size: 14.5px; color: var(--a2-ink-soft); line-height: 1.65; margin: 0 0 10px; }
.cbtt-author-box__social { display: flex; gap: 8px; }
.cbtt-author-box__social a {
  width: 28px; height: 28px; border-radius: 50%; background: var(--a2-bg);
  display: inline-flex; align-items: center; justify-content: center; color: var(--a2-primary);
}
.cbtt-author-box__social a:hover { background: var(--a2-primary); color: #fff; }
.cbtt-author-box__social svg { width: 13px; height: 13px; fill: currentColor; }

/* ---------- Final CTA (restrained, matches card language, not a loud banner) ---------- */
.cbtt-final-cta {
  background: var(--a2-card); border: 1px solid var(--a2-border);
  border-radius: var(--a2-radius); padding: 32px; margin: 32px 0 0; text-align: center;
}
.cbtt-final-cta h2 { font-size: 24px; margin: 0 0 8px; }
.cbtt-final-cta p { color: var(--a2-ink-soft); font-size: 15px; margin: 0 auto 20px; max-width: 48ch; }
.cbtt-final-cta__buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cbtt-final-cta__buttons a {
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: opacity 0.2s ease;
}
.cbtt-final-cta__buttons a.is-primary { background: var(--a2-primary); color: #fff; }
.cbtt-final-cta__buttons a.is-outline { background: transparent; color: var(--a2-primary); border: 1.5px solid var(--a2-primary); }
.cbtt-final-cta__buttons a:hover { opacity: 0.85; }

/* ---------- Sidebar ---------- */
.cbtt-sidebar { display: flex; flex-direction: column; gap: 24px; width: 100%; min-width: 0; }
.cbtt-sidebar-sticky { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 24px; width: 100%; min-width: 0; }
.cbtt-sidebar-box {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  background: var(--a2-card); border: 1px solid var(--a2-border);
  border-radius: var(--a2-radius); padding: 20px;
  overflow: hidden;
}
.cbtt-sidebar-box h3 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin: 0 0 16px; color: var(--a2-ink);
}
@media (max-width: 1000px) { .cbtt-sidebar-sticky { position: static; } }

/* Search */
.cbtt-sidebar-box .wp-block-search__inside-wrapper { gap: 8px !important; }
.cbtt-sidebar-box .wp-block-search__input {
  border-radius: 6px !important; border: 1px solid var(--a2-border) !important; padding: 9px 12px !important; font-size: 14px !important;
}
.cbtt-sidebar-box .wp-block-search__button {
  border-radius: 6px !important; background: var(--a2-primary) !important; border: none !important; color: #fff !important;
  font-size: 13.5px !important; padding: 0 16px !important;
}

/* Suggested / related cards */
.cbtt-suggested-list {
  display: flex; flex-direction: column; gap: 16px;
  width: 100%; max-width: 100%; min-width: 0;
}
.cbtt-suggested-card {
  display: flex; gap: 12px; text-decoration: none; color: var(--a2-ink);
  width: 100%; max-width: 100%; min-width: 0;
}
.cbtt-suggested-card img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; max-width: 64px; }
.cbtt-suggested-card__body {
  display: flex; flex-direction: column;
  flex: 1 1 auto; min-width: 0; max-width: 100%; overflow: hidden;
}
.cbtt-suggested-card__cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--a2-primary); display: block; margin-bottom: 4px;
}
.cbtt-suggested-card__title {
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; line-height: 1.35;
  display: block; margin: 0 0 4px;
  word-break: break-word; overflow-wrap: break-word;
}
.cbtt-suggested-card__date { font-size: 12px; color: var(--a2-ink-soft); display: block; }
.cbtt-suggested-card:hover .cbtt-suggested-card__title { color: var(--a2-primary); }

/* Categories */
.cbtt-sidebar-box ul.wp-block-categories { list-style: none; margin: 0; padding: 0; font-size: 14px; }
.cbtt-sidebar-box ul.wp-block-categories li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--a2-border);
}
.cbtt-sidebar-box ul.wp-block-categories li:last-child { border-bottom: none; }
.cbtt-sidebar-box ul.wp-block-categories a { color: var(--a2-ink); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.cbtt-sidebar-box ul.wp-block-categories a::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--a2-primary); display: inline-block;
}
.cbtt-sidebar-box ul.wp-block-categories a:hover { color: var(--a2-primary); }
.cbtt-sidebar-box ul.wp-block-categories .wp-block-categories__post-count { color: var(--a2-ink-soft); font-size: 13px; }

/* Newsletter (sidebar) */
.cbtt-sidebar-newsletter {
  background: linear-gradient(160deg, var(--a2-primary), var(--a2-primary-dark));
  color: #fff; border: none;
}
.cbtt-sidebar-newsletter h3 { color: #fff; opacity: 0.9; }
.cbtt-sidebar-newsletter p { color: rgba(255,255,255,0.88); font-size: 13.5px; margin: -8px 0 16px; }
.cbtt-sidebar-newsletter .wpcf7-form-control-wrap { display: block; margin-bottom: 10px; }
.cbtt-sidebar-newsletter input[type="email"] {
  width: 100%; padding: 10px 14px; border-radius: 6px; border: none; font-size: 14px;
}
.cbtt-sidebar-newsletter input[type="submit"] {
  width: 100%; padding: 10px 14px; border-radius: 6px; border: none;
  background: var(--a2-ink); color: #fff; font-weight: 600; cursor: pointer; font-size: 14px;
}
.cbtt-sidebar-newsletter .wpcf7-response-output { color: #fff; font-size: 12.5px; border-color: rgba(255,255,255,0.4) !important; }

/* ---------- Back to top ---------- */
.cbtt-back-to-top {
  position: fixed; right: 20px; bottom: 20px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--a2-primary); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--a2-shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 998;
}
.cbtt-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.cbtt-back-to-top svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Accessibility ---------- */
.cbtt-article-v2 a:focus-visible,
.cbtt-article-v2 button:focus-visible,
.cbtt-article-v2 summary:focus-visible { outline: 2px solid var(--a2-primary); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .cbtt-article-v2 * { transition: none !important; animation: none !important; }
}

.cbtt-fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.cbtt-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Category archive page (/category/xxx/)
   ============================================================ */
.cbtt-archive-header {
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(88px, 9vw, 120px) 20px 0;
}
.cbtt-archive-header .cbtt-breadcrumbs { padding: 0 0 20px; max-width: none; }
.cbtt-archive-header h1.wp-block-query-title {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.15;
}
@media (max-width: 700px) {
  .cbtt-archive-header h1.wp-block-query-title { font-size: 30px; }
}
.cbtt-archive-header .wp-block-term-description {
  font-size: 17px;
  color: var(--a2-ink-soft);
  max-width: 68ch;
  margin: 0 0 8px;
}

.cbtt-archive-grid-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}
.cbtt-archive-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cbtt-archive-grid > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1000px) {
  .cbtt-archive-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .cbtt-archive-grid { grid-template-columns: 1fr !important; }
}
.cbtt-archive-card {
  background: var(--a2-card);
  border: 1px solid var(--a2-border);
  border-radius: var(--a2-radius);
  overflow: hidden;
  box-shadow: var(--a2-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.cbtt-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(35,31,30,0.10);
}
.cbtt-archive-card .wp-block-post-featured-image {
  margin: 0;
}
.cbtt-archive-card .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.cbtt-archive-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.cbtt-archive-card__cat {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--a2-primary);
  margin-bottom: 8px;
  display: block;
}
.cbtt-archive-card h2.wp-block-post-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px;
}
.cbtt-archive-card h2.wp-block-post-title a { color: var(--a2-ink); text-decoration: none; }
.cbtt-archive-card:hover h2.wp-block-post-title a { color: var(--a2-primary); }
.cbtt-archive-card .wp-block-post-excerpt {
  font-size: 14.5px;
  color: var(--a2-ink-soft);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1 1 auto;
}
.cbtt-archive-card .wp-block-post-excerpt__more-link {
  display: none;
}
.cbtt-archive-card .wp-block-post-date {
  font-size: 12.5px;
  color: var(--a2-ink-soft);
  margin-top: auto;
}
.cbtt-archive-card .wp-block-post-date time { text-decoration: none; color: inherit; }

.cbtt-archive-grid-wrap .wp-block-query-pagination {
  margin-top: 40px;
  font-size: 14px;
}
.cbtt-archive-grid-wrap .wp-block-query-pagination a,
.cbtt-archive-grid-wrap .wp-block-query-pagination-numbers { color: var(--a2-ink-soft); }
.cbtt-archive-grid-wrap .wp-block-query-pagination a:hover { color: var(--a2-primary); }
.cbtt-archive-grid-wrap .current-page { color: var(--a2-primary); font-weight: 700; }

.cbtt-archive-empty {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 64px;
  color: var(--a2-ink-soft);
}
