/* ===== ARTICLE COMMON ===== */

.breadcrumb {
  background: var(--cream-dk);
  padding: 12px 48px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.breadcrumb li { font-size: 0.75rem; color: var(--text-lt); }
.breadcrumb li a { color: var(--text-lt); text-decoration: none; }
.breadcrumb li a:hover { color: var(--espresso); }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; }

/* Article hero */
.article-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48,25,19,0.1) 0%, rgba(48,25,19,0.65) 100%);
}
.article-hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 48px 52px;
  z-index: 1;
  max-width: 900px;
}
.article-hero-tag {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--yellow);
  font-style: italic;
  margin-bottom: 14px;
  display: block;
}
.article-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* Article body */
.article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

.article-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  line-height: 2.2;
  color: var(--text);
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.article-section { margin-bottom: 56px; }

.article-section-en {
  font-family: 'Playfair Display', serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--espresso);
  font-style: italic;
  margin-bottom: 10px;
}
.article-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--espresso);
  letter-spacing: 0.04em;
}
.article-text {
  font-size: 0.93rem;
  line-height: 2.2;
  color: var(--text);
  margin-bottom: 24px;
}

.article-img-block {
  margin: 32px 0;
}
.article-img-block img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.article-img-caption {
  font-size: 0.75rem;
  color: var(--text-lt);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

.article-img-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.article-img-half img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.article-quote {
  background: var(--yellow);
  padding: 24px 28px;
  margin: 36px 0;
}
.article-quote p {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--espresso);
}

/* List card (for terrace 10 selections) */
.article-cafe-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0;
}
.article-cafe-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
}
.article-cafe-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.article-cafe-item-body {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.article-cafe-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--yellow-dk);
  line-height: 1;
  font-weight: 700;
}
.article-cafe-item-area {
  font-size: 0.72rem;
  background: var(--espresso);
  color: var(--yellow);
  display: inline-block;
  padding: 3px 10px;
  letter-spacing: 0.1em;
}
.article-cafe-item-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--espresso);
}
.article-cafe-item-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.article-cafe-item-drink {
  font-size: 0.8rem;
  color: var(--text-lt);
}
.article-cafe-item-drink strong { color: var(--espresso); }

/* Timeline (for retro/history) */
.article-timeline {
  position: relative;
  padding-left: 40px;
  margin: 32px 0;
}
.article-timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 6px;
  width: 10px; height: 10px;
  background: var(--espresso);
  border-radius: 50%;
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 6px;
}
.timeline-text {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text);
}

/* Related cafes */
.related-section {
  background: var(--cream-dk);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.related-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .3s var(--ease);
}
.related-card:hover { box-shadow: 0 8px 24px rgba(48,25,19,0.12); }
.related-card img {
  width: 100%; height: 110px;
  object-fit: cover;
  display: block;
}
.related-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.related-card-area {
  font-size: 0.68rem;
  background: var(--espresso);
  color: var(--yellow);
  display: inline-block;
  padding: 2px 8px;
  letter-spacing: 0.1em;
}
.related-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--espresso);
}
.related-card-catch {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Back link */
.article-back {
  text-align: center;
  padding: 48px 0 16px;
}
.article-back a {
  font-size: 0.85rem;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--espresso);
  padding-bottom: 2px;
  transition: opacity .3s;
}
.article-back a:hover { opacity: 0.6; }

@media (max-width: 680px) {
  .breadcrumb { padding: 10px 20px; }
  .article-hero { height: 320px; }
  .article-hero-text { padding: 32px 24px 36px; }
  .article-wrap { padding: 48px 20px 64px; }
  .article-img-half { grid-template-columns: 1fr; }
  .article-cafe-item { grid-template-columns: 1fr; }
  .article-cafe-item img { height: 200px; }
  .article-cafe-item-body { padding: 16px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { grid-template-columns: 120px 1fr; }
}
