/* =========================================================================
   The Planters' Guild — The Quick Read
   Opening summary block shared by guide-article.njk and article.njk layouts.
   Loaded only when `quickRead` frontmatter is present. Field Library palette
   via tokens.css (loaded earlier). The full article body always follows this
   block and stays visible — nothing here hides content.
   ========================================================================= */

.quick-read {
  background: var(--kraft);
  border: 1px solid rgba(42, 33, 27, 0.12);
  border-left: 5px solid var(--forest-pine);
  border-radius: 4px;
  padding: 24px 28px 26px;
  margin: 0 0 40px;
  max-width: 760px;
}

.quick-read__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.quick-read__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  flex: none;
}
.quick-read__label {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-pine);
}
.quick-read__time {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--aged-ink);
  letter-spacing: 0.01em;
}

.quick-read__gist {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--walnut);
  margin: 0 0 16px;
}

.quick-read__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.quick-read__list li {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--aged-ink);
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px solid rgba(42, 33, 27, 0.08);
}
.quick-read__list li:first-child {
  border-top: none;
}
.quick-read__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--forest-pine);
  transform: rotate(45deg);
}
.quick-read__list li strong {
  color: var(--walnut);
  font-weight: 600;
}

@media (max-width: 560px) {
  .quick-read {
    padding: 20px 20px 22px;
  }
  .quick-read__gist {
    font-size: 17px;
  }
  .quick-read__time {
    display: none;
  }
}
