@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@font-face {
  font-family: "KoreaInstituteOfMachineryAndMaterials";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2212@1.0/KIMM_Light.woff2")
    format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "KoreaInstituteOfMachineryAndMaterials";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2212@1.0/KIMM_Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Daeojamjil";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil2Light.woff2")
    format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Daeojamjil";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil4Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Daeojamjil";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil5Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #102b47;
  --green: #1d806c;
  --lime: #b9d841;
  --ink: #14202c;
  --muted: #697580;
  --line: #dfe5e8;
  --bg: #f4f6f5;
  --header: 88px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  word-break: keep-all;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  width: 100%;
}
.container {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
}
.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0px !important;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}
.section-title {
  margin: 0;
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-family: "Daeojamjil";
  font-weight: 500;
}
.reveal {
  opacity: 1;
}
html.gsap-pending
  :is(
    .sub-visual-inner > p,
    .sub-visual-inner > h1,
    .sub-visual-inner > .breadcrumb,
    .side-menu,
    .sub-title-area > *,
    .greeting-lead > *,
    .greeting-body > p,
    .greeting-sign,
    .overview-intro > *,
    .status-cards > div,
    .info-table > dl,
    .org-date,
    .org-chair,
    .org-chart article,
    .org-name-grid > strong,
    .org-group > h4,
    .ci-logo-panel,
    .ci-colors > div,
    .ci-notice,
    .location-map,
    .location-info > dl,
    .sub-business-list > article,
    .membership-section > header,
    .membership-block,
    .membership-contact
  ) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(44px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header);
  background: #fff;
  border-bottom: 1px solid rgba(16, 43, 71, 0.1);
}
.header-inner {
  width: min(1600px, calc(100% - 64px));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  width: max-content;
}
.logo img {
  width: auto;
  max-width: 220px;
  height: 65px;
  object-fit: contain;
  object-position: left center;
}
.gnb {
  height: 100%;
  display: flex;
  justify-content: center;
}
.gnb-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.gnb-link {
  padding: 32px 34px;
  font-size: 17px;
  font-weight: 600;
  transition: color 0.25s;
}
.gnb-item:hover .gnb-link,
.gnb-item:focus-within .gnb-link {
  color: var(--green);
}
.submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  min-width: 190px;
  padding: 14px 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 43, 71, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(19, 36, 52, 0.14);
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.gnb-item:hover .submenu,
.gnb-item:focus-within .submenu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.submenu a {
  display: block;
  padding: 10px 22px;
  color: #596570;
  font-size: 14px;
  letter-spacing: -1px;
  text-align: center;
  border-radius: 9px;
  transition: 0.2s;
}
.submenu a:hover,
.submenu a:focus {
  color: var(--green);
  background: #f5f8f7;
}
.header-admin {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.header-admin-welcome {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.header-admin form {
  margin: 0;
}
.header-admin-login,
.header-admin button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(16, 43, 71, 0.22);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.header-admin-login:hover,
.header-admin-login:focus,
.header-admin button:hover,
.header-admin button:focus {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle i,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: 0.25s;
}

.hero {
  position: relative;
  height: max(720px, 100svh);
  margin-top: var(--header);
  overflow: hidden;
  color: #fff;
  background: #17334d;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 24px 60px rgba(16, 43, 71, 0.12);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.2s ease,
    transform 7s linear;
  background-position: center;
  background-size: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 26, 43, 0.76) 0%,
    rgba(7, 26, 43, 0.3) 55%,
    rgba(7, 26, 43, 0.12)
  );
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}
.hero-copy {
  width: 60%;
  max-width: none;
  padding-bottom: 40px;
}
.hero-kicker {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  opacity: 0.8;
}
.hero h1 {
  margin: 0;
  font-size: clamp(35px, 6.3vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.055em;

  font-weight: 300;
}
.hero h1 span {
  font-size: 1.45em;
  font-weight: 700;
  font-family: "KoreaInstituteOfMachineryAndMaterials";
}
.hero p {
  max-width: 650px;
  margin: 32px 0 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.8;
  opacity: 0.86;
}
.hero-bottom {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-bottom .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-progress {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 34px 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
}
.progress-track {
  width: 150px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.progress-fill {
  width: 0;
  height: 100%;
  background: #fff;
}
.progress-fill.run {
  animation: progress 6s linear forwards;
}
@keyframes progress {
  to {
    width: 100%;
  }
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 34px 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
}
.scroll-cue::before {
  content: "";
  width: 48px;
  height: 1px;
  background: #fff;
}

.intro {
  padding: 170px 0;
  overflow: hidden;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 9vw;
}
.intro-parallax {
  will-change: transform;
}
.intro-visual {
  position: relative;
  filter: drop-shadow(0 24px 36px rgba(16, 43, 71, 0.16));
  transform-origin: center;
  will-change: transform;
}
.intro-visual img {
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
  transform-origin: center;
  will-change: transform;
}
.intro-badge {
  position: absolute;
  right: -50px;
  bottom: -55px;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(29, 128, 108, 0.25);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -1px;
  text-align: center;
  will-change: transform;
}
.intro-badge strong {
  display: block;
  font-size: 45px;
  font-family: "Daeojamjil";
}
.intro-copy .lead {
  margin: 38px 0 22px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.035em;
}
.intro-copy .body {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: -1px;
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: 44px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}
.more-link span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #bcc6ca;
  border-radius: 50%;
  transition: 0.3s;
}
.more-link:hover span {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: translateX(6px);
}

.business {
  position: relative;
  margin: 0 24px;
  padding: 150px 0 170px;
  overflow: hidden;
  color: #fff;
  background: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=88")
    center/cover no-repeat;
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(16, 43, 71, 0.18);
}
.business::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 36, 53, 0.82);
}
.business .container {
  position: relative;
}
.business-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 62px;
}
.business .eyebrow {
  color: #99d5c8;
}
.business .eyebrow::before {
  background: #99d5c8;
}
.business-head p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  letter-spacing: -1px;
}
.business-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.business-card {
  position: relative;
  height: 480px;
  padding: 54px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(2, 20, 31, 0.24);
  transition: box-shadow 0.35s ease;
  will-change: transform;
}
.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 25, 37, 0.82),
    rgba(7, 25, 37, 0.04) 70%
  );
  z-index: 1;
}
.business-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}
.business-card:hover {
  box-shadow: 0 28px 55px rgba(2, 20, 31, 0.3);
}
.card-copy {
  position: relative;
  z-index: 2;
}
.card-copy small {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  opacity: 0.7;
}
.card-copy h3 {
  margin: 13px 0 12px;
  font-size: 32px;
}
.card-copy p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  letter-spacing: -1px;
}
.card-arrow {
  position: absolute;
  z-index: 2;
  right: 46px;
  bottom: 48px;
  font-size: 28px;
}

.news {
  padding: 160px 0 180px;
}
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 58px;
}
.news-tabs {
  display: flex;
  gap: 10px;
}
.news-tab {
  padding: 12px 20px;
  color: #697580;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  cursor: pointer;
}
.news-tab.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.news-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.news-column {
  padding: 30px 34px 12px;
  background: #fff;
  border: 1px solid rgba(16, 43, 71, 0.07);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(16, 43, 71, 0.08);
}
.news-column[hidden] {
  display: none;
}
.news-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}
.news-column-head h3 {
  margin: 0;
  font-size: 24px;
}
.news-column-head a {
  font-size: 24px;
  font-weight: 300;
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list li:last-child a {
  border-bottom: 0;
}
.news-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 26px 2px;
  border-bottom: 1px solid var(--line);
  transition: 0.2s;
}
.news-list a:hover {
  color: var(--green);
  padding-left: 10px;
}
.news-list strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-list time {
  color: #8a949b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -1px;
}
.news-list .news-empty {
  padding: 42px 2px;
  color: #8a949b;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.site-footer {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background: #102334;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -18px 50px rgba(16, 43, 71, 0.1);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 13px;
  letter-spacing: -1px;
}
.footer-links a:first-child {
  color: #fff;
  font-weight: 600;
}
.family {
  min-width: 220px;
  padding: 13px 18px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-bottom {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 50px;
  padding: 50px 0 65px;
}
.footer-logo {
  display: flex;
  align-items: flex-start;
}
.footer-logo img {
  width: 92.5px;
  height: auto;
  filter: brightness(0) invert(1);
}
address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: -1px;
}
.copyright {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1px;
}

