/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fafaf8;
  --surface: #f5f4f0;
  --surface-2: #eeecea;
  --border: #e4e2de;
  --text: #1a1a1a;
  --text-muted: #888880;
  --accent: #e8607a;
  --accent-light: #f5a0b0;
  --font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-heading: Georgia, "Times New Roman", "Hiragino Mincho ProN", serif;
  --radius: 100px;
  --radius-sm: 8px;
  --max-w: 1100px;
  --header-h: 64px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Utility ===== */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, background 0.2s, transform 0.15s;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.button.secondary {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f0a0c0, #c0a0e0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
}

.brand small {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.header-cta:hover {
  opacity: 0.8;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  position: relative;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    #f5d0e0 0%,
    #e8d0f0 25%,
    #d0d8f8 50%,
    #f0e8d0 75%,
    #f8e0d0 100%
  );
}

/* diagonal light streaks */
.hero-media::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    120deg,
    rgba(255,255,255,0.35) 0px,
    rgba(255,255,255,0.35) 60px,
    transparent 60px,
    transparent 180px
  );
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-10%) translateY(-10%); }
  100% { transform: translateX(10%) translateY(10%); }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* when no image, show gradient only — ::before handles the visual */
.hero-media img[src$=".png"]:not([complete]) {
  opacity: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: linear-gradient(160deg, #fdf8f2 0%, #f8f4fc 100%);
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f0a0b8, #a0b0f0, #b0e0c8);
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #1a1825;
}

.hero-copy .lead {
  color: #5a5868;
  font-size: 16px;
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Notice Bar ===== */
.notice-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.notice-bar span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), #d060b0);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.notice-bar a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.notice-bar a:hover {
  color: var(--text);
}

/* ===== Sections ===== */
.section {
  padding: 96px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.with-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading.with-link a {
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.section-heading.with-link a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #1a1825;
}

/* ===== News ===== */
.news-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.news-list a {
  display: grid;
  grid-template-columns: 120px 80px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.15s;
}

.news-list a:hover {
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
  background: #fff;
  border-radius: var(--radius-sm);
}

.news-list time {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.news-list .category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 96, 122, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius);
  justify-self: start;
  white-space: nowrap;
}

.news-list strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* ===== Articles ===== */
.articles-section {
  background: var(--surface);
  max-width: 100%;
  padding: 96px 0;
}

.articles-section .section-heading {
  padding: 0 40px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}

.feature-article {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.feature-article img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #f5d0e0, #d0d8f8);
  transition: transform 0.4s;
}

.feature-article:hover img {
  transform: scale(1.03);
}

.feature-article > div {
  padding: 32px;
  flex: 1;
}

.article-grid article:not(.feature-article) {
  background: #fff;
  padding: 32px;
  cursor: pointer;
  transition: background 0.2s;
}

.article-grid article:not(.feature-article):hover {
  background: var(--bg);
}

.article-grid article span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.article-grid article h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 10px;
  color: #1a1825;
}

.article-grid article p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== Works ===== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.works-grid article {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.works-grid article:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.works-grid article img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: linear-gradient(135deg, #f0e0f0, #e0e8f8);
}

.works-grid article > div {
  padding: 20px 22px 24px;
}

.works-grid article span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 96, 122, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.works-grid article h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1825;
}

.works-grid article p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Profile ===== */
.profile-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.profile-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 20px;
  color: #1a1825;
}

.profile-copy p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
}

.profile-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--border);
}

.profile-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.profile-list dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2px;
}

