:root {
  --color-dark: #060606;
  --color-off-white: #f5f3ed;
  --color-sand: #eae6da;
  --color-mid: #b5b5b5;
  --color-muted: #666666;
  --color-white: #ffffff;
  --color-teal: #02d9d7;
  --color-teal-dark: #45acab;
  --color-key: #00C3D0;
  --color-orange: #f55500;
  --content-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  line-height: 1.5;
  background-color: var(--color-dark);
  color: var(--color-dark);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: var(--color-dark);
  color: var(--color-white);
}

.required {
  color: var(--color-orange);
}

.hidden {
  display: none;
}
  
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.top-bar {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 12px clamp(24px, 5vw, 72px);
  width: 100%;
  background-color: rgba(6, 6, 6, 0.95);
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: 48px;
  flex-shrink: 0;
}

.brand img {
  width: 148px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-weight: 600;
  text-transform: none;
  flex: 1;
}

.primary-nav {
  position: relative;
}

.primary-nav > ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 32px;
}

.primary-nav a {
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--color-teal);
}

/* Dropdown Menu */
.nav-dropdown-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0 60px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.primary-nav:hover .nav-dropdown-overlay,
.primary-nav:focus-within .nav-dropdown-overlay,
.nav-dropdown-overlay:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-overlay ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 1400px;
  padding: 0 60px;
  justify-content: center;
}

.nav-dropdown-overlay > ul > li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
}

.nav-dropdown-overlay > ul > li > a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
  padding: 0 5px;
  white-space: nowrap;
}

.nav-dropdown-overlay > ul > li > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-dropdown-overlay > ul > li > ul > li > a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  padding: 0 5px;
  white-space: nowrap;
}

.nav-dropdown-overlay > ul > li > ul > li > a:hover {
  color: var(--color-teal);
}

@media (min-width: 771px) {
  .nav-dropdown-overlay {
    display: block;
  }
}

.swap-label {
  display: inline-flex;
  gap: 4px;
}

.swap-label .label-hover {
  display: none;
}

.swap-label:hover .label-default,
.swap-label:focus-visible .label-default {
  display: none;
}

.swap-label:hover .label-hover,
.swap-label:focus-visible .label-hover {
  display: inline;
}

.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle-btn span {
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-dark);
  color: var(--color-off-white);
  border: 2px solid var(--color-teal);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-teal);
  color: var(--color-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  color: var(--color-dark);
}

.btn-pill {
  background-color: var(--color-teal-dark);
  border: none;
  color: var(--color-dark);
  padding: 9px 22px;
  font-size: 13px;
}

.btn-pill:hover,
.btn-pill:focus-visible {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.btn-pill-key {
  background-color: var(--color-key);
  border: none;
  color: var(--color-white);
  padding: 9px 22px;
  font-size: 13px;
}

.btn-pill-key:hover,
.btn-pill-key:focus-visible {
  background-color: var(--color-key);
  color: var(--color-dark);
}

.header-cta {
  margin-left: auto;
  flex-shrink: 0;
  padding-inline: 26px;
}

.hero {
  position: relative;
  min-height: 520px;
  background-image: url('/assets/front/images/hero-foreground.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.35);
}

.hero-overlay {
  position: relative;
  color: #dddddd;
  font-family: 'Anton', 'Noto Sans KR', sans-serif;
  font-size: 48px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 12px;
}

main {
  background-color: var(--color-off-white);
}

.mission {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 120px 20px 80px;
  text-align: center;
}

.mission-logo img {
  width: 280px;
  margin: 0 auto 60px;
}

.mission-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mission-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mission-line {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(56px, 6.5vw, 86px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.05;
}

.mission-plus {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1;
  margin: -12px 0;
}

.mission-desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  margin-top: 60px;
}

.mission-copy {
  font-size: 28px;
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.mission-copy + .mission-copy {
  margin-top: 6px;
}

.mission-copy.accent {
  font-weight: 400;
  font-size: 30px;
}

.mission-copy.accent span {
  font-weight: 700;
}

.cta-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 60px;
}

.cta-group a.btn {
  border-radius: 0px !important;
}

.isr {
  background-color: var(--color-dark);
  color: var(--color-sand);
  padding: 160px 20px;
  position: relative;
  overflow: hidden;
}

.isr::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/front/images/isr-texture.png');
  background-size: 2400px auto;
  background-position: center;
  background-repeat: no-repeat;
}

.isr-content {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.isr-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.isr-sigil {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 6vw, 70px);
  color: var(--color-orange);
  letter-spacing: 0.08em;
}

.isr-name {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 66px);
  color: var(--color-orange);
  line-height: 1.15;
}