@media (max-width: 1100px) {
  :root {
    --header: 65px;
  }
  .container {
    width: min(100% - 48px, 900px);
  }
  .header-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }
  .gnb {
    position: fixed;
    inset: var(--header) 0 0;
    display: block;
    padding: 35px 24px 80px;
    overflow-y: auto;
    background: #fff;
    transform: translateX(100%);
    transition: 0.35s;
  }
  .gnb.open {
    transform: none;
  }
  .gnb-item {
    display: block;
    height: auto;
    border-bottom: 1px solid var(--line);
  }
  .gnb-link {
    display: block;
    padding: 16px 4px;
    font-size: 20px;
  }
  .submenu {
    position: static;
    min-width: 0;
    padding: 0 0 16px 12px;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .gnb-item:hover .submenu,
  .gnb-item:focus-within .submenu {
    transform: none;
  }
  .submenu a {
    padding: 8px 0;
    text-align: left;
  }
  .menu-toggle {
    display: block;
  }
  .header-admin-welcome {
    display: none;
  }
  .menu-toggle.active i {
    opacity: 0;
  }
  .menu-toggle.active::before {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active::after {
    transform: translateY(-7px) rotate(-45deg);
  }
  .intro-grid {
    gap: 70px;
  }
  .intro-visual img {
    height: 520px;
  }
  .intro-badge {
    right: -25px;
    width: 150px;
    height: 150px;
  }
  .business {
    background-attachment: scroll;
  }
  .business-head {
    display: block;
  }
  .business-head p {
    margin-top: 24px;
  }
  .business-card {
    height: 420px;
    padding: 38px;
  }
  .news-columns {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 65px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    width: calc(100% - 32px);
    gap: 7px;
  }
  .logo img {
    max-width: 150px;
    height: 42px;
  }
  .header-admin-login,
  .header-admin button {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
  }
  .hero {
    min-height: 650px;
    height: calc(100svh - var(--header));
  }
  .hero-copy {
    width: 100%;
    padding-bottom: 10px;
  }
  .hero-kicker {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(22px, 8.5vw, 22px);
    line-height: 1.38;
    letter-spacing: -0.045em;
  }
  .hero h1 span {
    font-size: 1.18em;
  }
  .hero p {
    margin-top: 24px;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.7;
  }
  .hero p br {
    display: none;
  }
  .scroll-cue {
    display: none;
  }
  .progress-track {
    width: 100px;
  }
  .intro,
  .news {
    padding: 100px 0;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }
  .intro-visual img {
    height: 440px;
  }
  .intro-badge {
    right: -10px;
    bottom: -45px;
    width: 130px;
    height: 130px;
    font-size: 12px;
  }
  .intro-badge strong {
    font-size: 32px;
  }
  .business {
    margin: 0 12px;
    padding: 100px 0;
    border-radius: 24px;
  }
  .business-cards {
    grid-template-columns: 1fr;
  }
  .business-card {
    height: 390px;
    padding: 30px;
  }
  .card-copy h3 {
    font-size: 27px;
  }
  .card-arrow {
    right: 28px;
    bottom: 30px;
  }
  .news-head {
    display: block;
  }
  .news-tabs {
    margin-top: 28px;
  }
  .news-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news-column {
    padding: 24px 22px 8px;
    border-radius: 18px;
  }
  .footer-top {
    display: block;
  }
  .footer-links {
    gap: 15px 22px;
  }
  .family {
    width: 100%;
    margin-top: 28px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .section-title {
    font-size: 1.7em;
  }
}

/* Administrator */
.admin-main {
  min-height: calc(100vh - 80px);
  padding: 130px 20px 90px;
  background: linear-gradient(145deg, #eff6f4 0%, #f8faf9 48%, #e8f1f4 100%);
}
.admin-panel {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 54px;
  background: #fff;
  border: 1px solid #dfe9e7;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(19, 52, 66, 0.1);
}
.admin-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.admin-logo img {
  width: 105px;
  height: auto;
}
.admin-heading {
  margin: 40px 0 34px;
}
.admin-heading p {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.admin-heading h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 34px;
}
.admin-heading span {
  color: #65747d;
  font-size: 14px;
}
.admin-login-form {
  max-width: 440px;
}
.admin-login-form label {
  display: block;
  margin-top: 18px;
}
.admin-login-form label span {
  display: block;
  margin-bottom: 8px;
  color: #334955;
  font-size: 13px;
  font-weight: 700;
}
.admin-login-form input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #cfdcda;
  border-radius: 7px;
  font: inherit;
}
.admin-login-form input:focus {
  outline: 2px solid rgba(20, 139, 112, 0.2);
  border-color: var(--green);
}
.admin-login-form button {
  width: 100%;
  height: 52px;
  margin-top: 25px;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}
.admin-home-link {
  display: inline-block;
  margin-top: 25px;
  color: #708089;
  font-size: 13px;
}
.admin-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.admin-board-grid section {
  padding: 25px;
  border: 1px solid #e0e9e7;
  border-radius: 10px;
}
.admin-board-grid small {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.admin-board-grid h2 {
  margin: 7px 0 25px;
  color: var(--navy);
  font-size: 21px;
}
.admin-board-grid div {
  display: flex;
  gap: 7px;
}
.admin-board-grid a,
.admin-logout a,
.admin-logout button {
  padding: 10px 13px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #ccd9d7;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.admin-board-grid a.primary {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.admin-logout {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #e6eceb;
}
.admin-logout button {
  color: #a23c3c;
}
@media (max-width: 760px) {
  .admin-main {
    padding: 95px 14px 50px;
  }
  .admin-panel {
    padding: 32px 22px;
  }
  .admin-heading {
    margin: 30px 0 26px;
  }
  .admin-heading h1 {
    font-size: 28px;
  }
  .admin-board-grid {
    grid-template-columns: 1fr;
  }
}

/* News boards */
.board-visual {
  background-image:
    linear-gradient(90deg, rgba(8, 31, 54, 0.88), rgba(8, 31, 54, 0.42)),
    url("/assets/images/hero03.jpg");
  background-position: center 45%;
}
.board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 20px 0 20px;
}
.board-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.board-toolbar p strong {
  color: var(--green);
}
.board-toolbar form {
  display: flex;
  width: min(100%, 450px);
}
.board-toolbar select {
  width: 88px;
  height: 48px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-right: 0;
  color: #44535e;
  background: #fff;
  border-radius: 4px 0 0 4px;
  font: inherit;
}
.board-toolbar label {
  flex: 1;
}
.board-toolbar input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
  font: inherit;
  outline: none;
}
.board-toolbar input:focus {
  border-color: var(--navy);
}
.board-toolbar button {
  width: 72px;
  border: 0;
  color: #fff;
  background: var(--navy);
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  cursor: pointer;
}
.board-list {
  border-top: 2px solid var(--navy);
}
.board-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px 115px 70px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  transition: background 0.2s;
}
a.board-row:hover {
  background: #f7faf9;
}
.board-row strong {
  overflow: hidden;
  padding: 0 20px;
  color: #263847;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-head {
  min-height: 56px;
  color: var(--navy);
  background: #f5f8f8;
  font-weight: 700;
}
.board-number em,
.board-view header > em {
  display: inline-block;
  padding: 5px 9px;
  color: #fff;
  background: var(--green);
  border-radius: 3px;
  font-size: 11px;
  font-style: normal;
}
.board-empty {
  margin: 0;
  padding: 90px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}
