/* Verified master modules, scoped to this case study. */

.wf-case-smart-news .smart-news-detail-copy {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(40px, 7vw, 110px);
  width: min(1276px, 100%);
  margin: 0 0 clamp(72px, 10vw, 140px) auto;
  padding-top: 22px;
  border-top: 1px solid var(--text);
}
.wf-case-smart-news .smart-news-detail-copy h3 { max-width: 580px; margin: 18px 0 0; font-size: clamp(32px, 4vw, 62px); letter-spacing: -0.04em; }
.wf-case-smart-news .smart-news-detail-body { max-width: 760px; }
.wf-case-smart-news .smart-news-detail-body > p { margin: 0; font-size: clamp(18px, 1.6vw, 22px); font-weight: 300; line-height: 1.55; }
.wf-case-smart-news .smart-news-detail-body h4 { margin: clamp(36px, 5vw, 62px) 0 18px; font-size: clamp(22px, 2.2vw, 30px); }
.wf-case-smart-news .smart-news-detail-body ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.wf-case-smart-news .smart-news-detail-body li { position: relative; padding-left: 26px; font-size: clamp(16px, 1.4vw, 18px); font-weight: 300; }
.wf-case-smart-news .smart-news-detail-body li::before { position: absolute; left: 0; content: "✓"; color: var(--blue); font-weight: 700; }
.wf-case-smart-news .smart-news-second-edition {
  width: min(1276px, 100%);
  margin: clamp(52px, 7vw, 96px) 0;
  padding-top: 22px;
  border-top: 1px solid var(--text);
  text-align: left;
}
.wf-case-smart-news .smart-news-second-edition > h3 { max-width: 760px; margin: 18px 0 clamp(36px, 5vw, 62px); font-size: clamp(42px, 5.6vw, 82px); letter-spacing: -0.045em; }
.wf-case-smart-news .smart-news-edition-label { margin: 14px 0 0; font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); font-weight: 700; line-height: 1.1; }
.wf-case-smart-news .smart-news-second-edition .smart-news-detail-body { max-width: 760px; }
.wf-case-smart-news .smart-news-second-edition .smart-news-detail-body h4 { margin-top: 0; }
.wf-case-smart-news .smart-news-gallery {
  --gallery-gap: clamp(20px, 3vw, 44px);
  display: grid;
  gap: var(--gallery-gap);
}
.wf-case-smart-news .smart-news-gallery-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gallery-gap); }
.wf-case-smart-news .smart-news-gallery figure { width: 100%; height: auto; margin: 0; overflow: hidden; background: #e3dddb; }
.wf-case-smart-news .smart-news-gallery img { display: block; width: 100%; height: auto; object-fit: contain; transition: filter 0.9s var(--ease); }
.wf-case-smart-news .smart-news-gallery figure:hover img { filter: saturate(1.05); }
.wf-case-smart-news .smart-news-gallery-wide { width: 100%; }
@media (max-width: 760px) {
  .wf-case-smart-news .smart-news-detail-copy { grid-template-columns: 1fr; gap: 36px; }
  .wf-case-smart-news .smart-news-gallery-pair { grid-template-columns: 1fr; }
}