:root {
  --paper: #fbfaf6;
  --paper-soft: #f1eee6;
  --card: #fffefb;
  --ink: #101815;
  --muted: #626a64;
  --line: #ded8cc;
  --green: #355643;
  --green-deep: #263f31;
  --yellow: #e9b913;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
  font-size: 15px;
  line-break: strict;
  line-height: 1.8;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
}

.site-header {
  display: grid;
  grid-template-columns: 260px 1fr 310px;
  align-items: center;
  min-height: 74px;
  padding: 0 11.5vw;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  white-space: nowrap;
}

.brand-main {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.brand-sub {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 58px;
  color: #26302b;
  font-size: 11px;
  font-weight: 800;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.outline-button,
.yellow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
}

.outline-button {
  border: 1px solid var(--ink);
  background: transparent;
}

.yellow-button {
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 460px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: 72px 0 120px 11.5vw;
}

.hero h1 {
  margin: 0 0 28px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
}

.hero p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: 0.08em;
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.featured-story {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 205px 1fr 142px;
  gap: 28px;
  align-items: center;
  width: 50vw;
  min-width: 820px;
  margin: -146px 0 0 11.5vw;
  padding: 14px 24px 14px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.featured-story img {
  height: 116px;
  object-fit: cover;
}

.article-kicker {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-kicker span {
  color: #31483b;
  letter-spacing: 0.12em;
}

.featured-body h2 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.45;
}

.featured-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.read-more {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.read-more::after {
  content: "→";
  font-size: 18px;
}

.category-nav {
  display: grid;
  grid-template-columns: repeat(6, auto) 1fr;
  gap: 0;
  align-items: center;
  margin: 20px 11.5vw 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-nav a {
  position: relative;
  padding: 15px 56px 13px 0;
  font-size: 12px;
  font-weight: 700;
}

.category-nav .active::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 128px;
  height: 3px;
  background: var(--green);
  content: "";
}

.category-nav .all-link {
  justify-self: end;
  padding-right: 0;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 64px;
  margin: 22px 11.5vw 0;
}

.section-title p {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.article-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.article-card img {
  height: 150px;
  object-fit: cover;
}

.card-body {
  padding: 15px 16px 18px;
}

.article-card h2 {
  margin: 12px 0 10px;
  font-size: 17px;
  line-height: 1.55;
}

.article-card p {
  min-height: 58px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.75;
}

.article-card a {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-size: 20px;
}

.popular-column {
  padding-top: 1px;
}

.popular-item {
  display: grid;
  grid-template-columns: 42px 1fr 58px;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.popular-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.rank {
  font-size: 28px;
  line-height: 1;
}

.popular-item h3 {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.popular-item img {
  height: 58px;
  object-fit: cover;
}

.popular-more {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.interview-area {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  margin: 28px 11.5vw 18px;
}

.interview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  overflow: hidden;
  min-height: 168px;
  background: var(--paper-soft);
  border-radius: 4px;
}

.interview-copy {
  padding: 24px 38px;
}

.label {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.interview-copy h2 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.45;
}

.interview-copy p:not(.label) {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.interview-copy a {
  font-size: 12px;
  font-weight: 800;
}

.interview-card img {
  height: 100%;
  object-fit: cover;
}

.quote-card {
  position: relative;
  min-height: 168px;
  padding: 28px 34px;
  background: var(--paper-soft);
  border-radius: 4px;
}

.quote-card::before,
.quote-card::after {
  position: absolute;
  color: var(--green);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.quote-card::before {
  top: 16px;
  left: 20px;
  content: "“";
}

.quote-card::after {
  right: 18px;
  bottom: 18px;
  content: "”";
}

.quote-card p {
  margin: 0 0 18px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.quote-card span {
  display: block;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 800;
}

.newsletter {
  display: grid;
  grid-template-columns: 48px 1fr 520px;
  gap: 28px;
  align-items: center;
  padding: 26px 22vw;
  background: linear-gradient(90deg, var(--green-deep), #304a39);
  color: #fff;
}

.mail-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--green-deep);
  font-size: 22px;
}

.newsletter h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.newsletter p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 170px;
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter input,
.newsletter button {
  height: 38px;
  border: 0;
  font: inherit;
}

.newsletter input {
  padding: 0 18px;
  border-radius: 3px 0 0 3px;
}

.newsletter button {
  background: var(--yellow);
  color: var(--ink);
  border-radius: 0 3px 3px 0;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 6vw;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
  }

  .hero-copy {
    padding-left: 6vw;
  }

  .featured-story,
  .category-nav,
  .content-layout,
  .interview-area {
    margin-left: 6vw;
    margin-right: 6vw;
  }

  .featured-story {
    width: auto;
    min-width: 0;
  }

  .newsletter {
    padding: 30px 6vw;
  }
}

@media (max-width: 900px) {
  .hero,
  .content-layout,
  .interview-area,
  .interview-card,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 52px 6vw 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-image img {
    min-height: 300px;
  }

  .featured-story {
    grid-template-columns: 140px 1fr;
    margin-top: 18px;
  }

  .read-more {
    grid-column: 1 / -1;
    justify-content: flex-end;
    min-height: 36px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .category-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
  }

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

  .interview-card img {
    height: 260px;
  }

  .newsletter form {
    grid-template-columns: 1fr 132px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .brand-main {
    font-size: 24px;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .outline-button,
  .yellow-button {
    min-width: 124px;
  }

  .hero h1 {
    font-size: 33px;
    line-height: 1.35;
  }

  .hero p {
    font-size: 14px;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .featured-story img {
    height: 160px;
  }

  .category-nav a {
    padding-right: 34px;
  }

  .popular-item {
    grid-template-columns: 42px 1fr 64px;
  }

  .interview-copy {
    padding: 22px;
  }

  .quote-card {
    padding: 26px 22px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 3px;
  }
}

.dialogue-page {
  background: #fbfaf6;
}

.rashisa-home {
  background: #fbfaf6;
}

.standard-page {
  background: #fbfaf6;
}

.category-page,
.support-page {
  background: #fbfaf6;
}

.rashisa-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 24px 7vw 18px;
  background: rgba(251, 250, 246, 0.98);
  border-bottom: 1px solid var(--line);
}

.rashisa-brand {
  display: grid;
  gap: 4px;
}

.rashisa-logo {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
}

.rashisa-romaji {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.56em;
}

.rashisa-tagline {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.rashisa-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.support-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  background: var(--yellow);
  border-radius: 999px;
}

.icon-link {
  font-size: 24px;
  line-height: 1;
}

.rashisa-category-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 7vw 24px;
  border-bottom: 1px solid var(--line);
}

.rashisa-category-bar a {
  position: relative;
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.rashisa-category-bar a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d9d0c0;
  content: "";
}

.rashisa-category-bar a:nth-child(1)::after,
.rashisa-category-bar a:nth-child(5)::after {
  background: #52735c;
}

.rashisa-category-bar a:nth-child(2)::after {
  background: #e3694d;
}

.rashisa-category-bar a:nth-child(3)::after {
  background: #4868a2;
}

.rashisa-category-bar a:nth-child(4)::after {
  background: var(--yellow);
}

.rashisa-category-bar span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.dialogue-article {
  padding: 0 7vw 72px;
}

.dialogue-hero {
  max-width: 940px;
  margin: 58px auto 0;
}

.dialogue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dialogue-meta span:first-child {
  padding: 3px 10px;
  background: #4868a2;
  border-radius: 999px;
  color: #fff;
}

.dialogue-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.dialogue-lead {
  max-width: 780px;
  margin: 0 0 34px;
  color: #303b34;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.dialogue-main-image {
  margin: 0;
}

.dialogue-main-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.dialogue-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  gap: 64px;
  align-items: start;
  justify-content: center;
  margin: 54px auto 0;
}

.dialogue-side {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.side-card,
.article-author {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.side-title {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.speaker-profile {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}

.speaker-profile + .speaker-profile {
  margin-top: 16px;
}

.speaker-profile img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.speaker-profile strong,
.speaker-profile span {
  display: block;
}

.speaker-profile strong {
  font-size: 14px;
  line-height: 1.4;
}

.speaker-profile span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.toc-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.dialogue-body {
  min-width: 0;
}

.dialogue-section {
  padding-top: 10px;
}

.dialogue-section + .dialogue-section {
  margin-top: 34px;
}

.dialogue-section h2 {
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 30px;
  line-height: 1.45;
}

.chat-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  margin: 0 0 24px;
}

.chat-row img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.chat-content {
  min-width: 0;
  padding: 22px 24px;
  background: #fffefb;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.guest .chat-content {
  background: #f3f0e8;
}

.speaker-name {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.chat-content p:not(.speaker-name) {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.05;
}

.article-note {
  margin: 34px 0;
  padding: 24px 26px;
  background: #fff8d9;
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
}

.article-note strong {
  display: block;
  margin-bottom: 8px;
}

.article-note p {
  margin: 0;
  color: #454136;
  font-weight: 700;
}

.body-photo {
  margin: 44px 0;
}

.body-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
}

.dialogue-body blockquote {
  position: relative;
  margin: 34px 0;
  padding: 32px 38px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.dialogue-body blockquote::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--green);
  content: "“";
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.dialogue-body blockquote p {
  margin: 0;
  padding-left: 32px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.8;
}

.article-author {
  margin-top: 46px;
}

.article-author .speaker-profile {
  grid-template-columns: 68px 1fr;
}

.article-author img {
  width: 68px;
  height: 68px;
}

.related-stories,
.quiet-support {
  max-width: 1024px;
  margin: 72px auto 0;
}

.dialogue-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
}

.dialogue-section-heading p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.dialogue-section-heading a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-grid article {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.related-grid img {
  height: 150px;
  object-fit: cover;
}

.related-grid span,
.related-grid h3 {
  display: block;
  margin-right: 16px;
  margin-left: 16px;
}

.related-grid span {
  margin-top: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.related-grid h3 {
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.6;
}

.quiet-support {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 32px 38px;
  background: #fff4cf;
  border-radius: 14px;
}

.quiet-support h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}

.quiet-support a {
  flex: 0 0 auto;
  padding: 12px 24px;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.rashisa-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: end;
  padding: 52px 7vw 64px;
}

.home-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 14px;
  background: var(--paper-soft);
}

.home-hero-image img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-watermark {
  position: absolute;
  right: -22px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(82px, 13vw, 210px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.8;
  pointer-events: none;
}

.home-hero-copy {
  padding-bottom: 20px;
}

.home-hero-copy h1 {
  display: grid;
  gap: 10px;
  margin: 24px 0 22px;
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 900;
  line-height: 1.08;
}

.home-hero-copy h1 span {
  display: block;
  width: fit-content;
  padding: 0 14px 5px;
  background: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.home-hero-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #303b34;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.home-primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.home-section {
  max-width: 1180px;
  margin: 64px auto 0;
  padding: 0 7vw;
}

.home-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.home-section-heading.compact {
  align-items: start;
  margin-bottom: 18px;
}

.home-section-heading p {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.45;
}

.home-section-heading a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.home-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-story-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.home-story-card img {
  height: 190px;
  object-fit: cover;
}

.home-story-card span,
.home-story-card h3,
.home-story-card p {
  display: block;
  margin-right: 18px;
  margin-left: 18px;
}

.home-story-card span {
  margin-top: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.home-story-card h3 {
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.55;
}

.home-story-card p {
  margin-top: 0;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.home-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 46px;
  max-width: 1180px;
  margin: 74px auto 0;
  padding: 42px 7vw;
  background: #f1eee6;
}

.home-feature-band h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.45;
}

.home-feature-band p:not(.side-title) {
  max-width: 690px;
  margin: 0;
  color: #3e473f;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.theme-list {
  display: grid;
  gap: 10px;
}

.theme-list a,
.home-popular a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 900;
}

.theme-list span,
.home-popular span {
  color: var(--green);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.home-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
}

.home-dialogue-preview {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.home-dialogue-preview img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.home-dialogue-preview div {
  padding: 28px;
}

.home-dialogue-preview span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-dialogue-preview h3 {
  margin: 12px 0;
  font-size: 24px;
  line-height: 1.5;
}

.home-dialogue-preview p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.85;
}

.home-dialogue-preview a {
  font-weight: 900;
}

.home-popular {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.home-social-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 72px auto 0;
  padding: 34px 7vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-social-strip h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
}

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

.social-actions a {
  padding: 12px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.standard-article {
  padding: 0 7vw 72px;
}

.standard-hero {
  max-width: 900px;
  margin: 58px auto 0;
}

.standard-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.standard-hero > p {
  max-width: 760px;
  margin: 0 0 34px;
  color: #303b34;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.standard-hero figure {
  margin: 0;
}

.standard-hero img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.standard-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 64px;
  align-items: start;
  justify-content: center;
  margin: 54px auto 0;
}

.standard-side {
  position: sticky;
  top: 24px;
}

.standard-body {
  min-width: 0;
}

.standard-body section + section {
  margin-top: 42px;
}

.standard-body h2 {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 30px;
  line-height: 1.45;
}

.standard-body p {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.15;
}

.standard-point {
  margin: 40px 0;
  padding: 26px 28px;
  background: #fff8d9;
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
}

.standard-point p:last-child {
  margin-bottom: 0;
  color: #454136;
  font-weight: 800;
}

.standard-photo {
  margin: 44px 0;
}

.standard-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
}

.category-main,
.support-main {
  padding: 0 7vw 76px;
}

.category-hero,
.support-hero {
  max-width: 920px;
  margin: 58px auto 0;
}

.category-hero h1,
.support-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.16;
}

.category-hero p:not(.side-title),
.support-hero p:not(.side-title) {
  max-width: 760px;
  margin: 0;
  color: #303b34;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.support-hero a {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  min-height: 46px;
  padding: 0 22px;
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.category-feature {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  max-width: 1180px;
  margin: 58px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.category-feature h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
}

.category-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 46px auto 0;
}

.category-list article,
.support-grid article {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.category-list span,
.support-grid span {
  color: var(--green);
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-list h2,
.support-grid h2 {
  margin: 10px 0 10px;
  font-size: 24px;
  line-height: 1.45;
}

.category-list p,
.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 54px auto 0;
}

.support-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 54px auto 0;
  padding: 34px 38px;
  background: #fff4cf;
  border-radius: 14px;
}

.support-note h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.45;
}

.support-note p:not(.side-title) {
  margin: 0;
  color: #4b4432;
  font-weight: 700;
  line-height: 1.9;
}

.support-note a {
  padding: 12px 24px;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .rashisa-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rashisa-links,
  .rashisa-category-bar {
    overflow-x: auto;
    white-space: nowrap;
  }

  .rashisa-category-bar {
    display: flex;
  }

  .rashisa-category-bar a {
    min-width: 132px;
  }

  .dialogue-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .standard-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .category-feature,
  .category-feature-grid,
  .category-list,
  .support-grid,
  .support-note {
    grid-template-columns: 1fr;
  }

  .dialogue-side {
    position: static;
    order: 2;
  }

  .standard-side {
    position: static;
    order: 2;
  }

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

  .quiet-support {
    align-items: flex-start;
    flex-direction: column;
  }

  .rashisa-home-hero,
  .home-feature-band,
  .home-two-column {
    grid-template-columns: 1fr;
  }

  .rashisa-home-hero {
    padding-top: 34px;
  }

  .home-hero-image,
  .home-hero-image img {
    min-height: 360px;
  }

  .home-story-grid,
  .home-dialogue-preview {
    grid-template-columns: 1fr;
  }

  .home-section-heading,
  .home-social-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .rashisa-logo {
    font-size: 38px;
  }

  .dialogue-article {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .dialogue-hero {
    margin-top: 38px;
  }

  .standard-hero {
    margin-top: 38px;
  }

  .dialogue-lead {
    font-size: 16px;
  }

  .standard-hero > p {
    font-size: 16px;
  }

  .dialogue-hero h1,
  .standard-hero h1,
  .category-hero h1,
  .support-hero h1 {
    display: block;
    width: calc(100vw - 18vw);
    font-size: 34px;
    line-height: 1.28;
    max-width: calc(100vw - 18vw);
    white-space: normal;
    word-break: break-all;
  }

  .dialogue-section h2,
  .standard-body h2 {
    font-size: 24px;
    line-height: 1.5;
    word-break: break-all;
  }

  .rashisa-header {
    padding-right: 9vw;
    padding-left: 9vw;
  }

  .rashisa-category-bar {
    padding-right: 9vw;
    padding-left: 9vw;
  }

  .rashisa-home-hero {
    padding-right: 9vw;
    padding-left: 9vw;
  }

  .home-hero-copy h1 {
    font-size: 38px;
  }

  .home-hero-copy h1 span {
    padding-right: 10px;
    padding-left: 10px;
  }

  .home-hero-copy p,
  .category-hero p:not(.side-title),
  .support-hero p:not(.side-title) {
    font-size: 15px;
    line-height: 1.95;
  }

  .chat-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .chat-row img {
    width: 44px;
    height: 44px;
  }

  .chat-content {
    padding: 18px;
  }

  .chat-content p:not(.speaker-name) {
    font-size: 15px;
  }
}