.board-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 28px;
}
.board-actions form {
  margin: 0;
}
.board-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #ccd5d9;
  color: var(--navy);
  background: #fff;
  border-radius: 4px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.board-button.primary {
  border-color: var(--navy);
  color: #fff;
  background: var(--navy);
}
.board-button.danger {
  border-color: #c94c4c;
  color: #c23a3a;
}
.board-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.board-pagination a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 13px;
}
.board-pagination a.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}
.board-view {
  border-top: 2px solid var(--navy);
}
.board-view header {
  padding: 32px 30px 26px;
  border-bottom: 1px solid var(--line);
}
.board-view h3 {
  margin: 13px 0 18px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.45;
}
.board-view header div {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.board-view-body {
  min-height: 330px;
  padding: 50px 30px;
  border-bottom: 1px solid var(--line);
  color: #43525d;
  font-size: 15px;
  line-height: 2;
}
.board-attachment-images {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}
.board-attachment-images figure {
  margin: 0;
}
.board-attachment-images img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.board-attachment-list {
  margin-top: 35px;
  border-top: 1px solid var(--line);
}
.board-attachment-list > strong {
  display: block;
  padding: 13px 15px;
  color: var(--navy);
  background: #f5f8f7;
  font-size: 13px;
}
.board-attachment-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 15px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.board-attachment-list a span {
  overflow-wrap: anywhere;
}
.board-attachment-list a small {
  flex: none;
  color: var(--muted);
}
.board-form {
  border-top: 2px solid var(--navy);
}
.board-form > label:not(.check-field) {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.board-form > label > span {
  padding: 21px 22px;
  color: var(--navy);
  font-weight: 700;
}
.board-form b {
  color: var(--green);
}
.board-form input[type="text"],
.board-form textarea {
  margin: 10px 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
  outline: none;
  resize: vertical;
}
.board-form input[type="text"]:focus,
.board-form textarea:focus {
  border-color: var(--green);
}
.check-field {
  display: flex;
  align-items: center;
  padding: 13px 0 13px 120px;
  border-bottom: 1px solid var(--line);
}
.check-field span {
  padding: 8px 12px !important;
  font-size: 13px;
}
.board-file-field {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--line);
}
.board-file-field > span {
  padding: 21px 22px;
  color: var(--navy);
  font-weight: 700;
}
.board-file-field > div {
  padding: 12px 0;
}
.board-file-field input[type="file"] {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-sizing: border-box;
}
.board-file-field > div > small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}
.board-file-field ul {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.board-file-field li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 9px 11px;
  background: #f5f8f7;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.board-file-field li > span {
  overflow-wrap: anywhere;
}
.board-file-field li label {
  flex: none;
  color: #a12c2c;
  cursor: pointer;
}
.form-error {
  padding: 14px 18px;
  color: #a12c2c;
  background: #fff1f1;
}
.board-db-notice {
  margin-bottom: 20px;
  padding: 14px 18px;
  color: #77540b;
  background: #fff8df;
  border: 1px solid #eddda8;
  font-size: 13px;
  line-height: 1.6;
}
.consult-form {
  border-top: 2px solid var(--navy);
}
.consult-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
}
.consult-form-head strong {
  color: var(--navy);
  font-size: 20px;
}
.consult-form-head span {
  color: var(--muted);
  font-size: 12px;
}
.consult-form b {
  color: #d24949;
}
.consult-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.consult-fields label {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}
.consult-fields label:nth-child(odd):not(.wide) {
  border-right: 1px solid var(--line);
}
.consult-fields label.wide {
  grid-column: 1 / -1;
  align-items: start;
  padding: 12px 0;
}
.consult-fields label > span {
  padding: 0 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.consult-fields input,
.consult-fields textarea {
  width: calc(100% - 24px);
  box-sizing: border-box;
  margin: 10px 12px 10px 0;
  padding: 13px 14px;
  border: 1px solid #d8e0e1;
  border-radius: 5px;
  font: inherit;
  outline: none;
}
.consult-fields input:focus,
.consult-fields textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 128, 108, 0.08);
}
.consult-fields textarea {
  resize: vertical;
  line-height: 1.7;
}
.privacy-agreement {
  margin-top: 45px;
}
.privacy-agreement h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 20px;
}
.privacy-content {
  max-height: 245px;
  overflow-y: auto;
  padding: 25px 28px;
  border: 1px solid #dfe6e7;
  border-radius: 8px;
  color: #56656e;
  background: #f7f9f9;
  font-size: 13px;
  line-height: 1.75;
}
.privacy-content h4 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 15px;
}
.privacy-content dl {
  display: grid;
  grid-template-columns: 135px 1fr;
  margin: 0;
  border-top: 1px solid #dfe6e7;
}
.privacy-content dt,
.privacy-content dd {
  margin: 0;
  padding: 12px 14px;
  border-bottom: 1px solid #dfe6e7;
}
.privacy-content dt {
  color: var(--navy);
  font-weight: 700;
}
.privacy-content p {
  margin: 18px 0 0;
}
.privacy-check {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  padding: 17px 3px;
  color: #40515c;
  font-size: 13px;
  cursor: pointer;
}
.privacy-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}
.consult-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.consult-actions button {
  min-width: 115px;
  min-height: 48px;
  border: 1px solid #cbd4d7;
  color: var(--navy);
  background: #fff;
  border-radius: 5px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.consult-actions button.primary {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}
.consult-success {
  margin-bottom: 25px;
  padding: 22px 25px;
  border: 1px solid #b8ded5;
  border-radius: 8px;
  color: #185e50;
  background: #effaf7;
}
.consult-success strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}
.consult-success p {
  margin: 0;
  font-size: 13px;
}
.board-message {
  padding: 100px 20px;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.board-message strong {
  color: var(--navy);
  font-size: 24px;
}
.board-message p {
  margin: 12px 0 25px;
  color: var(--muted);
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .board-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .board-toolbar form {
    width: 100%;
  }
  .board-row {
    grid-template-columns: 55px minmax(0, 1fr) 90px;
    min-height: 66px;
  }
  .board-row > :nth-child(3),
  .board-row > :nth-child(5) {
    display: none;
  }
  .board-row strong {
    padding: 0 10px;
    font-size: 14px;
  }
  .board-view header,
  .board-view-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .board-view header div {
    flex-wrap: wrap;
    gap: 7px 16px;
  }
  .board-form > label:not(.check-field) {
    display: block;
    padding: 15px 0;
  }
  .board-form > label > span {
    display: block;
    padding: 0 0 10px;
  }
  .board-form input[type="text"],
  .board-form textarea {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  .check-field {
    padding-left: 0;
  }
  .board-file-field {
    display: block;
    padding: 15px 0;
  }
  .board-file-field > span {
    display: block;
    padding: 0 0 10px;
  }
  .board-file-field > div {
    padding: 0;
  }
  .consult-form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 20px 10px;
  }
  .consult-fields {
    grid-template-columns: 1fr;
  }
  .consult-fields label,
  .consult-fields label.wide {
    grid-column: auto;
    grid-template-columns: 85px minmax(0, 1fr);
    border-right: 0 !important;
  }
  .consult-fields label > span {
    padding: 0 10px;
  }
  .privacy-content {
    padding: 20px 16px;
  }
  .privacy-content dl {
    grid-template-columns: 1fr;
  }
  .privacy-content dt {
    padding-bottom: 2px;
    border-bottom: 0;
  }
  .privacy-content dd {
    padding-top: 4px;
  }
  .privacy-check {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Sub page */
.gnb-item.current > .gnb-link,
.submenu a.active {
  color: var(--green);
}
.sub-main {
  padding-top: var(--header);
}
.sub-visual {
  position: relative;
  height: 330px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 33, 51, 0.88), rgba(9, 33, 51, 0.38)),
    var(--sub-bg, url("/assets/images/hero03.jpg")) center 56% / cover no-repeat;
}
.sub-visual-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.sub-visual p,
.sub-title-area p {
  margin: 0 0 16px;
  color: #8ed0c2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.sub-visual h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.055em;
}
.breadcrumb {
  position: absolute;
  right: max(48px, calc((100% - 1440px) / 2));
  bottom: 34px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
.breadcrumb strong {
  color: #fff;
}
.sub-content {
  padding: 110px 0 150px;
}
.sub-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}
.side-menu {
  position: sticky;
  top: calc(var(--header) + 20px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(16, 43, 71, 0.08);
}
.side-menu-title {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 145px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      ellipse at 15% 118%,
      transparent 0 52%,
      rgba(255, 255, 255, 0.14) 53% 54%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 95% 112%,
      transparent 0 46%,
      rgba(255, 255, 255, 0.1) 47% 48.5%,
      transparent 49.5%
    ),
    linear-gradient(135deg, #0877c9 0%, #1263ad 52%, #164f91 100%);
}
.side-menu-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.28;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.8) 0.8px,
    transparent 0.8px
  );
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(115deg, transparent 12%, #000 100%);
  mask-image: linear-gradient(115deg, transparent 12%, #000 100%);
}
.side-menu-title::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -55px;
  right: -48px;
  width: 145px;
  height: 145px;
  border: 28px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.side-menu-title small {
  margin-bottom: 8px;
  color: #bfe9ff;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.side-menu-title strong {
  font-size: 24px;
}
.side-menu nav {
  padding: 10px 18px 18px;
  background: #fff;
}
.side-menu nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 10px;
  color: #66717a;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  transition: 0.2s;
}
.side-menu nav a:last-child {
  border-bottom: 0;
}
.side-menu nav a span {
  opacity: 0;
  transform: translateX(-5px);
  transition: 0.2s;
}
.side-menu nav a:hover,
.side-menu nav a.active {
  color: var(--green);
  font-weight: 700;
}
.side-menu nav a:hover span,
.side-menu nav a.active span {
  opacity: 1;
  transform: none;
}
.sub-title-area {
  position: relative;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.sub-title-area h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 34px);
  letter-spacing: -0.055em;
}
.sub-title-area > span {
  position: absolute;
  right: 0;
  bottom: 38px;
  color: var(--muted);
  font-size: 14px;
}
.greeting-lead {
  position: relative;
  padding: 75px 0 48px;
}
.quote-mark {
  position: absolute;
  top: 47px;
  left: -8px;
  color: rgba(29, 128, 108, 0.1);
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 1;
}
.greeting-lead h3 {
  position: relative;
  margin: 0 0 26px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.045em;
}
.greeting-lead h3 em {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}
.greeting-lead p {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}
.greeting-body {
  max-width: 850px;
  color: #596570;
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.02em;
}
.greeting-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 46px;
}
.greeting-profile .greeting-body {
  max-width: none;
}
.greeting-portrait {
  position: sticky;
  top: calc(var(--header) + 28px);
  margin: 0;
  overflow: hidden;
  background: #eef1f1;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(16, 43, 71, 0.12);
}
.greeting-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.greeting-body p {
  margin: 0 0 22px;
}
.greeting-sign {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 18px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.greeting-sign span {
  color: var(--muted);
  font-size: 14px;
}
.greeting-sign strong {
  color: var(--navy);
  font-size: 24px;
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  .sub-visual {
    height: 270px;
  }
  .breadcrumb {
    right: 24px;
  }
  .sub-content {
    padding: 0 0 100px;
  }
  .sub-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .side-menu {
    position: static;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .side-menu-title {
    display: none;
  }
  .side-menu nav {
    display: flex;
    padding: 0;
    overflow-x: auto;
    border-top: 0;
    background: #fff;
  }
  .side-menu nav a {
    flex: 0 0 auto;
    padding: 16px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .side-menu nav a span {
    display: none;
  }
}
@media (max-width: 600px) {
  .sub-visual {
    height: 230px;
  }
  .breadcrumb {
    display: none;
  }
  .sub-content {
    padding: 0 0 80px;
  }
  .sub-layout {
    gap: 42px;
  }
  .sub-title-area > span {
    position: static;
    display: block;
    margin-top: 14px;
    line-height: 1.6;
  }
  .greeting-lead {
    padding: 58px 0 36px;
  }
  .greeting-lead p {
    font-size: 16px;
  }
  .greeting-body {
    font-size: 15px;
    line-height: 1.9;
  }
  .greeting-profile {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .greeting-portrait {
    grid-row: 1;
    position: static;
    width: min(320px, 100%);
  }
  .greeting-sign {
    display: block;
    text-align: right;
  }
  .greeting-sign strong {
    display: block;
    margin-top: 8px;
  }
}

/* Introduce contents */
.overview-intro {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  padding: 65px 0 50px;
}
.overview-intro h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.045em;
}
.overview-intro h3 em {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}
.overview-intro > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.status-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 55px;
}
.status-cards div {
  padding: 35px 30px;
  background: #f4f8f7;
  border-radius: 18px;
  text-align: center;
}
.status-cards strong {
  display: block;
  color: var(--green);
  font-size: clamp(30px, 3vw, 44px);
}
.status-cards span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.info-table {
  border-top: 2px solid var(--navy);
}
.info-table dl {
  display: grid;
  grid-template-columns: 170px 1fr;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.info-table dt,
.info-table dd {
  margin: 0;
  padding: 22px 25px;
  line-height: 1.7;
}
.info-table dt {
  color: var(--navy);
  background: #f7f8f9;
  font-weight: 700;
}
.info-table dd {
  color: #596570;
}
.org-chart {
  max-width: 1100px;
  margin: 10px auto 0;
  text-align: center;
}
.org-date {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.org-chart article,
.org-name-grid strong {
  box-sizing: border-box;
  min-width: 0;
}
.org-chart article {
  display: flex;
  min-height: 86px;
  padding: 15px 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d5dfe2;
  border-radius: 12px;
}
.org-chair {
  position: relative;
  width: min(340px, 100%);
  margin: 0 auto 36px;
  padding: 17px 24px;
  color: #fff;
  background: var(--navy);
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(22, 53, 65, 0.18);
}
.org-chair::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 36px;
  background: #c3ced1;
  content: "";
}
.org-chair span,
.org-chart article span {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.org-chair strong {
  display: block;
  margin-top: 3px;
  font-size: 23px;
}
.org-chart article span {
  color: var(--muted);
}
.org-chart article strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.org-chart article small {
  font-size: 12px;
  font-weight: 600;
}
.org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.org-executives article {
  border-top: 3px solid var(--green);
}
.org-group {
  margin-top: 34px;
}
.org-group h4 {
  margin: 0 0 14px;
  padding: 10px 15px;
  color: var(--navy);
  background: #edf4f2;
  border: 1px solid #cfe0dc;
  border-radius: 9px;
  font-size: 18px;
}
.org-vice {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
}
.org-vice .org-vice-lead {
  min-height: 142px;
  border-color: #b7d2cb;
}
.org-name-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 12px;
}
.org-name-grid strong {
  display: grid;
  min-height: 66px;
  padding: 12px 8px;
  place-items: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid #d5dfe2;
  border-radius: 9px;
}
.org-office {
  width: auto;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}
.org-office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 240px));
  gap: 12px;
  justify-content: center;
}
.org-office-grid article {
  min-height: 78px;
}
.org-regions {
  grid-template-columns: repeat(5, 1fr);
}
.org-regions .is-vacant {
  background: #f8faf9;
  border-style: dashed;
}
.org-regions .is-vacant strong {
  color: #9aa6aa;
  font-size: 13px;
}
.ci-logo-panel {
  display: grid;
  place-items: center;
  min-height: 290px;
  margin-top: 10px;
  padding: 45px;
  background-color: #f7f8f9;
  background-image:
    linear-gradient(#e9edef 1px, transparent 1px),
    linear-gradient(90deg, #e9edef 1px, transparent 1px);
  background-size: 25px 25px;
  border-radius: 20px;
}
.ci-logo-panel img {
  width: min(390px, 78%);
  height: auto;
}
.ci-logo-panel p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.ci-colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.ci-colors > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.ci-colors span {
  width: 58px;
  height: 58px;
  background: var(--ci-color);
  border-radius: 50%;
}
.ci-colors p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.ci-colors strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}
.ci-notice {
  margin: 28px 0 0;
  padding: 20px 24px;
  color: var(--muted);
  background: #f7f8f9;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.7;
}
.location-map {
  display: grid;
  place-items: center;
  min-height: 390px;
  margin: 60px 0 40px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(9, 33, 51, 0.74), rgba(9, 33, 51, 0.74)),
    url("/assets/images/hero02.jpg") center/cover;
  border-radius: 22px;
  text-align: center;
}
.location-map span {
  display: block;
  margin-bottom: 10px;
  color: #9bd5ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.location-map strong {
  display: block;
  font-size: clamp(25px, 3vw, 38px);
}
.location-map p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.location-map.has-map {
  display: block;
  background: #e8eceb;
  text-align: left;
}
.location-map-fallback {
  position: relative;
  z-index: 1;
  padding: 35px 20px;
}
.location-map-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding: 12px 18px;
  color: var(--navy);
  background: #fff;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
}
.location-map-actions {
  display: flex;
  justify-content: flex-end;
  margin: -22px 0 22px;
}
.location-map-actions a {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.location-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--navy);
}
.location-info dl {
  display: grid;
  grid-template-columns: 105px 1fr;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.location-info dl:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.location-info dt,
.location-info dd {
  margin: 0;
  padding: 21px 18px;
  line-height: 1.7;
}
.location-info dt {
  color: var(--navy);
  font-weight: 700;
}
.location-info dd {
  color: var(--muted);
}
.location-info dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .overview-intro {
    display: block;
    padding: 48px 0 35px;
  }
  .overview-intro > p {
    margin-top: 20px;
  }
  .status-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .status-cards div {
    padding: 25px;
  }
  .info-table dl {
    grid-template-columns: 105px 1fr;
  }
  .info-table dt,
  .info-table dd {
    padding: 18px 14px;
  }
  .org-chart {
    margin-top: 0;
  }
  .org-grid,
  .org-regions {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .org-chart article {
    min-height: 62px;
    padding: 7px 4px;
  }
  .org-chart article span {
    font-size: 11px;
    line-height: 1.35;
  }
  .org-chart article strong {
    margin-top: 3px;
    font-size: 13px;
  }
  .org-chair {
    margin-bottom: 22px;
    padding: 12px 18px;
  }
  .org-chair::after {
    height: 22px;
  }
  .org-vice {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .org-vice .org-vice-lead {
    min-height: 62px;
  }
  .org-name-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .org-name-grid strong {
    min-height: 48px;
    padding: 7px 4px;
  }
  .org-office-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .org-group {
    margin-top: 18px;
  }
  .org-group h4 {
    margin-bottom: 8px;
    padding: 7px 10px;
    font-size: 14px;
  }
  .ci-logo-panel {
    min-height: 230px;
    padding: 30px 20px;
  }
  .ci-colors {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 300px;
    margin-top: 45px;
  }
  .location-info {
    grid-template-columns: 1fr;
  }
  .location-info dl:nth-child(odd) {
    border-right: 0;
  }
}

.sub-business-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.sub-business-list article {
  position: relative;
  min-height: 235px;
  padding: 38px;
  overflow: hidden;
  background: #f5f8f8;
  border: 1px solid #e5ecea;
  border-radius: 20px;
  transition: 0.3s;
}
.sub-business-list article:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(16, 43, 71, 0.1);
}
.sub-business-list article > span {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(29, 128, 108, 0.12);
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
}
.sub-business-list small {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.sub-business-list h3 {
  margin: 42px 0 15px;
  color: var(--navy);
  font-size: 25px;
}
.sub-business-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.member-benefits,
.member-steps {
  padding-top: 20px;
}
.member-benefits > h3,
.member-steps > h3 {
  margin: 0 0 25px;
  color: var(--navy);
  font-size: 24px;
}
.member-benefits > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.member-benefits article {
  padding: 28px 18px;
  background: #f4f8f7;
  border-radius: 16px;
  text-align: center;
}
.member-benefits article strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
}
.member-benefits article span {
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}
.member-steps {
  margin-top: 55px;
}
.member-steps ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.member-steps li {
  position: relative;
  padding: 30px 22px;
  border-top: 2px solid var(--green);
  background: #fff;
}
.member-steps li::after {
  content: "→";
  position: absolute;
  top: 29px;
  right: -8px;
  z-index: 1;
  color: #aab7ba;
}
.member-steps li:last-child::after {
  display: none;
}
.member-steps li span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.member-steps li strong {
  color: var(--navy);
  font-size: 18px;
}
.member-steps li p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.member-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 55px;
  padding: 38px 42px;
  color: #fff;
  background: linear-gradient(135deg, #0877c9, #164f91);
  border-radius: 20px;
}
.member-cta small {
  display: block;
  margin-bottom: 8px;
  color: #bfe9ff;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.member-cta strong {
  display: block;
  font-size: 23px;
}
.member-cta p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.member-cta a {
  flex: 0 0 auto;
  padding: 15px 20px;
  color: var(--navy);
  background: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}
.member-cta a span {
  margin-left: 12px;
}

@media (max-width: 760px) {
  .sub-business-list {
    grid-template-columns: 1fr;
  }
  .sub-business-list article {
    min-height: 210px;
    padding: 30px;
  }
  .member-benefits > div,
  .member-steps ol {
    grid-template-columns: repeat(2, 1fr);
  }
  .member-steps li::after {
    display: none;
  }
  .member-cta {
    display: block;
    padding: 30px 25px;
  }
  .member-cta a {
    display: inline-block;
    margin-top: 22px;
  }
}

.membership-guide {
  padding-top: 5px;
}
.membership-section {
  padding: 68px 0 0;
}
.membership-section + .membership-section {
  margin-top: 25px;
}
.membership-section > header {
  margin-bottom: 27px;
  padding-bottom: 21px;
  border-bottom: 2px solid var(--navy);
}
.membership-section > header small {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.membership-section > header h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 32px);
}
.membership-block {
  margin-top: 18px;
  padding: 32px 34px;
  border: 1px solid #e1e9e8;
  border-radius: 10px;
  background: #fff;
}
.membership-block h4 {
  display: inline-block;
  margin: 0 0 17px;
  padding: 7px 15px;
  color: #fff;
  background: var(--navy);
  border-radius: 20px;
  font-size: 14px;
}
.membership-lead {
  margin: 0 0 23px;
  color: #44545f;
  font-size: 15px;
  line-height: 1.85;
}
.member-rule-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: member-rule;
}
.member-rule-list > li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid #edf1f1;
  counter-increment: member-rule;
}
.member-rule-list > li::before {
  content: counter(member-rule, decimal-leading-zero) ".";
  padding-top: 1px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}
