/* ESG 경영 페이지 - Figma 1:634 */
:root {
  --color-primary: #1e4a6b;
  --color-emerald: #10b981;
  --color-emerald-dark: #059669;
  --color-text: #111827;
  --color-text-muted: #4b5563;
  --color-text-body: #6b7280;
  --color-border: #c5cdd8;
  --color-border-light: #f3f4f6;
  --color-header-bg: #eef1f4;
  --font-sans: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: "Inter", sans-serif;
  --page-max: 1920px;
  --content-max: 1280px;
  --inner-max: 1184px;
  --page-padding: clamp(24px, 6.25vw, 120px);
  --bg1: #f1f3f7;
  --bg2: #e3ebf3;
  --bg3: #f1f2f3;
  --bg4: #c6dfdf;
  --bcolor: #e0e0e0;
  --color1: #0e2243;
  --color2: #243147;
  --color3: #132f95;
  --color4: #255bab;
  --color5: #e2e4ea;
  --color6: #6d717f;
  --color7: #a1a2a7;
  --color8: #dfe0e6;
  --color9: #d6502a;
  --color10: rgba(240, 243, 245, .6);
  --color11: #9599a7;
  --color12: #4d5767;
  --color13: #238989;
  --radius1: 5px;
  --radius2: 10px;
  --radius3: 15px;
  --radius4: 25px;
  --fsize1: 18px;
  --fsize2: 24px;
  --fsize3: 64px;
  --fsize4: 27px;
  --fsize5: 20px;
  --fsize6: 35px;
  --fsize7: 42px;
  --fsize8: 48px;
  --fsize9: 32px;
  --fsize10: 16px;
  --fsize11: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

.esg-page {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  overflow-x: hidden;
}

/* ========== HEADER (Figma 1:713) ========== */
.esg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 12px var(--page-padding) 13px;
}

.esg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 34px;
}

.esg-header__brand {
  flex-shrink: 0;
  width: 170px;
  height: 34px;
}

.esg-header__logo {
  width: 170px;
  height: 34px;
  object-fit: cover;
  object-position: left center;
}

.esg-header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-header-bg);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.esg-header__menu-icon,
.esg-header__menu-icon::before,
.esg-header__menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #3d4754;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.esg-header__menu-icon {
  position: relative;
}

.esg-header__menu-icon::before,
.esg-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.esg-header__menu-icon::before {
  top: -6px;
}

.esg-header__menu-icon::after {
  top: 6px;
}

.esg-header__menu-btn[aria-expanded="true"] .esg-header__menu-icon {
  background: transparent;
}

.esg-header__menu-btn[aria-expanded="true"] .esg-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.esg-header__menu-btn[aria-expanded="true"] .esg-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.esg-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.esg-header__nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  color: #3d4754;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  line-height: normal;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.esg-header__nav a:hover {
  opacity: 0.75;
}

.esg-header__nav a.is-active {
  color: #3d4754;
  position: relative;
}

.esg-header__nav a.is-active::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #3d4754;
}

/* ========== HERO (Figma 1:704) ========== */
.esg-hero {
  width: 100%;
  background: #fff;
}

.esg-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  max-width: 1310px;
  margin: 0 auto;
  padding: 64px 24px 46px;
}

.esg-hero__title {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 800;
  color: #000;
  line-height: normal;
  letter-spacing: -2.24px;
}

.esg-hero__desc {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: rgba(12, 12, 12, 0.72);
  line-height: 30.6px;
  letter-spacing: 0.16px;
  max-width: 521px;
}

.esg-hero__banner {
  position: relative;
  width: 100%;
  height: 360px;
  background: #f4f4f4;
  overflow: hidden;
}

.esg-hero__img {
  position: absolute;
  left: 50%;
  top: -265.5px;
  width: 1962px;
  max-width: none;
  height: 981px;
  transform: translateX(calc(-50% - 10.5px));
  object-fit: cover;
  pointer-events: none;
}

