.elementor-501 .elementor-element.elementor-element-163bb16{--display:flex;}body.elementor-page-501:not(.elementor-motion-effects-element-type-background), body.elementor-page-501 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-93833f6 );}@media(min-width:768px){.elementor-501 .elementor-element.elementor-element-163bb16{--content-width:1280px;}}/* Start custom CSS *//* ============================================================
   THE FIELD DESK — Blog Archive Template CSS
   Paste into: Elementor > Site Settings > Custom CSS
   (or the page/template-level "Custom CSS" tab)

   Mirrors the Current Inventory grid: cream background, cards
   with image + mono badge, serif title, mono meta line below.
   Uses the same --fd- variables as fielddesk-blog-post.css —
   if both are loaded on the site, remove the duplicate :root
   block from one of the two files.
   ============================================================ */

:root {
  --fd-bg: #f0eee7;
  --fd-ink: #1e1c19;
  --fd-ink-soft: #4a4844;
  --fd-muted: #8a8780;
  --fd-border: #d6d2c7;
  --fd-serif: 'Lora', Georgia, serif;
  --fd-mono: 'Space Mono', 'IBM Plex Mono', monospace;
}

.fd-archive-page {
  background-color: var(--fd-bg);
}

/* ---- Breadcrumb ---- */
.fd-archive-breadcrumb {
  font-family: var(--fd-mono);
  font-size: 0.78rem;
  color: var(--fd-muted);
  margin-bottom: 0.75rem;
}

.fd-archive-breadcrumb a {
  color: var(--fd-muted);
  text-decoration: none;
}

.fd-archive-breadcrumb a:hover {
  color: var(--fd-ink);
}

/* ---- Page heading ---- */
.fd-archive-eyebrow {
  font-family: var(--fd-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fd-muted);
  margin-bottom: 0.5rem;
}

.fd-archive-title {
  font-family: var(--fd-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw + 1rem, 2.75rem);
  color: var(--fd-ink);
  margin: 0 0 1.5rem;
}

.fd-archive-header-divider {
  border: none;
  border-top: 1px solid var(--fd-border);
  margin-bottom: 2.5rem;
}

/* ---- Card grid (3-up, same rhythm as Current Inventory) ---- */
.fd-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 3rem;
}

.fd-archive-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fd-archive-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.fd-archive-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fd-archive-card:hover .fd-archive-thumb img {
  transform: scale(1.03);
}

/* ---- Category badge, styled like the "IN STOCK" tag ---- */
.fd-archive-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-family: var(--fd-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f0eee7;
  background: rgba(30, 28, 25, 0.85);
  padding: 0.3rem 0.6rem;
}

.fd-archive-card-title {
  font-family: var(--fd-serif);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--fd-ink);
  margin: 0 0 0.5rem;

  /* clamp to 2 lines so uneven titles don't break the grid rhythm */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fd-archive-card-excerpt {
  font-family: var(--fd-serif);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fd-ink-soft);
  margin: 0 0 0.6rem;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fd-archive-card-date {
  font-family: var(--fd-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fd-muted);
}

/* ---- Pagination ---- */
.fd-archive-pagination {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fd-border);
  font-family: var(--fd-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fd-archive-pagination a,
.fd-archive-pagination span {
  color: var(--fd-muted);
  text-decoration: none;
}

.fd-archive-pagination a:hover,
.fd-archive-pagination .current {
  color: var(--fd-ink);
}

/* ---- Optional: featured post banner above the grid ---- */
.fd-archive-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--fd-border);
}

.fd-archive-featured img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .fd-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fd-archive-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  /* Stays at 2 columns down to the smallest phones. */
  .fd-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 2rem;
  }
}/* End custom CSS */