.member-rule-list strong {
  color: #273b4a;
  font-size: 15px;
  line-height: 1.75;
}
.member-sub-list {
  margin: 15px 0 0;
  padding: 16px 20px;
  color: var(--muted);
  background: #f6f9f8;
  border-radius: 8px;
  list-style: none;
}
.member-sub-list li {
  display: flex;
  gap: 8px;
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.75;
}
.member-sub-list b {
  flex: 0 0 auto;
  color: var(--navy);
}
.rule-note {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
.rule-note::before {
  content: "(";
}
.rule-note::after {
  content: ")";
}
.member-notice {
  position: relative;
  margin: 20px 0 0;
  padding: 17px 20px 17px 41px;
  color: #53636d;
  background: #f3f7f6;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.75;
}
.member-notice::before {
  content: "-";
  position: absolute;
  left: 22px;
  color: var(--green);
  font-weight: 800;
}
.membership-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.membership-rights-grid .membership-block {
  margin-top: 0;
}
.member-rule-list.compact > li {
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px;
  padding: 14px 0;
}
.member-rule-list.compact strong {
  font-size: 14px;
}
.membership-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 25px;
  margin-top: 25px;
  padding: 30px 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #164f6b);
  border-radius: 10px;
}
.membership-contact span {
  grid-column: 1;
  color: #8ed7c8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.membership-contact strong {
  grid-column: 1;
  font-size: 17px;
  line-height: 1.6;
}
.membership-contact a {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 13px 18px;
  color: var(--navy);
  background: #fff;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
}
.membership-contact a b {
  margin-left: 12px;
}