/* ========== ESG OVERVIEW (Figma 1:639) ========== */
.esg-main {
  width: 100%;
}

.esg-overview {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 96px 48px;
}

.esg-overview__glow {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.esg-overview__glow--green {
  top: -192px;
  right: -192px;
  width: 600px;
  height: 600px;
  background: #ecfdf5;
  filter: blur(60px);
  opacity: 0.6;
}

.esg-overview__glow--blue {
  bottom: -128px;
  left: -128px;
  width: 500px;
  height: 500px;
  background: #eff6ff;
  filter: blur(50px);
  opacity: 0.4;
}

.esg-overview__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* ---------- Intro ---------- */
.esg-intro__badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.esg-intro__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.esg-intro__badge-icon {
  width: 24px;
  height: 21px;
}

.esg-intro__divider {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, #10b981 0%, rgba(16, 185, 129, 0) 100%);
  opacity: 0.3;
}

.esg-intro__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 896px;
  width: 100%;
  text-align: center;
}

.esg-intro__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-en), var(--font-sans);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -1.2px;
  line-height: 57.6px;
  word-break: keep-all;
}

.esg-intro__title-line {
  display: block;
}

.esg-intro__title-gradient {
  background: linear-gradient(to right, #10b981 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.esg-intro__desc {
  max-width: 672px;
}

.esg-intro__desc p {
  font-family: var(--font-en), var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 32.5px;
}

/* ---------- Pillars ---------- */
.esg-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  padding-top: 32px;
  align-items: start;
}

.esg-pillar {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.esg-pillar--environment {
  margin-top: 48px;
}

.esg-pillar--governance {
  margin-top: 96px;
}

.esg-pillar--social {
  box-shadow:
    0 0 0 4px #ecfdf5,
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.esg-pillar__media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.esg-pillar__media--standard {
  height: 280px;
}

.esg-pillar__media--social {
  height: 340px;
  margin-bottom: -24px;
}

.esg-pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esg-pillar__media--standard img {
  height: 134.52%;
  margin-top: -17.26%;
}

.esg-pillar__media--social img {
  height: 110.79%;
  margin-top: -5.39%;
}

.esg-pillar__media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.esg-pillar__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}

.esg-pillar__body--social {
  position: relative;
  z-index: 1;
  padding: 0 40px 40px;
}

.esg-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 9999px;
}

.esg-pillar__icon--environment {
  width: 40px;
  height: 40px;
  background: #eff6ff;
}

.esg-pillar__icon--governance {
  width: 40px;
  height: 40px;
  background: #faf5ff;
}

.esg-pillar__icon--social {
  position: relative;
  width: 48px;
  height: 48px;
  background: #fff7ed;
  border: 4px solid #fff;
  margin-top: -24px;
}

.esg-pillar__icon-shadow {
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.esg-pillar__icon img {
  position: relative;
  z-index: 1;
}

.esg-pillar__title {
  padding-top: 8px;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 32px;
}

.esg-pillar__title--social {
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
}

.esg-pillar__desc {
  font-family: var(--font-en), var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-body);
  line-height: 26px;
}

.esg-pillar__desc--social {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 29.25px;
  padding-bottom: 16px;
}

.esg-pillar__tag {
  padding-top: 32px;
  border-top: 1px solid var(--color-border-light);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-emerald-dark);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .esg-overview {
    padding: 80px 32px;
  }

  .esg-pillars {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .esg-pillar--environment,
  .esg-pillar--governance {
    margin-top: 0;
  }

  .esg-pillar--social {
    order: -1;
  }
}

