/* ========================================
   PAGE-SPECIFIC: BLOG ARCHIVE
   Class names still say "drop" (title/nav called this "the Drop"
   internally before it became "Blog") — kept as-is. Card component
   (.blog-card) matches the design package's blog.css exactly. Grid
   width (1140px, vs. the design's native 1200px) is this theme's own
   customization; column count (3) matches the design's default.
   ======================================== */

/* Hero */
.drop-hero {
  background: #fcfaf4;
  padding: 56px 32px 32px;
}
.drop-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: #6b6b6b;
  margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.breadcrumb a:hover { color: #ff6b35; }
.breadcrumb iconify-icon { font-size: 10px; }
.drop-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #1a1a1a;
  margin: 0;
}
.drop-hero h1 .accent {
  background: linear-gradient(135deg, #1f5d3f 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Post grid */
.drop-grid-section {
  background: #fcfaf4;
  padding: 16px 32px 56px;
}
.drop-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* Blog card — "title-on-photo": category tag + title sit directly on
   the cover image (a dark gradient behind them keeps them legible over
   any photo), just the date below. Matches the design package's
   .blog-card component; grid width/columns above are this theme's own
   customization and intentionally unchanged. */
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #1a1a1a;
  background: #fcfaf4;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 5px 5px 0 #1a1a1a;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #1a1a1a;
}
.blog-card-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: #1f5d3f;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.blog-card-cat {
  align-self: flex-start;
  margin-bottom: auto;
  background: #fcfaf4;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
}
.blog-card-title {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}
.blog-card-meta {
  padding: 12px 16px 15px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.55);
  letter-spacing: 0.01em;
}

/* No posts */
.drop-empty {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 32px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .drop-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 640px) {
  .drop-hero { padding: 36px 20px 22px; }
  .drop-grid-section { padding: 12px 20px 36px; }
  .drop-grid { grid-template-columns: 1fr; gap: 14px; }
  .blog-card-title { font-size: 17px; }
}
