/* ===== 香りトピックス ===== */
.topics-section {
  background: var(--off-white);
  padding: 52px 0 56px;
  border-top: 1px solid var(--beige-warm);
}
.topics-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.topic-item {
  background: var(--white);
  border: 1px solid var(--beige-warm);
  border-radius: 6px;
  padding: 22px 26px;
}
.topic-date {
  margin-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-light);
}
.topic-title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.topic-body p {
  margin-bottom: 10px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.95;
  letter-spacing: 0.03em;
}
.topic-body p:last-child {
  margin-bottom: 0;
}
.topic-more {
  margin-top: 10px;
}
.topic-toggle {
  margin-top: 12px;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--pink-deep);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.topic-toggle::after {
  content: " ▾";
  font-size: 10px;
}
.topic-toggle[aria-expanded="true"]::after {
  content: " ▴";
}
.topic-toggle:hover {
  opacity: 0.7;
}
.topic-link {
  display: inline-block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--beige-warm);
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.topic-link:hover {
  color: var(--pink-deep);
}

@media (max-width: 480px) {
  .topics-section { padding: 40px 0 44px; }
  .topics-inner { padding: 0 20px; }
  .topic-item { padding: 18px 18px; }
  .topic-title { font-size: 15px; }
  .topic-body p { font-size: 13px; line-height: 1.9; }
}

/* 過去のトピックスへのリンク */
.topics-archive-link {
  display: block;
  margin-top: 20px;
  text-align: right;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--pink-deep);
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.topics-archive-link:hover {
  opacity: 0.7;
}

/* 一覧ページで使うとき（見出しはページ側が持つ） */
.topics-page .topics-section {
  background: none;
  border-top: none;
  padding: 0 0 24px;
}
.topics-page .topics-inner {
  padding: 0;
}