.isr-name span {
  display: block;
}

.isr-quote {
  margin: 0 0 32px;
  font-size: 26px;
  color: var(--color-sand);
}

.isr-copy {
  margin: 4px 0;
  font-size: 24px;
  color: var(--color-sand);
}

.pillars {
  padding: 160px 20px;
  background-color: var(--color-off-white);
}

.stories .section-heading {
  max-width: calc(100% - 80px);
  margin: 0 auto;
}

.stories .section-heading p {
  margin: 0 0 20px;
  color: #02D9D7;
  font-size: 36px;
}

.stories .section-heading p span {
  font-size: 28px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.pillar-grid article {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-grid article p{
  margin:0;
}

.pillar-grid h3 {
  margin: 0;
  font-size: 24px;
}

.stories {
  padding: 160px 20px;
  background-color: var(--color-dark);
  color: var(--color-white);
}

.stories .section-heading {
  color: var(--color-teal);
}

.stories .section-heading h2 {
  color: var(--color-white);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-mid);
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin: 40px auto 80px;
}

.story-card-grid {
  width: 100%;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.media-card {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  text-align: left;
  color: var(--color-white);
  padding: 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-body .info-label {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.card-body .info-copy {
  margin: 6px 0 0;
  font-size: 16px;
  color: var(--color-mid);
}

.card-body .info-meta {
  margin: 8px 0 0;
  color: #02D9D7;
  font-size: 14px;
}
.cta-row a.btn {
  color: var(--color-white);
  border-color: var(--color-white);
}

.cta-row a.btn:hover,
.cta-row a.btn:focus-visible {
  background-color: #02D9D7;
  border-color: #02D9D7;
  color: var(--color-dark);
}

.projects-cta,
.stories-cta {
  margin-top: 0;
}

.hashtags {
  background-color: var(--color-off-white);
  padding: 160px 20px;
}

.hashtags-wrapper {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background-image: url('/assets/front/images/texture-lines.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 480px;
  padding: 40px 20px;
}

.hashtags-wrapper h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 40px 0 50px;
}

.hashtags-wrapper p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 50px;
}

.tagline-script {
  width: 270px;
  margin: 0 auto 12px;
}

.hashtag-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  font-weight: 600;
}

.partners {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 160px 20px;
  display:block;
}

.partners .partners-heading {
    text-align: center;
}

.partners .partners-heading p {
    font-size: 28px;
    margin: 60px 0 20px;
}

.partners .partners-heading h2 {
  font-size: 48px;
  margin: 0 auto 100px;
}

.partners h3 {
    font-size:20px;
    color:#666;
}
.partners-script {
  width: 184px;
  margin: 0 auto 16px;
}

.logo-group {
  max-width: var(--content-max);
  margin: 0 auto 80px;
}

.logo-group h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
}

.logo-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	background-color: #101010;
	padding: 32px;
	border-radius: 28px;
}

.logo-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-grid.private {
  background-color: #0c0c0c;
}

.ally-logos {
  background-color: var(--color-dark);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.ally-logos img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.site-footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 60px 20px 80px;
  text-align: left;
}

.footer-links {
  display: flex;
  justify-content: left;
  gap: 16px;
  margin:0 auto 20px;
  max-width: var(--content-max);
}

