/* ============================================================
   易宗武術 yizongtw.com — 主要樣式表
   設計系統：百年京都茶室 × Aman Resorts
   ============================================================ */

/* --- Google Fonts 引入 --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500&family=Noto+Sans+TC:wght@300;400&family=Noto+Serif+JP:wght@300;400;500&family=Noto+Sans+JP:wght@300;400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Libre+Franklin:wght@300;400&display=swap');

/* --- CSS 自訂屬性（色彩系統） --- */
:root {
  /* 主色 — 墨色系 */
  --ink-deep:    #1a1a18;
  --ink-medium:  #2d2b28;
  --ink-light:   #4a4640;

  /* 紙色系 */
  --paper-warm:  #f5f0e8;
  --paper-light: #faf7f2;
  --paper-dark:  #e8e0d4;

  /* 點綴色 */
  --stone-grey:  #8a8478;
  --moss-green:  #5a6b52;
  --wood-brown:  #6b5b4a;

  /* 功能色 */
  --text-primary:   var(--ink-deep);
  --text-secondary: var(--stone-grey);
  --bg-primary:     var(--paper-warm);
  --bg-secondary:   var(--ink-deep);
  --text-on-dark:   var(--paper-warm);

  /* 排版 */
  --max-width: 1200px;
  --content-width: 800px;
  --nav-height: 64px;

  /* 動態 */
  --transition-slow: 1.2s ease;
  --transition-med:  0.6s ease;
  --transition-fast: 0.3s ease;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- 語言特定字體 --- */
:lang(zh) {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

:lang(en) {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

:lang(ja) {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* --- 標題字體 --- */
:lang(zh) h1, :lang(zh) h2, :lang(zh) h3 {
  font-family: 'Noto Serif TC', serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

:lang(en) h1, :lang(en) h2, :lang(en) h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

:lang(ja) h1, :lang(ja) h2, :lang(ja) h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* --- 導覽列 --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background var(--transition-med), backdrop-filter var(--transition-med);
}

.site-nav.scrolled {
  background: rgba(26, 26, 24, 0.92);
  backdrop-filter: blur(8px);
}

.site-nav.light-nav {
  background: transparent;
}

.site-nav.light-nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
}

.nav-brand {
  font-family: 'Noto Serif TC', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--paper-warm);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.light-nav .nav-brand {
  color: var(--ink-deep);
}

.nav-brand:hover {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.light-nav .nav-links a {
  color: var(--ink-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--paper-warm);
}

.light-nav .nav-links a:hover {
  color: var(--ink-deep);
}

/* 語言切換 */
.lang-switch {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 40px;
}

.lang-switch a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.light-nav .lang-switch a {
  color: var(--stone-grey);
}

.lang-switch a.current {
  color: var(--paper-warm);
}

.light-nav .lang-switch a.current {
  color: var(--ink-deep);
}

.lang-switch a:hover {
  color: var(--moss-green);
}

.lang-switch span {
  color: rgba(245, 240, 232, 0.2);
  font-size: 10px;
}

.light-nav .lang-switch span {
  color: var(--paper-dark);
}

/* 漢堡選單（手機） */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--paper-warm);
  transition: all var(--transition-fast);
}

.light-nav .nav-toggle span {
  background: var(--ink-deep);
}

/* 手機選單覆蓋層 */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--paper-warm);
  text-decoration: none;
  letter-spacing: 0.15em;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.mobile-menu a:hover {
  opacity: 1;
}

.mobile-menu .mobile-lang {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.mobile-menu .mobile-lang a {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--stone-grey);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--paper-warm);
  font-size: 24px;
  line-height: 1;
  padding: 8px;
}

/* --- Hero 區塊 --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 2s ease;
  opacity: 0.75;
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--paper-warm);
  padding: 0 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn var(--transition-slow) 0.3s forwards;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 232, 0.6);
  opacity: 0;
  animation: fadeIn var(--transition-slow) 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.3);
  animation: scrollLine 2s ease infinite;
}

/* --- 頁面 Hero（非首頁） --- */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--ink-deep);
}

.page-hero .hero-bg {
  opacity: 0.6;
}

.page-hero .hero-content {
  text-align: left;
  padding: 0 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.page-hero .hero-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  text-align: left;
  margin-bottom: 16px;
}

.page-hero .hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeIn 1s 0.2s forwards;
}

/* --- 主要內容區塊 --- */
.section {
  padding: 120px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 120px 48px;
}

.section-dark {
  background: var(--ink-deep);
  color: var(--text-on-dark);
  padding: 120px 48px;
}

.section-dark .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- 文字排版 --- */
.text-block {
  max-width: 640px;
}

.text-block p {
  font-size: 19px;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 1.5em;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.section-dark .text-block p {
  color: rgba(245, 240, 232, 0.85);
}

.lead-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
  font-weight: 300;
  color: var(--ink-medium);
  margin-bottom: 60px;
}

.section-dark .lead-text {
  color: rgba(245, 240, 232, 0.7);
}

/* 引言文字 */
.quote-text {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink-medium);
  margin: 0 auto 80px;
  max-width: 640px;
}

:lang(en) .quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.section-dark .quote-text {
  color: rgba(245, 240, 232, 0.8);
}

/* --- 分隔線 --- */
.divider {
  width: 40px;
  height: 1px;
  background: var(--stone-grey);
  margin: 60px 0;
}

.divider-center {
  margin: 60px auto;
}

/* --- 武學三門入口（首頁） --- */
.arts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 0;
}

.art-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-deep);
  text-decoration: none;
  display: block;
}

.art-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease, opacity 0.6s ease;
  opacity: 0.7;
}