@media (max-width: 768px) {
  .esg-header__menu-btn {
    display: flex;
  }

  .esg-header__nav {
    position: fixed;
    top: 59px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: var(--color-header-bg);
    border-top: 1px solid var(--color-border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .esg-header__nav.is-open {
    transform: translateX(0);
  }

  .esg-header__nav a {
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
  }

  .esg-hero__intro {
    padding: 40px 24px 32px;
  }

  .esg-hero__title {
    font-size: clamp(36px, 8vw, 56px);
    letter-spacing: -1.5px;
  }

  .esg-hero__desc {
    font-size: 16px;
    line-height: 1.7;
  }

  .esg-hero__banner {
    height: 240px;
  }

  .esg-hero__img {
    top: 0;
    width: 140%;
    min-width: 800px;
    height: 240px;
    transform: translateX(-50%);
  }

  .esg-overview {
    padding: 64px 24px;
  }

  .esg-intro__title {
    font-size: clamp(22px, 6vw, 48px);
    line-height: 1.5em;
  }

  .esg-intro__desc p {
    font-size: 13px;
    line-height: 1.625;
  }
}

@media (max-width: 480px) {
  .esg-pillar__body,
  .esg-pillar__body--social {
    padding: 24px;
  }

  .esg-pillar__body--social {
    padding-top: 0;
  }
}


/* ESG 경영 (고충처리) 페이지 - Figma 1:2 */
:root {
  --color-emerald: #059669;
  --color-emerald-light: #10b981;
  --color-blue: #3b82f6;
  --color-orange: #f97316;
  --color-purple: #a855f7;
  --color-text: #111827;
  --color-text-muted: #4b5563;
  --color-text-body: #6b7280;
  --color-text-step: #64748b;
  --color-border: #c5cdd8;
  --color-border-light: #f3f4f6;
  --color-header-bg: #eef1f4;
  --font-sans: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --page-max: 1920px;
  --content-max: 1440px;
  --page-padding: clamp(24px, 12.5vw, 240px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

.esg-new-page {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  overflow-x: hidden;
}

/* ========== HEADER ========== */
.esg-new-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 12px var(--page-padding) 13px;
}

.esg-new-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 34px;
}

.esg-new-header__brand {
  flex-shrink: 0;
  width: 170px;
  height: 34px;
}

.esg-new-header__logo {
  width: 170px;
  height: 34px;
  object-fit: cover;
  object-position: left center;
}

.esg-new-header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-header-bg);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.esg-new-header__menu-icon,
.esg-new-header__menu-icon::before,
.esg-new-header__menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #3d4754;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.esg-new-header__menu-icon {
  position: relative;
}

.esg-new-header__menu-icon::before,
.esg-new-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.esg-new-header__menu-icon::before {
  top: -6px;
}

.esg-new-header__menu-icon::after {
  top: 6px;
}

.esg-new-header__menu-btn[aria-expanded="true"] .esg-new-header__menu-icon {
  background: transparent;
}

.esg-new-header__menu-btn[aria-expanded="true"] .esg-new-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.esg-new-header__menu-btn[aria-expanded="true"] .esg-new-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.esg-new-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.esg-new-header__nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  color: #3d4754;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  line-height: normal;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.esg-new-header__nav a:hover {
  opacity: 0.75;
}

/* ========== HERO ========== */
.esg-new-hero {
  width: 100%;
  background: #fff;
}

.esg-new-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 46px;
}

.esg-new-hero__title {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 800;
  color: #000;
  letter-spacing: -2.24px;
  line-height: normal;
}

.esg-new-hero__desc {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: rgba(12, 12, 12, 0.72);
  line-height: 30.6px;
  letter-spacing: 0.16px;
  max-width: 521px;
}

.esg-new-hero__banner {
  position: relative;
  width: 100%;
  height: 360px;
  background: #f4f4f4;
  overflow: hidden;
}

.esg-new-hero__img {
  position: absolute;
  left: 50%;
  top: -265.5px;
  width: 1962px;
  max-width: none;
  height: 981px;
  transform: translateX(calc(-50% - 10.5px));
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
}

/* ========== GRIEVANCE SECTION ========== */
.esg-new-main {
  width: 100%;
}

.esg-new-grievance {
  position: relative;
  overflow: hidden;
  padding: 120px var(--page-padding) 96px;
}

.esg-new-grievance__glow {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(32px);
}