.footer-links a {
  color: var(--color-teal);
  font-weight: 600;
}

.footer-info {
  max-width: var(--content-max);
  margin: 0 auto;
  color: var(--color-mid);
}

.footer-info p {
  margin: 8px 0;
}

@media (max-width: 1024px) {
  .top-bar {
    padding: 16px 32px;
  }

  .brand {
    margin-right: 24px;
  }

  .primary-nav ul {
    gap: 16px;
  }

.story-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 770px) {
  .top-bar {
    position: relative;
    justify-content: space-between;
  }

  .header-cta {
    display: inline-flex;
    margin-left: 0;
  }

  .nav-toggle-btn {
    display: flex;
    margin-left: 0;
    order: -1;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    display: none;
    z-index: 1000;
    pointer-events: none;
  }

  .nav-toggle:checked ~ .primary-nav {
    display: flex;
    pointer-events: auto;
  }
  .isr::before {
    background-size: 1700px auto;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .nav-toggle:checked ~ .nav-toggle-btn {
    position: relative;
    z-index: 3;
  }

  .nav-toggle:checked ~ .primary-nav {
    display: flex;
  }

  .primary-nav > ul {
    display: none;
  }

  .nav-dropdown-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 40px;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.3);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1001;
    transition: color 0.2s ease;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    color: var(--color-teal);
  }

  .mobile-menu-close span {
    display: block;
  }

  .nav-toggle:checked ~ .primary-nav .nav-dropdown-overlay {
    left: 0;
  }

  .nav-toggle:checked ~ .primary-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    pointer-events: auto;
  }

  .nav-dropdown-overlay ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: none;
  }

  .nav-dropdown-overlay > ul {
    padding-top: 20px;
  }

  .nav-dropdown-overlay > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
  }

  .nav-dropdown-overlay > ul > li > a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease;
  }

  .nav-dropdown-overlay > ul > li > a:hover {
    color: var(--color-teal);
    background-color: rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown-overlay > ul > li.has-submenu > a::after {
    content: '−';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.2s ease;
    color: var(--color-teal);
  }

  .nav-dropdown-overlay > ul > li.has-submenu.active > a::after {
    transform: translateY(-50%) rotate(0deg);
    color: var(--color-teal);
  }

  .nav-dropdown-overlay > ul > li.has-submenu:not(.active) > a::after {
    content: '+';
    color: var(--color-white);
  }

  .nav-dropdown-overlay > ul > li > ul {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: max-height 0.3s ease;
  }

  .nav-dropdown-overlay > ul > li.has-submenu > ul {
    max-height: 500px;
  }

  .nav-dropdown-overlay > ul > li.has-submenu:not(.active) > ul {
    max-height: 0;
  }

  .nav-dropdown-overlay > ul > li.active > ul {
    max-height: 500px;
  }

  .nav-dropdown-overlay > ul > li > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown-overlay > ul > li > ul > li > a {
    display: block;
    padding: 12px 24px 12px 48px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
  }

  .nav-dropdown-overlay > ul > li > ul > li > a:hover {
    color: var(--color-teal);
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 52px;
  }

  .mission-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .pillar-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }

  .pillar-grid article img {
    grid-column: 1;
    grid-row: 1 / -1;
    width: 150%;
    max-width: 300%;
    height: auto;
    object-fit: cover;
    margin-left: -30px;
  }

  .pillar-grid article h3 {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
  }

  .pillar-grid article p {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ally-logos {
    flex-direction: column;
    align-items: center;
  }

  #partners {
    display:none;
  }

  .stories {
    background-color: var(--color-off-white);
    color: var(--color-dark);
  }

  .stories .section-heading {
    max-width: 100%;
  }

  .stories .section-heading p.eyebrow {
    text-align: center;
    color: var(--color-dark);
  }

  .stories .section-heading p span {
    text-align: center;
  }

  .stories .section-heading h2 {
    color: var(--color-dark);
  }

  .story-card-grid {
    margin-top: 60px;
  }

  .story-card-grid:not(.projects) .story-card {
    margin-bottom: 40px;
  }
  /* 인플루언서 영역: 가로 배치 (card-body 왼쪽, media-card 오른쪽) */
  .story-card-grid:not(.projects) .story-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
  }

  .story-card-grid:not(.projects) .story-card .card-body {
    order: -1;
    flex: 0 0 45%;
    color: var(--color-dark);
    padding: 12px 0;
  }

  .story-card-grid:not(.projects) .story-card .card-body .info-label {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 16px;
  }

  .story-card-grid:not(.projects) .story-card .card-body .info-copy {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 20px;
  }

  .story-card-grid:not(.projects) .story-card .card-body .info-meta {
    color: var(--color-dark);
    font-weight: 400;
    margin-top: 30px;
    font-size:14px;
  }

  .story-card-grid:not(.projects) .story-card .media-card {
    order: 1;
    flex: 0 0 55%;
    aspect-ratio: 204 / 183;
  }

  /* 프로젝트 영역: 세로 배치 (card-body 위쪽, media-card 아래쪽) */
  .story-card-grid.projects .story-card {
    flex-direction: column;
  }

  .story-card-grid.projects .story-card {
    padding-bottom: 40px;
  }
  .story-card-grid.projects .story-card .card-body {
    order: -1;
    color: var(--color-dark);
    padding: 12px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
  }

  .story-card-grid.projects .story-card .card-body .info-meta {
    order: 1;
    color: #FF750D;
    font-size: 16px;
    margin: 0;
    flex: 0 0 auto;
  }

  .story-card-grid.projects .story-card .card-body .info-label {
    order: 2;
    color: var(--color-dark);
    margin: 0;
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: normal;
  }

  .story-card-grid.projects .story-card .card-body .info-copy {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    color: var(--color-muted);
    margin: 0;
    font-size: 18px;
    font-weight: 700;
  }

  .story-card-grid.projects .story-card .media-card {
    order: 1;
  }

  .cta-row a.btn {
    color: var(--color-dark);
    border-color: var(--color-dark);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 420px;
  }

  .hero-overlay {
    font-size: 32px;
  }

  .mission {
    padding: 80px 16px;
  }

  .isr,
  .pillars,
  .stories,
  .hashtags,
  .partners {
    padding: 100px 16px;
  }

  .hashtag-list {
    flex-direction: column;
    align-items: center;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .story-card-grid {
    grid-template-columns: 1fr;
  }
}