@media (max-width: 760px) {
  .membership-section {
    padding-top: 48px;
  }
  .membership-block {
    padding: 25px 20px;
  }
  .member-rule-list > li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 6px;
  }
  .member-sub-list {
    padding: 13px 14px;
  }
  .membership-rights-grid {
    grid-template-columns: 1fr;
  }
  .membership-contact {
    display: block;
    padding: 25px 22px;
  }
  .membership-contact span,
  .membership-contact strong {
    display: block;
  }
  .membership-contact strong {
    margin-top: 8px;
  }
  .membership-contact a {
    display: inline-block;
    margin-top: 20px;
  }
}

/* Membership recruitment */
.member-recruit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 55px;
  margin-top: 52px;
  padding: 52px 55px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #173d5a, #236f78);
  border-radius: 22px;
}
.member-recruit-hero small,
.member-program-section header small,
.member-join-section header small,
.member-contact-heading small {
  display: block;
  margin-bottom: 12px;
  color: #8de0d0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.member-recruit-hero h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 43px);
  font-weight: 500;
  line-height: 1.35;
}
.member-recruit-hero h3 em {
  color: #a7e5da;
  font-style: normal;
}
.member-recruit-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.9;
}
.member-recruit-hero img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.member-program-section,
.member-join-section {
  padding-top: 75px;
}
.member-program-section > header,
.member-join-section > header {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--navy);
}
.member-program-section header small,
.member-join-section header small {
  color: var(--green);
}
.member-program-section header h3,
.member-join-section header h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 32px);
}
.member-program-section header > p {
  position: absolute;
  right: 0;
  bottom: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.member-program-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.member-program-grid article {
  min-height: 225px;
  padding: 27px 22px;
  background: #f4f8f7;
  border: 1px solid #e2ebe9;
  border-radius: 16px;
}
.member-program-grid article.featured {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(16, 43, 71, 0.16);
}
.member-program-grid span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}
.member-program-grid .featured span {
  color: #8de0d0;
}
.member-program-grid h4 {
  margin: 50px 0 13px;
  color: var(--navy);
  font-size: 20px;
}
.member-program-grid .featured h4 {
  color: #fff;
}
.member-program-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.member-program-grid .featured p {
  color: rgba(255, 255, 255, 0.7);
}
.member-join-table {
  border-top: 1px solid var(--line);
}
.member-join-table dl {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.member-join-table dt,
.member-join-table dd {
  margin: 0;
  padding: 23px 25px;
}
.member-join-table dt {
  color: var(--navy);
  background: #f6f9f8;
  font-weight: 800;
}
.member-join-table dd {
  color: #4e5f69;
  line-height: 1.75;
}
.member-join-table dd span {
  display: inline-block;
  margin: 2px 5px 2px 0;
  padding: 5px 11px;
  color: var(--green);
  background: #edf6f3;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
}
.member-contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  margin-top: 68px;
  padding: 42px 45px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #164f6b);
  border-radius: 20px;
}
.member-contact-heading h3 {
  margin: 0;
  font-size: 28px;
}
.member-contact-heading p {
  margin: 13px 0 23px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}
