/* ===========================
   リセット & ベース
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white:       #FFFFFF;
  --ecru:        #F4EFE4;
  --ecru-dark:   #EAE2D0;
  --green-deep:  #1C3D2A;
  --green-mid:   #2A5C3E;
  --black:       #111111;
  --black-soft:  #1E1E1E;
  --gold:        #B8943A;
  --gold-light:  #D4AC5A;
  --gray:        #6B6B6B;
  --gray-light:  #E8E4DC;

  --font-serif:  'Noto Serif JP', serif;
  --font-sans:   'Noto Sans JP', sans-serif;
  --font-en:     'EB Garamond', serif;

  --section-py:  120px;
  --container:   1100px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===========================
   ユーティリティ
=========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.9;
  max-width: 640px;
  margin-bottom: 64px;
}
.section-desc.light { color: rgba(255,255,255,0.75); }

/* ボタン */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
}
.btn-outline-gold:hover {
  background: rgba(184,148,58,0.1);
}

.btn-large {
  padding: 18px 40px;
  font-size: 15px;
}

/* ===========================
   ナビゲーション
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(17,17,17,0.95);
  padding: 14px 0;
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-img {
  opacity: 1;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.nav-menu a {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: var(--gold-light);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* ===========================
   FV（ファーストビュー）
=========================== */
.fv {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #3D5040 0%, #2a3830 40%, #1e2420 100%);
  overflow: hidden;
}

/* 背景テクスチャ（擬似的な自然感） */
.fv::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(70, 110, 80, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(184, 148, 58, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: url('images/fv-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

.fv-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.fv-sub {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.fv-main {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.fv-desc {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #D4AC5A;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 52px;
}

.fv-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fv-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.3em;
}

.fv-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ===========================
   Why セクション
=========================== */
.why {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-text p {
  font-size: 16px;
  color: #333;
  margin-bottom: 24px;
  line-height: 2;
}

.why-text strong {
  color: var(--green-deep);
  font-weight: 700;
}

.why-emphasis {
  font-family: var(--font-serif);
  font-size: 18px !important;
  color: var(--green-deep) !important;
  font-weight: 700;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 32px !important;
}

.why-facts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 80px;
}

.fact-card {
  background: var(--ecru);
  border: 1px solid var(--ecru-dark);
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
}

.fact-number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.fact-number span {
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.fact-label {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ===========================
   大引用セクション
=========================== */
.quote-section {
  background: var(--ecru);
  padding: 80px 0;
  border-top: 1px solid var(--ecru-dark);
  border-bottom: 1px solid var(--ecru-dark);
}

.big-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--green-deep);
  text-align: center;
  line-height: 1.7;
  position: relative;
  padding: 0 40px;
}

.big-quote::before {
  content: '\201C';
  font-family: var(--font-en);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

/* ===========================
   Vision セクション
=========================== */
.vision {
  background: var(--green-deep);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(184,148,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vision-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 64px;
  position: relative;
}

.pillar {
  padding: 48px;
  background: var(--ecru);
  border: none;
}

.pillar-divider {
  width: 1px;
  background: rgba(184,148,58,0.4);
  margin: 48px 0;
}

.pillar-number {
  font-family: var(--font-en);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 20px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 20px;
}

.pillar-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

.vision-statement {
  background: var(--ecru);
  border: none;
  padding: 40px 48px;
  text-align: center;
}

.vision-statement p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 22px);
  color: #555;
  line-height: 2;
}

.vision-stmt-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

.vision-stmt-strong {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--green-deep);
  font-weight: 900;
  line-height: 1.6;
}

/* ===========================
   What we do セクション
=========================== */
.what {
  padding: var(--section-py) 0;
  background: var(--ecru);
}

.what-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ecru-dark);
}

.what-card {
  background: var(--white);
  padding: 48px 36px;
  transition: all 0.25s ease;
}

.what-card:hover {
  background: var(--green-deep);
  color: var(--white);
}

.what-card:hover p {
  color: rgba(255,255,255,0.75);
}

.what-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}

.what-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.what-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  transition: color 0.25s;
}

/* ===========================
   Partner / Join セクション
=========================== */
.partner {
  background: var(--green-deep);
  padding: var(--section-py) 0;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: transparent;
}

.partner-card {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--gold);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-card.featured {
  background: rgba(255,255,255,0.18);
  border-left: 4px solid var(--gold-light);
  position: relative;
}

.partner-tag {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

.partner-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  min-height: 68px;
}

