/*
 * ALAgrApHY Gallery — Coffee Road & Announcement Supplement
 * Append to styles.css, or link as <link rel="stylesheet" href="coffee-road.css">
 * after styles.css in coffeegraphy.html and exhibitions.html
 */

/* ── Coffee Road grid ──────────────────────────────────────────────────── */
.coffee-road-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.road-region {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 6px;
  padding: 1.5rem;
}

.road-region-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.road-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.road-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.road-list em {
  display: block;
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 0.1rem;
}

.road-flag {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Announcement box variant ──────────────────────────────────────────── */
#coffee-map {
  height: 500px;
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: 8px;
  z-index: 1;
}

.cta-box--announcement {
  position: relative;
  overflow: hidden;
}

.cta-box--announcement::before {
  content: "☕";
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-size: 5rem;
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
}