.donation-banner {
  background-color:var(--color-key);    
  height: 268px;
}
.donation-banner-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.donation-banner-content p {
  margin: 0;
  color: var(--color-dark);
}
.donation-banner-content p:first-of-type {
  font-size: 40px;
  font-weight: 400;
}
.donation-banner-content p:last-of-type {
  font-size: 20px;
  font-weight: 350;
}
.donation-temp-img-wrap {
  text-align: center;
}
.donation-temp-img-wrap img {
  width: 100%;
  object-fit: cover;
  max-width: 1920px;
  display: block;
  margin: 0 auto;
}
.mobile-comma-break {
  display: none;
}
.donation-options {
  background-color: #ece9e1;
  padding: 80px 20px 200px;
}
.donation-form-section {
  background-color: #ece9e1;
  padding: 80px 20px 160px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.donation-form-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}
.donation-form-card2 {
  padding: 32px 36px;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  padding-top:0;
}
.form-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.form-card-header h2 {
  margin: 0;
  font-size: 22px;
}
.btn-pill--ghost {
  background-color: #fff;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.form-grid label,
.form-section,
.amount-input,
.policy-check {
  font-size: 14px;
  color: #4d4d4d;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-grid input,
.amount-input input,
.form-section input,
textarea {
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
}
.form-field-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.form-field-inline--wrap {
  flex-wrap: wrap;
}
.form-field-inline--center {
  align-items: center;
}
.form-field-inline label {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: inherit;
}
.form-field-inline--center label span {
  display: inline-flex;
  align-items: center;
}
.grid-span-2 {
  grid-column: span 2;
}
.section-label {
  margin: 0;
  font-weight: 600;
}
.chip-input {
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip-input:hover {
  border-color: var(--color-teal);
  background-color: rgba(2, 217, 215, 0.05);
}
.chip-input input[type="radio"]:checked ~ span,
.chip-input input[type="checkbox"]:checked ~ span {
  color: var(--color-teal);
  font-weight: 600;
}
.chip-input input {
  accent-color: var(--color-teal);
}

/* 공통 라디오 버튼 스타일 */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

input[type="radio"]:hover {
  border-color: var(--color-teal);
}

input[type="radio"]:checked {
  border-color: var(--color-teal);
  background-color: var(--color-teal);
}

input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}

input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 217, 215, 0.2);
}

