/* =============================================================
 * gazette-list-item.css
 *
 * Reusable article row used in "Last In" and other feeds.
 * Markup: template-parts/gazette-list-item.php  (.wiize-list-item)
 *
 * The eyebrow + icon colour is driven by the --wli-accent variable,
 * set per category/type via the .wiize-list-item--<slug> modifier.
 * ============================================================= */

.wiize-list-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(33, 26, 21, 0.08);
  --wli-accent: #8a6d3b;            /* default eyebrow/icon colour */
}

/* Thumbnail -------------------------------------------------- */
.wiize-list-item__thumb {
  flex: 0 0 84px;
  display: block;
  background: #f4f2ef;
  border-radius: 6px;
}
.wiize-list-item__thumb img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Body ------------------------------------------------------- */
.wiize-list-item__body {
  flex: 1 1 auto;
  min-width: 0;
}

/* Top row: eyebrow + time ------------------------------------ */
.wiize-list-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.wiize-list-item__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cosmorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.2;
  color: var(--wli-accent);
}
.wiize-list-item__icon { display: inline-flex; }
.wiize-list-item__icon svg { width: 18px; height: 18px; display: block; }
.wiize-list-item__icon svg path { fill: var(--wli-accent); }

.wiize-list-item__time {
  font-size: 12px;
  color: #9a948e;
  white-space: nowrap;
}

/* Title ------------------------------------------------------ */
.wiize-list-item__title {
  margin: 4px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  font-family: "Work Sans", serif;
}
.wiize-list-item__title a {
  color: #211a15;
  text-decoration: none;
}
.wiize-list-item__title a:hover { color: var(--wli-accent); }

.wiize-list-item__icon {
  margin-right: 6px;
}

/* Excerpt + "See more" --------------------------------------- */
.wiize-list-item__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #645F5B;
}
.wiize-list-item__more {
  color: #CE0212;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  font-size:12px;
}
.wiize-list-item__more:hover { text-decoration: underline; }

/* -------------------------------------------------------------
 *  Per-category / per-type accent colours.
 *  Adjust the slugs to match your real category slugs.
 * ------------------------------------------------------------- */
.wiize-list-item--behind-the-bottle  { --wli-accent: #a07c2c; }
.wiize-list-item--focus-of-the-month { --wli-accent: #c0392b; }
.wiize-list-item--almanac            { --wli-accent: #2f5d8a; }
.wiize-list-item--story              { --wli-accent: #2f8a5a; }
.wiize-list-item--news               { --wli-accent: #2f5d8a; }

/* RWD -------------------------------------------------------- */
@media (max-width: 480px) {
  .wiize-list-item { gap: 14px; }
  .wiize-list-item__thumb { flex-basis: 64px; }
  .wiize-list-item__thumb img { width: 64px; height: 64px; }
}