.member-contact-heading a {
  display: inline-block;
  padding: 12px 17px;
  color: var(--navy);
  background: #fff;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 800;
}
.member-contact-heading a b {
  margin-left: 9px;
}
.member-apply-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  margin-top: 34px;
  padding: 32px 36px;
  color: #fff;
  background: linear-gradient(120deg, #1d806c, #2aa78e);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(29, 128, 108, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.member-apply-cta:hover,
.member-apply-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(29, 128, 108, 0.28);
}
.member-apply-cta span small {
  display: block;
  margin-bottom: 7px;
  color: #bceee4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.member-apply-cta span strong {
  display: block;
  font-size: 23px;
}
.member-apply-cta span em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-style: normal;
}
.member-apply-cta > b {
  flex: 0 0 auto;
  padding: 14px 20px;
  color: var(--navy);
  background: #fff;
  border-radius: 25px;
  font-size: 14px;
}
.member-apply-cta > b i {
  margin-left: 12px;
  font-style: normal;
}
.member-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.member-contact-actions a.apply {
  color: #fff;
  background: var(--green);
}
.member-contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 25px;
}
.member-contact-list dl {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.member-contact-list dt {
  margin-bottom: 7px;
  color: #8ed7c8;
  font-size: 11px;
  font-weight: 800;
}
.member-contact-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1050px) {
  .member-program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .member-program-grid article.featured {
    transform: none;
  }
}
@media (max-width: 760px) {
  .member-recruit-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    padding: 36px 25px;
  }
  .member-recruit-hero img {
    width: 135px;
  }
  .member-program-section,
  .member-join-section {
    padding-top: 55px;
  }
  .member-program-section header > p {
    position: static;
    margin-top: 10px;
    line-height: 1.6;
  }
  .member-program-grid {
    grid-template-columns: 1fr;
  }
  .member-program-grid article {
    min-height: 180px;
  }
  .member-program-grid h4 {
    margin-top: 32px;
  }
  .member-join-table dl {
    grid-template-columns: 105px minmax(0, 1fr);
  }
  .member-join-table dt,
  .member-join-table dd {
    padding: 18px 14px;
  }
  .member-contact-card {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 50px;
    padding: 32px 24px;
  }
  .member-apply-cta {
    display: block;
    padding: 27px 23px;
  }
  .member-apply-cta > b {
    display: inline-block;
    margin-top: 20px;
  }
  .member-contact-list {
    grid-template-columns: 1fr;
  }
}

/* Membership application */
.membership-application-main {
  min-height: 100vh;
  padding: calc(var(--header) + 65px) 20px 90px;
  background: #f1f5f4;
}
.application-shell,
.application-admin-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 52px;
  background: #fff;
  border: 1px solid #dfe8e6;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(16, 43, 71, 0.08);
}
.application-title {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 35px;
  border-bottom: 3px solid var(--navy);
}
.application-title img {
  width: 135px;
}
.application-title small,
.application-admin-head small {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.application-title h1 {
  margin: 6px 0 5px;
  color: var(--navy);
  font-size: 36px;
}
.application-title p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.membership-application-form > section {
  padding-top: 50px;
}
.membership-application-form > section > header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.membership-application-form > section > header b {
  color: var(--green);
  font-size: 12px;
}
.membership-application-form > section > header h2 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
}
.membership-application-form > section > header span {
  padding: 4px 9px;
  color: #b54141;
  background: #fff1f1;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
}
.application-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: #dfe7e5;
  border: 1px solid #dfe7e5;
  border-radius: 10px;
}
.application-fields label,
.member-type-field {
  position: relative;
  display: block;
  margin: 0;
  padding: 18px 20px;
  background: #fff;
  border: 0;
}
.application-fields .wide {
  grid-column: 1 / -1;
}
.application-fields label > span,
.member-type-field legend {
  display: block;
  margin-bottom: 8px;
  color: #324854;
  font-size: 12px;
  font-weight: 800;
}
.application-fields input:not([type="radio"]) {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #cedbd8;
  border-radius: 6px;
  font: inherit;
}
.application-fields input:focus {
  outline: 2px solid rgba(29, 128, 108, 0.18);
  border-color: var(--green);
}
.application-fields input:disabled {
  color: #64727a;
  background: #f4f6f6;
}
.application-fields label > i {
  position: absolute;
  right: 34px;
  bottom: 31px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}