input[type="radio"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 공통 체크박스 스타일 */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin: 0;
  flex-shrink: 0;
}

input[type="checkbox"]:hover {
  border-color: var(--color-teal);
}

input[type="checkbox"]:checked {
  border-color: var(--color-teal);
  background-color: var(--color-teal);
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 217, 215, 0.2);
}

input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 라디오 버튼과 체크박스가 label 내부에 있을 때 스타일 */
label > input[type="radio"],
label > input[type="checkbox"] {
  margin-right: 8px;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.payment-chip {
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  padding: 14px;
  font-weight: 600;
  background-color: #fff;
  cursor: pointer;
}
.payment-chip.is-active {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 2px rgba(2, 217, 215, 0.2);
}
.pay-method-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
  transition: background-color 0.2s;
  position: relative;
  height: 4rem;
}
.pay-method-option:hover {
  background-color: #eff6ff;
}
.pay-method-option input.hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-method-option .checkmark {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  display: none;
}
.pay-method-option .checkmark i {
  color: var(--color-key);
  font-size: 1.125rem;
}
.pay-method-option input:checked ~ .checkmark,
.pay-method-option.selected .checkmark {
  display: block !important;
}
.pay-method-option input.hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.pay-method-text {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pay-icon {
  font-size: 1.25rem;
}
.pay-icon-card {
  color: #1d4ed8;
}
.pay-icon-account {
  color: #15803d;
}
.pay-icon-vaccount {
  color: #059669;
}
.pay-icon-mobile {
  color: #ec4899;
}
.pay-method-img {
  max-width: 80px;
  max-height: 64px;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
}
.pay-method-img-naver {
  max-width: 140px;
}
.amount-input input {
  font-weight: 600;
}
.policy-check {
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.policy-check:hover input[type="checkbox"] {
  border-color: var(--color-teal);
}
.policy-check input {
  margin-right: 8px;
}
.form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.form-actions .btn-pill--ghost {
  border-color: #c0c0c0;
  color: #333;
}
.donation-result-section {
  background-color: #ece9e1;
  padding: 80px 20px 160px;
}
.donation-result-card {
  max-width: 770px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 18px;
  padding: 40px 36px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.donation-result-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  color: #111827;
}
.donation-result-message {
  margin: 0 0 32px;
  font-size: 16px;
  color: #4b5563;
}
.donation-result-summary {
  margin: 0 0 32px;
  padding: 20px 24px;
  border-radius: 16px;
  background-color: #f9fafb;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 14px;
  color: #374151;
  text-align: left;
}
.donation-result-summary dt {
  font-weight: 600;
  color: #111827;
}
.donation-result-summary dd {
  margin: 0;
  text-align: right;
}
.donation-result-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.donation-result-actions .btn {
  min-width: 140px;
}
.donation-result-actions .btn-pill--ghost {
  border-color: #d1d5db;
  color: #4b5563;
}
.donation-result-actions .btn-pill {
  background-color: var(--color-key);
  color: #ffffff;
}
.donation-result-actions .btn-pill:hover,
.donation-result-actions .btn-pill:focus-visible {
  background-color: #0ea5e9;
  color: #ffffff;
}

@media (max-width: 770px) {
  .donation-result-section {
    padding: 60px 20px 100px;
  }

  .donation-result-card {
    padding: 32px 24px;
  }

  .donation-result-title {
    font-size: 24px;
  }

  .donation-result-message {
    font-size: 15px;
  }

  .donation-result-summary {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .donation-result-summary dt {
    margin-bottom: 4px;
  }

  .donation-result-summary dd {
    text-align: left;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
  }

  .donation-result-summary dd:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .donation-result-actions {
    flex-direction: column;
  }

  .donation-result-actions .btn {
    width: 100%;
    min-width: auto;
  }
}

.contact-form-card {
  max-width: 900px;
}
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.address-inline {
  display: flex;
  gap: 10px;
}
.address-inline input {
  flex: 1;
}
.address-row {
  grid-column: span 2;
}
.address-row label {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.address-row .address-inline {
  width: 100%;
}
.address-row .address-inline input {
  width: 30%;
  flex: 0 0 30%;
}
.address-row label > div:not(.address-inline) {
  width: 100%;
  margin-top: 8px;
}
.address-row label > div:not(.address-inline) input {
  width: 100%;
}
.peoples-showcase {
  background-color: #f5f3ed;
  padding: 140px 20px 160px;
}
.peoples-title {
  text-align: center;
  margin-bottom: 80px;
  color: #969187;
}
.peoples-title p {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}
.peoples-title img {
  width: 385px;
  height: auto;
  margin: 101px auto;
}
.peoples-showcase-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.peoples-showcase-inner p.peoples-showcase-inner-title {
  margin-top:90px;
  margin-bottom: 61px;
  font-size:40px;
  text-align: center;
}

.peoples-image-list {
  display: flex;
  justify-content: center;
  gap: 150px;
  flex-wrap: wrap;
}
.peoples-image-list article {
  text-align: center;
  max-width: 350px;
}
.peoples-image-list figure {
  margin: 0 0 24px;
}
.peoples-image-list img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}
.peoples-text-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #5b564d;
  font-size: 16px;
}
.peoples-name {
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.peoples-name span {
  font-weight: 500;
  margin-left: 6px;
  font-size: 18px;
}
.peoples-description {
  margin: 0;
  font-size: 16px;
  color: var(--color-dark);
}
.peoples-text-content .peoples-description:last-of-type {
  text-align: left;
}

.peoples-text-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0 auto;
  max-width: 520px;
}
.peoples-text-list article {
  text-align: center;
  padding: 81px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.donation-options-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.donation-option-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.option-title {
  background-color: #fdfdfc;
  padding: 18px 12px;
  font-size: 20px;
  font-weight: 600;
}
.donation-option-card {
  background-color: #fff;
  padding: 48px 32px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}
.option-desc {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #2a2a2a;
}
.donation-option-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  color: #050505;
}

.option-link {
  align-self: center;
  font-weight: 600;
  font-size: 18px;
  color: #050505;
  position: relative;
  padding-right: 18px;
}
.option-link::after {
  content: '›';
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 770px) {
  .donation-form-card {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .grid-span-2 {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .peoples-text-content .peoples-description:last-of-type {
    text-align: center;
  }

  .peoples-title img {
    width: 200px;
  }

  .peoples-image-list {
    gap: 40px;
  }

  .peoples-image-list img {
    width: 180px;
    height: 180px;
  }

  .donation-options-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .donation-option-group {
    gap: 20px;
    padding: 0 20px 40px;
  }

  .option-title { 
    border : 1px solid #050505;
  }

  .donation-option-card {
    min-height: auto;
  }

  .mobile-comma-break {
    display: block;
  }
}

@media (min-width: 769px) {
  .donation-option-group:nth-child(2) .option-title {
    background-color: #050505;
    color: var(--color-teal);
  }
}

.works-banner-growth {
  background-image: url('/assets/front/images/works_growth.jpeg');
}

.works-banner-social {
  background-image: url('/assets/front/images/works_social.jpeg');
}

.works-banner-culture {
  background-image: url('/assets/front/images/works_culture.jpg');
}
.works-contents {
  margin-top: 80px;
}
.works-contents-growth {
  background-color: #050505;
  padding: 40px 32px 120px;
}
.works-table {
  max-width: 1100px;
  margin: 0 auto;
  color: #f2f2f2;
  font-family: 'Noto Sans KR', sans-serif;
}
.works-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  background-color: #e6e1d7;
  color: #050505;
  font-weight: 600;
  text-align: center;
  padding: 14px 0;
}
.works-table-body article {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.works-cell {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.works-cell-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #f5f2ea;
  text-align: center;
}
.works-cell-desc {
  margin: 0;
  font-size: 16px;
  color: #dcd8cf;
}
.works-cell.highlight p {
  margin: 0;
  font-size: 16px;
  color: var(--color-key);
  line-height: 1.5;
  text-align: left;
}
.works-cell .works-tags {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--color-white) !important;
}
.works-content {
  padding: 120px 0px;
  background-color: #050505;
  color: var(--color-white);
}
.works-tab {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #312e2e;
}
.works-tab a {
  text-align: center;
  padding: 16px 10px;
  font-weight: 600;
  color: var(--color-dark);
  border-right: 1px solid #312e2e;
  background-color: #ffffff;
}
.works-tab a:last-child {
  border-right: none;
}
.works-tab a.active {
  background: linear-gradient(90deg, #00f3f3, #00c6e7);
  color: #050505;
  font-weight: 700;
}
.works-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
.works-title article:first-child {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.works-title article:last-child {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
  text-align: left;
}
.works-title-sub {
  margin: 0 0 18px;
  color: #00f3f3;
  font-weight: 600;
}
.works-title-main {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
}
.works-description {
  margin: 0;
  color: #d8d5ce;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 770px) {
  .works-contents-growth {
    padding: 32px 20px 80px;
  }

  .works-table-header {
    grid-template-columns: repeat(3, 1fr);
    font-size: 14px;
    padding: 14px 0;
  }

  .works-table-body article {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 12px;
    padding: 24px 0;
  }

  .works-cell-title {
    font-size: 18px;
    text-align: left;
  }

  .works-cell-desc {
    text-align: left;
    font-size: 14px;
  }

  .works-cell.highlight p {
    text-align: left;
    font-size: 14px;
  }

  .works-tags {
    font-size: 14px;
  }

  .works-title {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  .works-title article:first-child,
  .works-title article:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }

  .works-title article:last-child {
    margin-top: 44px;
  }

  .works-tab a {
    font-size: 14px;
  }

  .works-title-main {
    font-size: 48px;
  }

  .works-tab-menu {
    display: none;
  }

  .payment-method-grid {
    grid-template-columns: 1fr;
  }
}

/* Works Index Page Styles */
.works-hero {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 120px 20px 80px;
  text-align: center;
}

.works-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.works-hero-subtitle {
  margin: 0 0 40px;
  font-size: 116px;
  font-weight: 700;
  font-family: var(--font-family-Font-2, Anton);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.works-hero-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Noto Sans KR', sans-serif;
}

.works-tabs-section {
  background-color: var(--color-dark);
}

.works-tabs-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
}

.works-tab-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Noto Sans KR', sans-serif;
}

.works-tab-item:hover,
.works-tab-item.active {
  background-color: rgba(2, 217, 215, 0.2);
  color: var(--color-teal);
}

.works-tab-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-key);
  position: absolute;
  left: 40px;
}

.works-tab-label {
  font-size: 18px;
}

.works-intro {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 60px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.works-intro-image {
  text-align: center;
  display: flex;
  justify-content: center;
}

.works-intro-image img {
  max-width: 100%;
  height: auto;
}

.works-intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  padding-left: 30px;
}

.works-intro-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--color-white);
}