.esg-new-grievance__glow--green {
  top: 0;
  left: calc(var(--page-padding) - 160px);
  width: 600px;
  height: 600px;
  background: #ecfdf5;
  opacity: 0.5;
}

.esg-new-grievance__glow--blue {
  top: 120px;
  right: calc(var(--page-padding) - 160px);
  width: 500px;
  height: 500px;
  background: #eff6ff;
  opacity: 0.4;
}

/* ---------- Intro ---------- */
.esg-new-intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
}

.esg-new-intro__badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.esg-new-intro__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.esg-new-intro__badge-icon {
  width: 24px;
  height: 21px;
}

.esg-new-intro__divider {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to top, #10b981 0%, rgba(16, 185, 129, 0) 100%);
  opacity: 0.3;
}

.esg-new-intro__title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -1.2px;
  line-height: 57.6px;
  margin-bottom: 24px;
  word-break: keep-all;
}

.esg-new-intro__title-accent {
  color: var(--color-emerald);
}

.esg-new-intro__desc {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 32px;
}

/* ---------- Section Head ---------- */
.esg-new-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.esg-new-section-head__bar {
  flex-shrink: 0;
  width: 4px;
  height: 24px;
  border-radius: 9999px;
}

.esg-new-section-head--green .esg-new-section-head__bar {
  background: var(--color-emerald);
}

.esg-new-section-head--blue .esg-new-section-head__bar {
  background: var(--color-blue);
}

.esg-new-section-head__title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05px;
  line-height: 42px;
}

/* ---------- Regulations ---------- */
.esg-new-regulations {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto 100px;
}

.esg-new-articles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 48px;
}

.esg-new-article {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 24px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.esg-new-article--highlight {
  background: #f0fdf4;
  border-color: #d1fae5;
  box-shadow: none;
  padding-bottom: 33px;
}

.esg-new-article__label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-emerald-light);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 20px;
}

.esg-new-article--highlight .esg-new-article__label {
  color: var(--color-emerald);
}

.esg-new-article__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 27px;
}

.esg-new-article__body {
  padding-top: 3px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 350;
  color: var(--color-text-body);
  line-height: 25.6px;
}

.esg-new-article__body--accent {
  padding-top: 4px;
  font-weight: 700;
  color: var(--color-emerald);
  line-height: 24px;
}

/* ---------- Process ---------- */
.esg-new-process {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto 100px;
  padding: 80px;
  background: #f8fafc;
  border-radius: 48px;
}

.esg-new-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.esg-new-process__line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed #94a3b8;
  pointer-events: none;
}
.esg-new-process__line + p{
  display: none;
}

.esg-new-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.esg-new-step__icon-wrap {
  padding-bottom: 24px;
}

.esg-new-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 24px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.esg-new-step__icon--final {
  background: var(--color-emerald);
  border-color: var(--color-emerald);
}

.esg-new-step__icon img {
  width: auto;
  height: auto;
  max-width: 36px;
  max-height: 32px;
}

.esg-new-step__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18px;
  line-height: 18px;
  border-radius: 9999px;
}

.esg-new-step__badge--blue {
  background: #eff6ff;
  color: var(--color-blue);
}

.esg-new-step__badge--orange {
  background: #fff7ed;
  color: var(--color-orange);
}

.esg-new-step__badge--purple {
  background: #faf5ff;
  color: var(--color-purple);
}

.esg-new-step__badge--green {
  background: #d1fae5;
  color: var(--color-emerald);
}

.esg-new-step__title {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.08px;
  line-height: 30px;
}

.esg-new-step__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 350;
  color: var(--color-text-step);
  letter-spacing: 0.06px;
  line-height: 24.38px;
}

/* ---------- CTA Banner ---------- */
.esg-new-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 400px;
  padding: 64px;
  border-radius: 40px;
  overflow: hidden;
}

.esg-new-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.esg-new-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.esg-new-cta__content {
  position: relative;
  z-index: 1;
  max-width: 559px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.esg-new-cta__title {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 54px;
}

.esg-new-cta__desc {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02px;
  line-height: 29.25px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .esg-new-process {
    padding: 64px 48px;
  }

  .esg-new-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 32px;
  }

  .esg-new-process__line {
    display: none;
  }
}