.profile-list dd {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Social ===== */
.social-section .section-heading p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-grid a {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-grid a:hover {
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(232, 96, 122, 0.1);
}

.social-grid a > span {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f5d0e0, #d8d0f8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #7060a0;
  margin-bottom: 4px;
}

.social-grid a strong {
  font-size: 15px;
  font-weight: 600;
  color: #1a1825;
}

.social-grid a small {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact-section {
  background: linear-gradient(135deg, #fdf0f4, #f4f0fd, #f0f4fd);
  border-top: 1px solid var(--border);
  padding: 96px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-section > div {
  max-width: 560px;
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  margin-bottom: 12px;
  color: #1a1825;
}

.contact-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ===== Footer ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
}

.site-footer small {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 4/3;
  }

  .hero-copy {
    padding: 56px 32px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .feature-article {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 20px;
  }

  .main-nav {
    display: none;
  }

  .section {
    padding: 64px 20px;
  }

  .articles-section .section-heading {
    padding: 0 20px;
  }

  .notice-bar {
    padding: 12px 20px;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
}

/* ===== Active Nav ===== */
.main-nav a.active {
  color: var(--accent);
}

/* ===== Page Hero (subpages) ===== */
.page-hero {
  background: linear-gradient(160deg, #fdf8f2 0%, #f8f4fc 100%);
  border-bottom: 1px solid var(--border);
  padding: 72px 40px 56px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1a1825;
  margin-top: 8px;
}

/* ===== Page Section ===== */
.page-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 40px 96px;
}

/* ===== News Full Page ===== */
.news-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.news-list--full a {
  grid-template-columns: 120px 80px 1fr;
  align-items: start;
  padding: 24px 0;
}

.news-list--full a p {
  grid-column: 3;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.7;
}

/* ===== Journal Grid ===== */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.journal-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
}

.journal-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.journal-card--feature {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.journal-card__img {
  aspect-ratio: 4/3;
}

.journal-card--feature .journal-card__img {
  aspect-ratio: auto;
  min-height: 280px;
}

.journal-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.journal-card--feature .journal-card__body {
  padding: 40px;
  justify-content: center;
}

.journal-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 96, 122, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius);
  width: fit-content;
}

.journal-card h2,
.journal-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  color: #1a1825;
}

.journal-card--feature h2 {
  font-size: 22px;
}

.journal-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

.journal-card time {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
}

/* ===== Works Full Page ===== */
.works-category {
  margin-bottom: 28px;
}

.works-category h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: #1a1825;
}

.works-category--mt {
  margin-top: 64px;
}

.works-grid--full {
  grid-template-columns: repeat(3, 1fr);
}

.work-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.work-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.work-card__img {
  aspect-ratio: 1;
}

.work-card__img--wide {
  aspect-ratio: 16/9;
}

.work-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 96, 122, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius);
  width: fit-content;
}

.work-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1825;
}

.work-card p {
  font-size: 12px;
  color: var(--text-muted);
}

.work-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  transition: opacity 0.2s;
}

.work-link:hover {
  opacity: 0.7;
}

/* ===== Profile Page ===== */
.profile-page {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.profile-page__img {
  aspect-ratio: 3/4;
  border-radius: 16px;
}

.profile-page__lead {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  color: #1a1825;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.profile-page__bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.profile-page__bio p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
}

.profile-page__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}

.profile-page__list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.profile-page__list dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2px;
}

.profile-page__list dd {
  font-size: 14px;
  line-height: 1.6;
}

.profile-page__contact p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===== Subpage Responsive ===== */
@media (max-width: 900px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-card--feature {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .journal-card--feature .journal-card__img {
    min-height: 220px;
  }

  .works-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile-page__img {
    aspect-ratio: 16/9;
    max-height: 320px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 48px 20px 40px;
  }

  .page-section {
    padding: 40px 20px 64px;
  }

  .news-list--full a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-list--full a p {
    grid-column: 1;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card--feature {
    grid-column: span 1;
  }

  .works-grid--full {
    grid-template-columns: 1fr;
  }
}

/* ===== News Detail ===== */
.news-detail-hero {
  background: linear-gradient(160deg, #fdf8f2 0%, #f8f4fc 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px 56px;
}

.news-detail-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 28px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--accent);
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-detail-meta time {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.news-detail-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.3;
  color: #1a1825;
  max-width: 800px;
}

.news-detail-body {
  max-width: 680px;
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a3a;
}

.news-detail-body p {
  margin-bottom: 20px;
}

.news-detail-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: #1a1825;
}

.news-detail-body ul,
.news-detail-body ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-detail-body li {
  font-size: 14px;
  line-height: 1.75;
  color: #3a3a3a;
}

.news-detail-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .news-detail-hero {
    padding: 48px 20px 40px;
  }
}

/* ===== Works Detail Layout ===== */
.works-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.works-detail-visual {
  aspect-ratio: 1;
  border-radius: 16px;
}

@media (max-width: 760px) {
  .works-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .works-detail-visual {
    aspect-ratio: 16/9;
  }
}

/* ===== Journal card as link ===== */
a.journal-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a.journal-card.journal-card--feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