.works-intro-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Noto Sans KR', sans-serif;
}

.works-intro-text strong {
  color: var(--color-teal);
  font-weight: 600;
}

.works-donation {
  background-color: var(--color-teal);
  color: var(--color-white);
  padding: 166px 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.works-detail-description {
  text-align: center;
}

.works-donation-image img {
  max-width: 100%;
  height: auto;
  width: 437px;
  margin: 0 auto;
}

.works-donation-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 38px;
  padding-bottom:86px;
  text-align: center;
  color: var(--color-dark);
}

.works-donation-title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  font-family: 'Anton', 'Noto Sans KR', sans-serif;
  line-height: 1.2;
}

.works-donation-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Noto Sans KR', sans-serif;
}

.works-donation-button {
  width: 100%;
  padding: 0 20px 100px;
  text-align: center;
}

.works-donation-button .btn {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
  border-radius: 9999px;
}

.works-donation-button .btn:hover {
  background-color: rgba(5, 5, 5, 0.9);
}

.works-detail {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 140px 20px;
  text-align: center;
}

.works-detail-title {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 350;
  font-family: 'Noto Sans KR', sans-serif;
}

.works-detail-description {
  margin: 80px 0 30px;
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
}

.works-detail-description2 {
  margin: 40px 0 60px;
  font-size: 20px;
  font-family: 'Noto Sans KR', sans-serif;
  display:none;
}

