/* =========================================================
   ABOUT — page-specific styles
   Requires: base.css
   Used by: about-coffee.html, about-us.html
   ========================================================= */


/* =========================================================
   COFFEE SECTION WRAPPER
   (reused from offerings but scoped here for about pages)
   ========================================================= */

.coffee-section {
  margin: 0 0 30px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 9px;
  padding: 0 7px 8px;

  border-bottom: 2px solid var(--dark);
}

.section-heading h2 {
  margin: 0;

  color: var(--dark);

  font-family: "Cinzel", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: .05em;
}


/* =========================================================
   CONTENT CARDS
   (block-display variant of coffee-item for text content)
   ========================================================= */

.coffee-item {
  display: block;

  margin: 6px 0;
  padding: 18px;

  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9px;

  color: var(--dark);

  transition:
    background-color .12s ease,
    border-color .12s ease;
}

.coffee-section .coffee-item:nth-of-type(even) {
  background: var(--card-alt);
}

.coffee-name {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.coffee-description {
  color: var(--muted);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}


/* =========================================================
   BODY TEXT BLOCKS
   ========================================================= */

.instruction-block p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
}