.art-card:hover .art-card-bg {
  transform: scale(1.04);
  opacity: 0.5;
}

.art-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 24px;
  color: var(--paper-warm);
}

.art-card-name {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

:lang(en) .art-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.1em;
}

.art-card-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 232, 0.5);
  text-transform: uppercase;
}

/* --- 傳承時間軸 --- */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--paper-dark);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 100px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--stone-grey);
  border: 2px solid var(--paper-warm);
}

.timeline-year {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--stone-grey);
  margin-bottom: 16px;
}

.timeline-name {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--ink-deep);
}

:lang(en) .timeline-name {
  font-family: 'Cormorant Garamond', serif;
}

.timeline-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--ink-medium);
  max-width: 560px;
}

/* 深色時間軸（傳承頁） */
.timeline-dark {
  background: var(--ink-deep);
  padding: 120px 48px;
}

.timeline-dark .timeline::before {
  background: rgba(245, 240, 232, 0.15);
}

.timeline-dark .timeline-item::before {
  background: var(--stone-grey);
  border-color: var(--ink-deep);
}

.timeline-dark .timeline-year {
  color: var(--stone-grey);
}

.timeline-dark .timeline-name {
  color: var(--paper-warm);
}

.timeline-dark .timeline-text {
  color: rgba(245, 240, 232, 0.75);
}

/* --- 圖片區塊 --- */
.img-full {
  width: 100%;
  height: auto;
  display: block;
}

.img-hero {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

.img-side {
  float: right;
  width: 45%;
  margin: 0 0 40px 60px;
}

.img-caption {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--stone-grey);
  margin-top: 12px;
}

/* 圖文並排 */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

/* --- 聯繫頁 --- */
.inquiry-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 48px;
  text-align: center;
}

.inquiry-text {
  font-size: 19px;
  line-height: 2;
  color: var(--ink-medium);
  max-width: 560px;
  margin-bottom: 60px;
}

.inquiry-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--ink-deep);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--paper-dark);
  padding-bottom: 4px;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.inquiry-email:hover {
  color: var(--wood-brown);
  border-color: var(--wood-brown);
}

/* --- 碧巖館頁 --- */
.dojo-section {
  padding: 120px 48px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.dojo-address {
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--stone-grey);
  line-height: 2;
  margin-top: 40px;
}

.tifa-link {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--stone-grey);
  text-decoration: none;
  margin-top: 80px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.tifa-link:hover {
  color: var(--moss-green);
  border-color: var(--moss-green);
}

/* --- 頁尾 --- */
.site-footer {
  background: var(--ink-deep);
  color: rgba(245, 240, 232, 0.4);
  padding: 60px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.footer-brand {
  font-family: 'Noto Serif TC', serif;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  letter-spacing: 0.15em;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(245, 240, 232, 0.8);
}

/* --- 動態效果 --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* 捲動淡入（JS 配合） */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 響應式 --- */
@media (max-width: 1024px) {
  .section, .section-narrow, .section-dark {
    padding: 80px 32px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-layout.reverse {
    direction: ltr;
  }

  .img-side {
    float: none;
    width: 100%;
    margin: 0 0 40px 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  .site-nav {
    padding: 0 24px;
  }

  .nav-links,
  .lang-switch {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section, .section-narrow {
    padding: 80px 24px;
  }

  .section-dark {
    padding: 80px 24px;
  }

  .arts-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .art-card {
    aspect-ratio: 4/3;
  }

  .page-hero .hero-content {
    padding: 0 24px;
  }

  .timeline-item {
    padding-left: 40px;
    margin-bottom: 60px;
  }

  .site-footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .inquiry-section {
    padding: 80px 24px;
  }

  .dojo-section {
    padding: 80px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .arts-grid {
    gap: 1px;
  }
}

/* --- 影片背景（首頁 hero） --- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* --- 武學頁面特有樣式 --- */
.art-intro {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-family: 'Noto Serif TC', serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--ink-deep);
  max-width: 640px;
  margin-bottom: 80px;
}

:lang(en) .art-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.art-body {
  font-size: 18px;
  line-height: 2;
  color: var(--ink-medium);
  max-width: 640px;
}

.art-body p {
  margin-bottom: 1.5em;
}

/* 武學名稱大字 */
.art-name-large {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(26, 26, 24, 0.08);
  position: absolute;
  right: 48px;
  bottom: 60px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* --- 傳承頁特有 --- */
.lineage-intro {
  padding: 160px 48px 80px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.lineage-quote {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--ink-medium);
}

:lang(en) .lineage-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* --- 碧巖館頁特有 --- */
.dojo-image-block {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 80px;
}

.dojo-image-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 首頁第二區塊 --- */
.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.home-intro-text {
  font-size: 18px;
  line-height: 2;
  color: var(--ink-medium);
}

.home-intro-text p {
  margin-bottom: 1.5em;
}

.home-intro-image {
  position: relative;
}

.home-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .home-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }

  .lineage-intro {
    padding: 100px 24px 60px;
  }
}

/* --- 武學總覽頁 --- */
.arts-overview {
  padding: 120px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.arts-overview-intro {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--ink-medium);
  max-width: 640px;
  margin-bottom: 100px;
}

:lang(en) .arts-overview-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.arts-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.art-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--paper-dark);
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-fast);
}

.art-item:last-child {
  border-bottom: none;
}

.art-item:hover {
  opacity: 0.75;
}

.art-item-label {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ink-deep);
  line-height: 1.3;
}

:lang(en) .art-item-label {
  font-family: 'Cormorant Garamond', serif;
}

.art-item-desc {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-medium);
}

@media (max-width: 768px) {
  .arts-overview {
    padding: 80px 24px;
  }

  .art-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