.works-detail-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.works-detail-tabs a {
  display: inline-block;
  padding: 16px 32px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Noto Sans KR', sans-serif;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: 33%;
}

.works-detail-tabs a:hover {
  background-color: rgba(2, 217, 215, 0.2);
  border-color: var(--color-teal);
  color: var(--color-teal);
}

@media (max-width: 770px) {
  .works-hero {
    padding: 80px 20px 60px;
  }

  .works-hero-subtitle {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .works-hero-description {
    font-size: 16px;
  }

  .works-tabs-section {
    padding: 0 20px 40px;
  }

  .works-tabs-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .works-tab-item {
    padding: 14px 20px;
    font-size: 16px;
  }

  .works-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .works-intro-content {
    display: none;
  }

  .works-tabs-section,
  .works-donation-content,
  .works-donation-button,
  .works-detail-description,
  .works-detail-title {
    display: none;
    margin: 0;
    padding:0;
  }

  .works-detail {
    background-color: var(--color-teal);
  }
 
  .works-intro-title {
    font-size: 28px;
  }

  .works-intro-text {
    font-size: 16px;
  }

  .works-donation {
    grid-template-columns: 1fr;
    padding: 60px 20px 0;
  }

  .works-donation-title {
    font-size: 36px;
  }

  .works-donation-text {
    font-size: 18px;
  }

  .works-detail {
    padding: 60px 20px;
  }

  .works-detail-title {
    font-size: 24px;
  }

  .works-detail-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .works-detail-tabs {
    flex-wrap: nowrap;
    background-color: var(--color-white);
    border: 1px solid var(--color-dark);
  }

  .works-detail-tabs a {
    width: 33%;
    padding: 14px 24px;
    color: var(--color-dark);
    white-space: nowrap;
    border-right: 1px solid var(--color-dark);
  }

  .works-detail-tabs a:last-child {
    border-right: none;
  }

  .works-detail-description2 {
    display: block;
    color: var(--color-dark);
  }
  
}

/* Tooltip Styles */
.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.tooltip-trigger:hover {
  color: var(--color-teal);
}

.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 12px 16px;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.5;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: normal;
  min-width: 300px;
  text-align: center;
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-dark);
}

.tooltip-trigger:hover + .tooltip-content,
.tooltip-trigger:focus + .tooltip-content,
.tooltip-content:hover {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 770px) {
  .tooltip-content {
    min-width: 180px;
    font-size: 12px;
    padding: 10px 14px;
  }
}