.partner-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  min-height: 150px;
}

.partner-btn {
  display: inline-block;
  margin-top: auto;
  padding: 12px 24px;
  border: 1px solid rgba(184,148,58,0.5);
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.25s ease;
}

.partner-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===========================
   Profile セクション
=========================== */
.profile {
  padding: var(--section-py) 0;
  background: var(--white);
}

.profile-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.profile-photo-frame {
  aspect-ratio: 3/4;
  background: var(--ecru);
  overflow: hidden;
  position: relative;
}

.profile-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.profile-photo-placeholder {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  font-family: var(--font-serif);
}

.profile-tag-line {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  font-family: var(--font-sans);
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-kana {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.profile-role {
  font-size: 14px;
  color: var(--green-deep);
  font-weight: 500;
  margin-bottom: 32px;
}

.profile-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

.profile-text p {
  font-size: 15px;
  color: #444;
  line-height: 2;
  margin-bottom: 20px;
}

.profile-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 32px 0;
  line-height: 1.6;
}

.profile-contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 8px !important;
  text-transform: uppercase;
}

.profile-email {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--green-deep);
  border-bottom: 1px solid var(--green-deep);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.profile-email:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ===========================
   CTA セクション
=========================== */
.cta {
  background: linear-gradient(135deg, #3D5040 0%, #2a3830 40%, #1e2420 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(44,92,62,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 52px;
  line-height: 1.9;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.cta-email {
  font-family: var(--font-en);
  font-size: 15px;
}

.cta-email a {
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.cta-email a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ===========================
   フッター
=========================== */
.footer {
  background: var(--black);
  padding: 48px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
  gap: 40px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-company {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.footer-right a {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--gold);
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--gold-light);
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ===========================
   ハンバーガーメニュー
=========================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  transition: all 0.3s;
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
}

.nav-mobile-overlay.open {
  display: block;
}

.nav-mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--green-deep);
  z-index: 201;
  transition: right 0.3s ease;
  padding: 80px 36px 40px;
}

.nav-mobile-menu.open {
  right: 0;
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.nav-mobile-list {
  list-style: none;
}

.nav-mobile-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-list a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  transition: color 0.2s;
}

.nav-mobile-list a:hover {
  color: var(--gold-light);
}

.nav-mobile-cta {
  display: block;
  margin-top: 32px;
  text-align: center;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--white) !important;
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 900px) {
  :root { --section-py: 80px; }

  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }

  .fv-main { font-size: 32px; }

  .why-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-facts { padding-top: 0; }

  .vision-pillars {
    grid-template-columns: 1fr;
  }
  .pillar-divider {
    width: auto;
    height: 1px;
    margin: 0 48px;
  }

  .what-cards {
    grid-template-columns: 1fr;
  }

  .partner-cards {
    grid-template-columns: 1fr;
  }

  .profile-inner {
    grid-template-columns: 1fr;
  }

  .profile-photo-frame {
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-right {
    text-align: left;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .fv-content { padding: 0 20px; }

  .fv-main { font-size: 26px; }

  .fv-buttons {
    flex-direction: column;
  }

  .pillar { padding: 32px 24px; }

  .vision-statement { padding: 32px 24px; }

  .partner-card { padding: 36px 24px; }

  .big-quote { font-size: 20px; }
}

/* ===========================
   お知らせセクション
=========================== */
.news-section {
  padding: var(--section-py) 0;
  background: var(--ecru);
  border-top: 1px solid var(--ecru-dark);
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news-header .section-title {
  margin-bottom: 0;
}

.news-more {
  font-size: 13px;
  color: var(--green-deep);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--green-deep);
  padding-bottom: 2px;
  transition: all 0.2s;
  white-space: nowrap;
  margin-bottom: 4px;
}

.news-more:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ecru-dark);
}

.news-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.news-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.news-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ecru-dark);
  position: relative;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-thumb img {
  transform: scale(1.04);
}

.news-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: rgba(255,255,255,0.3);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  position: absolute;
  inset: 0;
}

.news-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.news-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 10px;
  border-radius: 2px;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.6;
  flex: 1;
}

.news-card-date {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .news-list {
    grid-template-columns: 1fr;
  }
  .news-card {
    flex-direction: row;
  }
  .news-card-thumb {
    width: 160px;
    aspect-ratio: auto;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .news-card {
    flex-direction: column;
  }
  .news-card-thumb {
    width: 100%;
    aspect-ratio: 16/10;
  }
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