@media (max-width: 1024px) {
  .esg-new-articles {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .esg-new-grievance {
    padding-top: 80px;
    padding-bottom: 64px;
  }

  .esg-new-intro {
    margin-bottom: 64px;
  }

  .esg-new-regulations,
  .esg-new-process {
    margin-bottom: 64px;
  }
}

@media (max-width: 768px) {
  .esg-new-header__menu-btn {
    display: flex;
  }

  .esg-new-header__nav {
    position: fixed;
    top: 59px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: var(--color-header-bg);
    border-top: 1px solid var(--color-border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .esg-new-header__nav.is-open {
    transform: translateX(0);
  }

  .esg-new-header__nav a {
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
  }

  .esg-new-hero__intro {
    padding: 40px 24px 32px;
  }

  .esg-new-hero__title {
    font-size: clamp(36px, 8vw, 56px);
    letter-spacing: -1.5px;
  }

  .esg-new-hero__desc {
    font-size: 16px;
    line-height: 1.7;
  }

  .esg-new-hero__banner {
    height: 240px;
  }

  .esg-new-hero__img {
    top: -180px;
    width: 140%;
    min-width: 800px;
    height: auto;
    min-height: 600px;
    transform: translateX(-50%);
  }

  .esg-new-grievance {
    padding: 64px 24px;
  }

  .esg-new-intro__title {
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.2;
  }

  .esg-new-intro__desc {
    font-size: 16px;
    line-height: 1.7;
  }

  .esg-new-intro__desc br {
    display: none;
  }

  .esg-new-section-head__title {
    font-size: 24px;
    line-height: 1.4;
  }

  .esg-new-process {
    padding: 48px 24px;
    border-radius: 32px;
  }

  .esg-new-process__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .esg-new-cta {
    min-height: 320px;
    padding: 48px 32px;
    border-radius: 32px;
  }

  .esg-new-cta__title {
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1.4;
  }

  .esg-new-cta__desc {
    font-size: 16px;
    line-height: 1.6;
  }

  .esg-new-cta__desc br {
    display: none;
  }
}

@media (max-width: 480px) {
  .esg-new-article {
    padding: 24px;
  }
}

/* 제품 카테고리 탭 */
.product-categories {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-categories__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.product-categories__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 16px 28px;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #222;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

.product-categories__link:hover {
  color: var(--navy);
  background: rgba(0, 144, 249, 0.04);
}

.product-categories__link--active {
  color: var(--navy);
  font-weight: 700;
  border-bottom-color: var(--blue);
}

.sub-content{
  padding:90px 20px;
  width:100%; max-width:1280px; margin:0 auto;
}

/*4-ESG*/
.esg-top{
  display:flex; align-items: center;
}
.et-left{
  flex-shrink: 0; width:400px; letter-spacing: -0.08em;
}
.et-left span{
  font-weight:700; color:var(--color3); font-size:var(--fsize2);
}
.et-left p{
  font-weight:800; font-size:var(--fsize8);
}
.et-right{
  flex-grow: 1; word-break: keep-all; letter-spacing: -0.08em;
  font-size:var(--fsize5); line-height:1.8em;
}
.etr-ma{
  margin-top:35px;
}
.esg-middle{
  margin:60px 0;
  height: 200px;
  overflow: hidden;
  width: 100%;
}
.esg-middle img{
  width:100%;
  object-fit: cover;
  object-position: center;
  height: 200px;
}

.esg-bottom{
  display:flex; gap:0 4%; flex-wrap:wrap;
}
.esg-dl1{
  width:48%; box-sizing:border-box; padding:50px 0;
  letter-spacing: -0.05em; color:#555;
}
.esg-dl1.esdl1-w100{
  width:100%;
}
.esg-dl1 dt{
  font-weight:800; font-size:var(--fsize9);
}
.esg-dl1 dt:after{
  content:""; display:block; width:40px; height:5px; background:var(--color3);
  margin:20px 0 20px;
}
.esg-ul1{
  list-style: none;
}
.esg-ul1 li{
  border-top:1px var(--bcolor) dashed; padding-top:15px; margin-top:15px;
  font-size:1.025em; position:relative; padding-left:12px;
}
.esg-ul1 li strong{
  font-weight:700;
}
.esg-ul1 li:before{
  content:""; display:block; width:5px; height:5px; background:var(--color11);
  border-radius:999px; margin-top:10px; position:absolute; left:0; top:15px;
}
.esg-ul1 li:first-child{
  margin-top:0; border-top-width:0;
}
.esg-ul1 li p{
  margin:5px 0; opacity:0.8;
}

.esg-ul2{
  list-style: none;
  display:flex; text-align:center;
  justify-content: space-between; width:100%;  margin:0 auto;
}
.esg-ul2 li{
  border-left:1px var(--bcolor) dashed; width:20%; box-sizing:border-box;
}
.esg-ul2 li:first-child{
  border-left-width:0;
}
.esg-ul2 li div{
  width:120px; height:120px; border-radius:999px;
  margin:0 auto; display:flex; align-items: center; justify-content: center;
}
.esg-ul2 li div img{
  width:60%;
}
.esg-ul2 li p{
  margin-top: 10px;
}
.esg-ul2 li strong{
  color:var(--color3); font-weight:800; font-size:var(--fsize2);
  margin:0 0 10px; display:block;
}
.esul3-txt{
  padding-bottom:20px; margin-bottom:20px; border-bottom:var(--bcolor) 1px dashed;
  font-size:var(--fsize5); word-break: keep-all;
}
.esg-ul3{
  display:flex; gap:10px 2%; flex-wrap:wrap;
}
.esg-ul3 li{
  width:49%;
}
.e3il-img{
  width:100%; padding-top:72%; overflow:hidden; position:relative;
}
.e3il-img > div{
  position:absolute; width:100%; height:100%; left:0; top:0;
  display:flex; justify-content: center; align-items: center;
}
.e3il-img > div img{
  width:100%;
}

.esg-bottom-flex{
  width:100%; box-sizing:border-box; padding:0;
  letter-spacing: -0.05em; margin:25px 0;
}
.esg-gp {
  width:100%; display:flex; flex-direction: column; color:#555; gap:20px;
}
.esg-gp ul{
  display:flex; flex-grow: 1; gap:10px;
  flex-direction: column;
  list-style: none;
}
.esg-gp li{
  box-sizing:border-box; padding:15px 30px; box-sizing: border-box; text-align:center;
  border:1px var(--color3) solid; border-radius:15px;  width:100%; word-break: keep-all;
}
.esg-gp li strong{
  font-weight:600; color:var(--color3); font-size:1.25em;
}
.esg-gp li p{
  opacity:0.8;
}
.esg-arrow{
  text-align:center;
}
.esg-arrow img{
  width:150px;
}
.esg-result{
  background:var(--color3); color:#fff; border-radius:15px; padding:20px 0; text-align:center;
}
.esg-result.type01{
  background: #777;
}
.esg-result strong{font-size:var(--fsize11); font-weight:700;}
.esg-result p{opacity:0.8;}

.ebf-top{
  width:200px; height:200px; display:flex; justify-content: center; align-items: center;
  margin:0 auto; background:var(--color13); color:#fff; border-radius:999px; font-size:var(--fsize2);
  font-weight:700; line-height:1.3em; border:15px #deecec solid;
}
.ebf-list{
  display:flex; justify-content: space-between; gap:3%;
  margin-top:140px; position:relative;
}
.ebf-list:before{
  content:""; position:absolute; width:1px; height:70px; background:var(--bg4); left:50%; top:-140px;
}
.ebf-list:after{
  content:""; position:absolute; width:calc(100% - 31%); height:1px; background:var(--bg4); left:15.6%; top:-70px;
}
.ebf-list li{
  width:32%; text-align:center; position:relative;
}
.ebf-list li:after{
  content:""; position:absolute; width:1px; height:70px; background:var(--bg4); left:50%; top:-70px;
  z-index:22;
}
.ebf-list li:before{
  content:""; position:absolute; width:10px; height:10px; background:var(--color13); left:50%; top:-5px;
  border-radius:9999px; margin-left:-5px; z-index:55;
}
.ebf-list li strong{
  display:block; border:1px var(--color13) solid; border-radius:15px; text-align:center;
  color:var(--color13); font-weight:600; padding:15px 0;box-sizing: border-box; font-size:1.125em;
}
.ebf-list li p{
  font-weight:500; color:#555; margin-top:15px;
}
.tab-link.on{
  border: 2px solid #333;
  border-radius: 12px;
  display: block;
}
.tabarea{
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  display: none;
  max-width: 680px;
  margin: 40px auto 0 auto;
}
.tabarea.on{
  display: block;
}
.tabarea .tab-title{
  width: 100%;
  height: auto;
  overflow: hidden;
  font-size: 16px;
  font-weight: 800;
}
.tabarea .tab-image{
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 10px;
}
.tabarea .tab-image + .tab-title{
  margin-top: 30px;
}

@media (max-width: 768px) {
  .product-categories__link{
    min-width: 0;
    padding: 16px;
  }
  .esg-top{display:block;}
  .et-left p{font-size:32px;}
  .et-right{word-break: keep-all; margin-top:10px; line-height:1.4em;}
  .et-right br{display:none;}
  .esg-middle{margin:25px 0;}
  .esg-bottom{flex-direction: column; gap:5px;}
  .esg-dl1{width:100%; padding:25px 0;}
  .esg-dl1 dt{font-size:20px; word-break: keep-all;}
  .esg-ul2{flex-wrap: wrap; gap:20px;}
  .esg-ul2 li{width: calc( 50% - 10px );border-left: 0;}
  .esg-ul2 li:first-child{border-top-width:0; margin-top:0;}
  .esg-ul2 li div{width:80px; height:80px; }
  .esg-ul2 li strong{margin:0; margin-bottom:5px;}
  .esg-ul2 li p{word-break: keep-all;}
  .esg-ul2 li p br{display:none;}
  .esg-dl1 dt:after{height:3px; margin-bottom:20px;}
  .esg-bottom-flex{width:100%; padding:25px 0; margin:15px 0;}
  .ebf-list{flex-direction: column; margin-top:30px; gap:20px;}
  .ebf-list li{width:100%;}
  .ebf-list li:before{display:none;}
  .ebf-list:before, .ebf-list li:after, .ebf-list:after{display:none;}
  .esg-gp li{padding:20px;}
  .esg-result{padding:20px; word-break: keep-all;}
  .tabarea{
    padding: 0;
  }

  .gover-box dt{margin-bottom:15px;}
  .gover-ul1{gap:30px 2%;}
  .gover-ul1 > li{flex-direction: column; gap:15px;}
  .gov-img{width:100%; padding-top:90%;}
  .gover-tab li{font-size:12px; padding:5px 10px;}
  .gover-tab-mobile{width:100%; overflow-x:scroll;}
  .gover-tab{min-width:600px;}
  .wide{width:100%; overflow-x:scroll;}
  .wide .esgTable{min-width:600px;}
  .gb-area1{display:block; padding:15px; }
  .gover-title1{width:100%; margin-bottom:10px;}
  .gover-title1 span br{display:none;}
  .rankUl{flex-wrap:wrap; gap:10px 2%;}
  .rankUl li{width:49%; padding-top:49%;}
  .rankUl li span:after{display:none;}
  .gover-paper-top{padding:15px; display:block; text-align:center;}
  .gover-paper-top strong{display:block;}
  .gover-paper-link{display:block; box-sizing: border-box; width:100%; text-align:center; margin-top:10px;}
}