.member-type-field {
  display: flex;
  gap: 25px;
  align-items: center;
}
.member-type-field legend {
  float: left;
  margin: 0 18px 0 0;
}
.member-type-field label {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 0;
}
.cms-notice {
  margin-bottom: 15px;
  padding: 20px;
  color: #4a5d67;
  background: #f2f7f5;
  border-radius: 9px;
  text-align: center;
}
.cms-notice strong {
  color: var(--navy);
}
.cms-notice span::before {
  content: " | ";
  margin: 0 8px;
  color: #adb9b6;
}
.cms-notice p {
  margin: 8px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.application-consent {
  margin-top: 50px;
  padding: 28px !important;
  background: #f6f8f8;
  border-radius: 10px;
}
.application-consent h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
}
.application-consent p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.application-consent > label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 17px;
  color: #334955;
  font-size: 13px;
  font-weight: 700;
}
.application-consent .signature {
  justify-content: flex-end;
}
.application-consent .signature input {
  width: 230px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #cbd7d5;
  border-radius: 5px;
}
.application-submit {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}
.application-submit a,
.application-submit button,
.application-document-actions a,
.application-document-actions button,
.application-status-form button {
  padding: 13px 22px;
  border: 1px solid #cbd7d5;
  border-radius: 6px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.application-submit button {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.application-success {
  padding: 90px 25px;
  text-align: center;
}
.application-success strong {
  color: var(--navy);
  font-size: 25px;
}
.application-success p {
  color: var(--muted);
}
.application-success a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
}
.application-admin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}
.application-admin-head h1 {
  margin: 7px 0;
  color: var(--navy);
}
.application-admin-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.application-admin-head > a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}
.application-admin-list {
  border-top: 2px solid var(--navy);
}
.application-admin-row {
  display: grid;
  grid-template-columns: 55px 1.3fr 0.6fr 0.9fr 0.7fr 0.6fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.application-admin-row.head {
  min-height: 48px;
  color: var(--navy);
  background: #f5f8f7;
  font-weight: 800;
}
.application-admin-row strong small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
}
.application-admin-row .member-grade {
  color: var(--navy);
  font-weight: 700;
}
.application-admin-row .member-grade.unassigned {
  color: var(--muted);
  font-weight: 400;
}
.application-admin-row em {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 12px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}
.application-admin-row em.received {
  color: #9b611f;
  background: #fff4dd;
}
.application-admin-row em.processed {
  color: var(--green);
  background: #e8f6f1;
}
.application-empty {
  padding: 60px 20px;
  color: var(--muted);
  text-align: center;
}
.application-document-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-bottom: 20px;
}
.application-document-actions a,
.application-document-actions button {
  padding: 9px 13px;
  font-size: 12px;
}
.application-document > header,
.application-edit-form > header {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 25px;
  border: 2px solid #aebbb8;
}
.application-document > header img,
.application-edit-form > header img {
  width: 100px;
}
.application-document > header p,
.application-edit-form > header p {
  margin: 0;
  font-weight: 700;
}
.application-document > header h1,
.application-edit-form > header h1 {
  margin: 5px 0 0;
  font-size: 34px;
}
.application-document > header dl,
.application-edit-form > header dl {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px 12px;
  margin: 0;
  font-size: 12px;
}
.application-document > header dt,
.application-edit-form > header dt {
  font-weight: 800;
}
.application-document > header dd,
.application-edit-form > header dd {
  margin: 0;
}
.application-document > section,
.application-edit-form > section {
  margin-top: 28px;
}
.application-document > section h2,
.application-edit-form > section h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #bcc7c5;
}
.document-grid dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  margin: 0;
  border-right: 1px solid #bcc7c5;
  border-bottom: 1px solid #bcc7c5;
}
.document-grid dl:nth-child(even) {
  border-right: 0;
}
.document-grid dl.wide {
  grid-column: 1 / -1;
  border-right: 0;
}
.document-grid dt,
.document-grid dd {
  padding: 13px;
}
.document-grid dt {
  background: #f3f5f4;
  font-weight: 800;
}
.document-grid dd {
  margin: 0;
}
.application-edit-form .document-grid dd {
  display: flex;
  align-items: center;
  padding: 7px 10px;
}
.application-edit-form .document-grid input,
.application-edit-form .document-grid select,
.application-edit-form .document-consent input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #cbd7d5;
  border-radius: 5px;
  background: #fff;
  font: inherit;
}
.application-edit-form .document-grid input:focus,
.application-edit-form .document-grid select:focus,
.application-edit-form .document-consent input:focus {
  outline: 2px solid rgba(29, 128, 108, 0.18);
  border-color: var(--green);
}
.document-consent {
  padding: 25px;
  border: 1px solid #bcc7c5;
  text-align: center;
}
.document-consent p {
  line-height: 1.8;
}
.document-consent strong,
.document-consent time {
  display: block;
  margin-top: 14px;
}
.application-edit-form .document-consent strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.application-edit-form .document-consent strong input {
  max-width: 260px;
}
.form-success {
  margin: 0 0 18px;
  padding: 12px 14px;
  color: var(--green);
  background: #e8f6f1;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}
.application-status-form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.application-status-form label {
  font-size: 13px;
  font-weight: 700;
}
.application-status-form select {
  margin-left: 8px;
  padding: 9px;
  border: 1px solid #cbd7d5;
  border-radius: 5px;
  background: #fff;
}
.application-status-form button {
  padding: 9px 14px;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

@media (max-width: 760px) {
  .membership-application-main {
    padding: calc(var(--header) + 30px) 12px 50px;
  }
  .application-shell,
  .application-admin-shell {
    padding: 26px 18px;
  }
  .application-title {
    display: block;
  }
  .application-title img {
    width: 105px;
    margin-bottom: 22px;
  }
  .application-title h1 {
    font-size: 29px;
  }
  .application-fields {
    grid-template-columns: 1fr;
  }
  .application-fields .wide {
    grid-column: auto;
  }
  .member-type-field {
    display: flex;
  }
  .application-consent .signature {
    display: block;
  }
  .application-consent .signature input {
    width: 100%;
    margin-top: 8px;
  }
  .application-admin-row {
    grid-template-columns: 40px 1fr auto;
  }
  .application-admin-row > :nth-child(3),
  .application-admin-row > :nth-child(5) {
    display: none;
  }
  .application-status-form {
    flex-wrap: wrap;
  }
  .application-document > header,
  .application-edit-form > header {
    grid-template-columns: 1fr;
  }
  .application-document > header img,
  .application-edit-form > header img {
    width: 90px;
  }
  .document-grid {
    grid-template-columns: 1fr;
  }
  .document-grid dl,
  .document-grid dl:nth-child(even) {
    border-right: 0;
  }
  .document-grid dl.wide {
    grid-column: auto;
  }
}

@media print {
  html,
  body {
    width: 100%;
    margin: 0;
    background: #fff !important;
    font-size: 13px;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .site-header,
  .site-footer,
  .application-document-actions,
  .application-status-form {
    display: none !important;
  }
  .membership-application-main.print-mode {
    min-height: 0;
    padding: 0;
    background: #fff;
  }
  .application-document {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .application-document > header {
    grid-template-columns: 105px 1fr auto;
    gap: 24px;
    min-height: 118px;
    padding: 20px 24px;
    border-width: 2px;
  }
  .application-document > header img {
    width: 100px;
  }
  .application-document > header p {
    font-size: 13px;
  }
  .application-document > header h1 {
    margin-top: 5px;
    font-size: 32px;
  }
  .application-document > header dl {
    gap: 5px 12px;
    font-size: 11px;
  }
  .application-document > section {
    margin-top: 20px;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .application-document > section h2 {
    margin-bottom: 9px;
    font-size: 18px;
  }
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .document-grid dl {
    grid-template-columns: 120px 1fr;
    min-height: 60px;
    border-right: 1px solid #bcc7c5;
  }
  .document-grid dl:nth-child(even) {
    border-right: 0;
  }
  .document-grid dl.wide {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .document-grid dt,
  .document-grid dd {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    line-height: 1.45;
  }
  .document-consent {
    min-height: 110px;
    padding: 19px 24px;
  }
  .document-consent p {
    margin: 0;
    line-height: 1.65;
  }
  .document-consent strong,
  .document-consent time {
    display: inline-block;
    margin: 12px 14px 0;
  }
  @page {
    size: A4;
    margin: 9mm 10mm;
  }
}

/* Notice SMS preview */
.board-button.sms {
  color: #fff;
  background: #1d806c;
  border-color: #1d806c;
}
.sms-preview-main {
  min-height: 100vh;
  padding: calc(var(--header) + 65px) 20px 90px;
  background: #f1f5f4;
}
.sms-preview-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  border: 1px solid #dfe8e6;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(16, 43, 71, 0.08);
}
.sms-preview-head {
  margin-bottom: 35px;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--navy);
}
.sms-preview-head small {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.sms-preview-head h1 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 34px;
}
.sms-preview-head p {
  margin: 0;
  color: var(--muted);
}
.sms-api-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 12px;
}
.sms-api-status.ready {
  color: #176a59;
  background: #e9f7f2;
}
.sms-api-status.pending {
  color: #8b5b1e;
  background: #fff5df;
}
.sms-api-status span {
  font-weight: 800;
}
.sms-api-status small {
  margin-left: auto;
  color: inherit;
}
.sms-send-success {
  padding: 15px 18px;
  color: #176a59;
  background: #e9f7f2;
  border: 1px solid #cbe9df;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}
.sms-message-preview {
  overflow: hidden;
  border: 1px solid #dce6e3;
  border-radius: 12px;
}
.sms-message-preview > header {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  color: var(--navy);
  background: #f4f8f7;
  font-size: 12px;
  font-weight: 800;
}
.sms-message-preview > header em {
  color: var(--green);
  font-style: normal;
}
.sms-message-preview > div {
  padding: 25px;
}
.sms-message-preview > div strong {
  display: block;
  padding-bottom: 15px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}
.sms-message-preview > div p {
  margin: 18px 0 0;
  color: #53636d;
  font-size: 14px;
  line-height: 1.8;
}
.sms-recipient-section {
  margin-top: 45px;
}
.sms-recipient-section > header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 18px;
}
.sms-recipient-section > header span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.sms-recipient-section > header h2 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 20px;
}
.sms-recipient-section > header h2 b {
  color: var(--green);
}
.sms-recipient-section > header h2 i {
  margin: 0 7px;
  color: #b5bfbd;
  font-style: normal;
  font-weight: 400;
}
.sms-recipient-section > header p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.sms-recipient-section > header p strong {
  color: var(--green);
}
.sms-grade-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  background: #f5f8f7;
  border-radius: 8px;
}
.sms-grade-filters button {
  padding: 9px 13px;
  color: #4c5d66;
  background: #fff;
  border: 1px solid #d5dfdd;
  border-radius: 20px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.sms-grade-filters button b {
  margin-left: 3px;
  color: var(--green);
}
.sms-grade-filters button:hover,
.sms-grade-filters button.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.sms-grade-filters button:hover b,
.sms-grade-filters button.active b {
  color: #fff;
}
.sms-grade-filters button.reset {
  margin-left: auto;
  color: #68777e;
  background: transparent;
  border-style: dashed;
}
.sms-grade-filters button.reset:hover {
  color: var(--navy);
  background: #fff;
  border-color: var(--navy);
}
.sms-recipient-list {
  border-top: 2px solid var(--navy);
}
.sms-recipient-row {
  display: grid;
  grid-template-columns: 34px 55px 1fr 1.3fr 1fr;
  gap: 15px;
  align-items: center;
  min-height: 55px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.sms-recipient-row[hidden] {
  display: none;
}
.sms-recipient-prompt {
  margin: 0;
  padding: 55px 20px;
  color: var(--muted);
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.sms-recipient-prompt[hidden] {
  display: none;
}
.sms-recipient-row strong small {
  display: inline-block;
  margin-left: 7px;
  padding: 3px 7px;
  color: var(--green);
  background: #e8f6f1;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  vertical-align: 1px;
}
.sms-check {
  display: grid;
  place-items: center;
}
.sms-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
  cursor: pointer;
}
.sms-recipient-row.head {
  min-height: 45px;
  color: var(--navy);
  background: #f5f8f7;
  font-weight: 800;
}
.sms-preview-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}
.sms-preview-actions a,
.sms-preview-actions button {
  min-width: 120px;
  padding: 13px 20px;
  border: 1px solid #cad7d4;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  font-weight: 800;
  cursor: pointer;
}
.sms-preview-actions button {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.sms-preview-actions button:disabled {
  color: #8e9996;
  background: #e7ebea;
  border-color: #e7ebea;
  cursor: not-allowed;
}
@media (max-width: 760px) {
  .sms-preview-main {
    padding: calc(var(--header) + 30px) 12px 50px;
  }
  .sms-preview-shell {
    padding: 27px 18px;
  }
  .sms-preview-head h1 {
    font-size: 28px;
  }
  .sms-recipient-section > header {
    display: block;
  }
  .sms-recipient-section > header p {
    margin-top: 10px;
    line-height: 1.6;
  }
  .sms-grade-filters {
    padding: 10px;
  }
  .sms-grade-filters button.reset {
    margin-left: 0;
  }
  .sms-recipient-row {
    grid-template-columns: 30px 34px 1fr 1fr;
    gap: 8px;
    padding-inline: 8px;
  }
  .sms-recipient-row > :nth-child(4) {
    display: none;
  }
}

/* Footer policy page */
.policy-visual {
  --sub-bg: url("/assets/images/hero02.jpg");
}
.policy-content {
  padding: 90px 0 120px;
}
.policy-layout {
  max-width: 1100px;
}
.policy-intro {
  margin-bottom: 58px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--navy);
}
.policy-intro small {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.policy-intro h2 {
  margin: 9px 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 42px);
}
.policy-intro p {
  margin: 0;
  color: var(--muted);
}
.policy-section {
  padding-top: 55px;
  scroll-margin-top: calc(var(--header) + 20px);
}
.policy-section + .policy-section {
  margin-top: 35px;
}
.policy-section > header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.policy-section > header > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.policy-section > header small {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.policy-section > header h3 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 25px;
}
.policy-scroll-box {
  height: 370px;
  padding: 30px 34px;
  overflow-y: auto;
  color: #53636d;
  background: #f8faf9;
  border: 1px solid #dfe7e5;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.85;
  scrollbar-color: #a8bbb6 #edf1f0;
  scrollbar-width: thin;
}
.policy-scroll-box:focus {
  outline: 2px solid rgba(29, 128, 108, 0.22);
  border-color: var(--green);
}
.policy-scroll-box > :first-child {
  margin-top: 0;
}
.policy-scroll-box h4 {
  margin: 27px 0 8px;
  color: var(--navy);
  font-size: 15px;
}
.policy-scroll-box p {
  margin: 8px 0;
}
.policy-scroll-box ul {
  margin: 8px 0;
  padding-left: 22px;
}
.policy-effective {
  margin-top: 30px !important;
  padding-top: 18px;
  color: var(--green);
  border-top: 1px solid var(--line);
  font-weight: 700;
}
@media (max-width: 760px) {
  .policy-content {
    padding: 60px 0 80px;
  }
  .policy-intro {
    margin-bottom: 30px;
  }
  .policy-section {
    padding-top: 40px;
  }
  .policy-scroll-box {
    height: 330px;
    padding: 23px 20px;
    font-size: 13px;
  }
}
