:root {
  --navy: #12344a;
  --ink: #22313d;
  --muted: #70777f;
  --surface: #f6f7f9;
  --green: #18aa80;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", Arial, "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

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

.skip-link {
  background: var(--navy);
  color: var(--white);
  left: 1rem;
  padding: .6rem 1rem;
  position: fixed;
  top: -100px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.post-answer-summary,
.post-faq {
  background: #f4faf8;
  border: 1px solid #d8eee7;
  border-radius: 10px;
  margin: 0 0 32px;
  padding: 24px 28px;
}

.post-answer-summary h2,
.post-faq h2 {
  margin-top: 0;
}

.post-answer-summary__direct {
  color: var(--navy);
  font-size: 1.08em;
  font-weight: 700;
}

.post-faq details {
  border-top: 1px solid #cfe5de;
  padding: 14px 0;
}

.post-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.site-header {
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #e8ebed;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  align-items: center;
  display: flex;
  height: 79px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 10px;
}

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  height: auto;
  width: 170px;
}

.site-navigation {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: 16px;
  font-weight: 600;
  gap: 0;
}

.site-navigation a {
  padding: 2px 20px;
  text-decoration: none;
}

.site-navigation a + a {
  border-left: 1px solid #cbd3d8;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
  color: var(--green);
}

.site-navigation__contact {
  color: var(--green);
}

.site-menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  padding: 8px;
}

.site-menu-toggle span {
  background: var(--navy);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 26px;
}

.home-hero {
  align-items: center;
  background-color: #23272f;
  background-image: url("/wp-content/uploads/2026/08/Home_2608.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  display: flex;
  height: 700px;
  justify-content: center;
  margin-top: 32px;
  min-height: 700px;
  position: relative;
}

.home-hero__shade {
  background: rgba(8, 19, 28, .52);
  inset: 0;
  position: absolute;
}

.home-hero__content {
  max-width: 600px;
  position: relative;
  width: calc(100% - 48px);
  z-index: 1;
}

.home-hero h1 {
  color: var(--white);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.6px;
  line-height: 1;
  margin: 0 0 2px;
}

.home-hero p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.home-hero__actions {
  align-items: center;
  display: flex;
  gap: 64px;
  margin-top: 12px;
  padding-left: 116px;
}

.home-button {
  display: inline-flex;
  font-size: 16px;
  justify-content: center;
  line-height: 24px;
  text-decoration: none;
}

.home-button--primary {
  align-items: center;
  background: #70777f;
  border-radius: 999px;
  color: var(--white);
  min-height: 56px;
  min-width: 182px;
  padding: 16px 30px;
}

.home-button--primary:hover,
.home-button--primary:focus-visible {
  background: var(--navy);
}

.home-button--text {
  color: var(--white);
  padding: 16px 0;
}

.home-section-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.home-insights {
  background: var(--surface);
  min-height: 799px;
  padding: 138px 36px 78px;
}

.home-insights h2,
.home-start h2 {
  color: #0d141a;
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.35px;
  line-height: 1;
  margin: 0;
}

.insight-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 70px;
}

.insight-card {
  background: var(--white);
  border: 1px solid rgba(18, 52, 74, .08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(18, 52, 74, .075);
  display: flex;
  flex-direction: column;
  min-height: 597px;
  overflow: hidden;
  padding-bottom: 20px;
}

.insight-card__image-link {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 16px;
}

.insight-card__image {
  border-radius: 20px;
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.insight-card h3 {
  color: var(--navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.32;
  margin: 18px 0 12px;
  padding: 0 20px;
}

.insight-card h3 a {
  text-decoration: none;
}

.insight-card h3 a:hover,
.insight-card h3 a:focus-visible {
  color: var(--green);
}

.insight-card__excerpt {
  display: -webkit-box;
  font-size: 15px;
  line-height: 24px;
  margin-top: 12px;
  overflow: hidden;
  padding: 0 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.insight-card__excerpt p {
  margin: 0;
}

.insight-card__date {
  font-size: 13px;
  line-height: 20px;
  margin: auto 0 0;
  padding: 14px 20px 0;
}

.home-informed {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 154px;
  padding: 28px 24px;
  text-align: center;
}

.newsletter-open {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #0d141a;
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 20px;
  padding: 0;
}

.newsletter-open::after {
  background: var(--green);
  content: "";
  display: block;
  height: 2px;
  margin: 7px auto 0;
  transform: scaleX(0);
  transition: transform .2s ease;
  width: 100%;
}

.newsletter-open:hover::after,
.newsletter-open:focus-visible::after {
  transform: scaleX(1);
}

.home-informed p,
.home-start p {
  margin: 0;
}

.home-start {
  align-items: center;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 328px;
  padding: 48px 24px;
  text-align: center;
}

.home-start h2 {
  margin-bottom: 28px;
}

.home-button--outline {
  border: 2px solid #0d141a;
  border-radius: 999px;
  color: #0d141a;
  margin-top: 20px;
  min-width: 90px;
  padding: 8px 20px;
}

.home-button--outline:hover,
.home-button--outline:focus-visible {
  background: #0d141a;
  color: var(--white);
}

.site-footer {
  background: var(--navy);
  color: #b8c0cc;
  flex-shrink: 0;
}

.site-footer__inner {
  display: grid;
  gap: 34px 72px;
  grid-template-columns: 3fr 2fr;
  margin: 0 auto;
  max-width: 1120px;
  padding: 47px 0 22px;
}

.site-footer h2 {
  color: var(--white);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .4px;
  line-height: 26px;
  margin: 0 0 18px;
}

.footer-navigation {
  display: grid;
  gap: 10px 28px;
  grid-template-columns: repeat(3, max-content);
}

.footer-navigation a {
  font-size: 15px;
  text-decoration: none;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
  color: var(--white);
}

.footer-email {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  display: inline-block;
  font-size: 15px;
  padding: 11px 16px;
  text-decoration: none;
}

.site-footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  font-size: 13px;
  gap: 6px;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  text-align: center;
}

.site-footer__build {
  color: #7f8b98;
  font-size: 10px;
  letter-spacing: .35px;
}

.empty-state {
  color: var(--muted);
  margin-top: 2rem;
}

.insights-page {
  background: var(--surface);
  padding: 82px 36px 100px;
}

.insights-page__header {
  margin: 0 auto 54px;
  max-width: 1120px;
}

.insights-page__header h1 {
  color: #0d141a;
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 52px;
  line-height: 1.08;
  margin: 0 0 14px;
}

.insights-page__header > p:last-child {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.insights-page__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
}

.archive-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 24px;
  max-width: 1120px;
}

.archive-toolbar > p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.archive-toolbar > p strong {
  color: var(--navy);
}

.archive-view-toggle {
  align-items: center;
  background: #e8ecef;
  border-radius: 999px;
  display: inline-flex;
  gap: 3px;
  padding: 4px;
}

.archive-view-toggle a {
  align-items: center;
  border-radius: 999px;
  color: #66737b;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
  min-height: 34px;
  padding: 7px 13px;
  text-decoration: none;
}

.archive-view-toggle a.is-active {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(18, 52, 74, .12);
  color: var(--navy);
}

.view-icon {
  display: inline-block;
  height: 13px;
  position: relative;
  width: 14px;
}

.view-icon--card {
  background: linear-gradient(currentColor 0 0) 0 0 / 6px 5px no-repeat,
              linear-gradient(currentColor 0 0) 8px 0 / 6px 5px no-repeat,
              linear-gradient(currentColor 0 0) 0 8px / 6px 5px no-repeat,
              linear-gradient(currentColor 0 0) 8px 8px / 6px 5px no-repeat;
}

.view-icon--list {
  background: linear-gradient(currentColor 0 0) 0 0 / 14px 2px no-repeat,
              linear-gradient(currentColor 0 0) 0 5px / 14px 2px no-repeat,
              linear-gradient(currentColor 0 0) 0 10px / 14px 2px no-repeat;
}

.insights-list-card {
  background: var(--white);
  border: 1px solid rgba(18, 52, 74, .08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(18, 52, 74, .06);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
}

.insights-list-card__image-link {
  background: #e9eef1;
  display: block;
  overflow: hidden;
}

.insights-list-card__image {
  aspect-ratio: 11 / 4.5;
  height: auto;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.insights-list-card__image-link:hover .insights-list-card__image,
.insights-list-card__image-link:focus-visible .insights-list-card__image {
  transform: scale(1.025);
}

.insights-list-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 28px 24px;
}

.insights-list-card h2 {
  color: var(--navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 21px;
  line-height: 1.36;
  margin: 0;
}

.insights-list-card h2 a {
  text-decoration: none;
}

.insights-list-card h2 a:hover,
.insights-list-card h2 a:focus-visible {
  color: var(--green);
}

.insights-list-card__excerpt {
  color: var(--ink);
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.insights-list-card__excerpt p {
  margin: 0;
}

.insights-list-card__date {
  color: var(--muted);
  font-size: 13px;
  margin: auto 0 0;
  padding-top: 20px;
}

.insights-page__grid--list {
  grid-template-columns: 1fr;
}

.insights-page__grid--list .insights-list-card {
  display: block;
  min-height: 0;
}

.insights-page__grid--list .insights-list-card.has-image {
  display: grid;
  grid-template-columns: minmax(220px, 290px) 1fr;
}

.insights-page__grid--list .insights-list-card__image-link {
  height: 100%;
  margin: 0;
}

.insights-page__grid--list .insights-list-card__image {
  aspect-ratio: auto;
  height: 100%;
  min-height: 210px;
}

.insights-page__grid--list .insights-list-card__body {
  min-height: 210px;
  padding: 28px 30px 24px;
}

.insights-page__grid--list .insights-list-card__excerpt {
  -webkit-line-clamp: 3;
}

.pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin: 48px auto 0;
  max-width: 1120px;
}

.pagination a {
  align-items: center;
  border: 1px solid #d6dee3;
  border-radius: 8px;
  color: var(--navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 12px;
  text-decoration: none;
}

.pagination a:hover,
.pagination a:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.pagination a.is-current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pagination__direction {
  min-width: 64px !important;
}

.content-article {
  margin: 0;
  max-width: none;
}

.content-preview-bar {
  align-items: center;
  background: #12344a;
  color: #fff;
  display: flex;
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 14px;
  gap: 18px;
  justify-content: space-between;
  padding: 10px 24px;
}

.content-preview-bar a {
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  padding: 7px 12px;
  text-decoration: none;
}

.content-preview-bar a:hover,
.content-preview-bar a:focus-visible {
  background: #fff;
  color: #12344a;
}

.content-article__header {
  background: linear-gradient(135deg, #edf6f2 0%, #edf1f4 100%);
  padding: 66px 24px 70px;
  text-align: center;
}

.content-article__header-inner {
  margin: 0 auto;
  max-width: 960px;
}

.content-article h1,
.taxonomy-header h1 {
  color: var(--navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  line-height: 1.25;
}

.content-article h1 {
  font-size: clamp(2rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.035em;
  margin: 0;
}

.content-article__header .post-date {
  color: #557183;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  margin: 0 0 16px;
}

.content-article__body {
  margin: 0 auto;
  max-width: 828px;
  padding: 36px 24px 88px;
}

.content-article__featured {
  margin: 0 0 42px;
}

.content-article__featured img {
  aspect-ratio: 11 / 4.5;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(18, 52, 74, .11);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.taxonomy-header {
  margin: 3.5rem auto 3rem;
  max-width: 1060px;
  padding: 0 24px;
}

.taxonomy-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.post-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 0 auto 5rem;
  max-width: 1060px;
  padding: 0 24px;
}

.taxonomy-page {
  background: var(--surface);
  min-height: 700px;
  padding: 1px 0 90px;
}

.post-card {
  background: var(--white);
  border: 1px solid rgba(18, 52, 74, .1);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(18, 52, 74, .06);
  overflow: hidden;
}

.post-card__image-link {
  background: #e9eef1;
  display: block;
  overflow: hidden;
}

.post-card__image {
  aspect-ratio: 11 / 4.5;
  height: auto;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.post-card__image-link:hover .post-card__image,
.post-card__image-link:focus-visible .post-card__image {
  transform: scale(1.025);
}

.post-card__body {
  padding: 24px 24px 28px;
}

.post-card h2 {
  color: var(--navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 1.45rem;
  line-height: 1.35;
  margin: 8px 0 14px;
}

.post-card h2 a {
  text-decoration: none;
}

.post-card .excerpt {
  color: #43545e;
  font-size: 14px;
  line-height: 1.7;
}

.post-card .excerpt p:last-child {
  margin-bottom: 0;
}

.post-grid--list {
  grid-template-columns: 1fr;
}

.post-grid--list .post-card {
  display: block;
}

.post-grid--list .post-card.has-image {
  display: grid;
  grid-template-columns: minmax(220px, 290px) 1fr;
}

.post-grid--list .post-card__image-link {
  height: 100%;
}

.post-grid--list .post-card__image {
  aspect-ratio: auto;
  height: 100%;
  min-height: 205px;
}

.post-grid--list .post-card__body {
  min-height: 205px;
  padding: 27px 30px;
}

.post-grid--list .post-card .excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-date {
  color: var(--muted);
  font-size: .84rem;
}

.wordpress-content {
  color: #1e2e38;
  font-family: "Open Sans", Arial, "Noto Sans KR", sans-serif;
  font-size: 17px;
  line-height: 1.78;
}

.wordpress-content img {
  border-radius: 8px;
  height: auto;
  max-width: 100%;
}

.wordpress-content img.emoji {
  border-radius: 0;
  display: inline-block;
  height: 1em;
  margin: 0 .08em 0 0;
  max-width: none;
  vertical-align: -.1em;
  width: 1em;
}

.wordpress-content p {
  margin: 0 0 1.35em;
}

.wordpress-content h2,
.wordpress-content h3,
.wordpress-content h4 {
  color: var(--navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.wordpress-content h2 {
  font-size: 30px;
  margin: 2.1em 0 .68em;
}

.wordpress-content h3 {
  font-size: 23px;
  margin: 1.8em 0 .62em;
}

.wordpress-content h4 {
  font-size: 19px;
  margin: 1.6em 0 .55em;
}

.wordpress-content ul,
.wordpress-content ol {
  margin: 0 0 1.45em;
  padding-left: 1.45em;
}

.wordpress-content li {
  margin-bottom: .5em;
}

.wordpress-content a {
  color: #078b63;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wordpress-content blockquote {
  background: #f1f7f5;
  border-left: 4px solid var(--green);
  margin: 2em 0;
  padding: 18px 22px;
}

.wordpress-content blockquote p:last-child {
  margin-bottom: 0;
}

.wordpress-content figure {
  margin: 2em 0;
}

.wordpress-content figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 9px;
  text-align: center;
}

.wordpress-content table {
  border-collapse: collapse;
  display: block;
  margin: 1.7em 0;
  max-width: 100%;
  overflow-x: auto;
  width: 100%;
}

.wordpress-content th,
.wordpress-content td {
  border: 1px solid #d4dfe3;
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
}

.wordpress-content th {
  background: #eaf4f1;
  color: var(--navy);
}

.post-author {
  background: linear-gradient(135deg, #eef7f4 0%, #f5f7f8 100%);
  border: 1px solid #d8e5e1;
  border-radius: 14px;
  color: #344a57;
  margin-top: 64px;
  padding: 30px 32px 26px;
}

.post-author__eyebrow {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  margin: 0 0 7px;
}

.post-author h2 {
  color: var(--navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 25px;
  line-height: 1.3;
  margin: 0 0 22px;
}

.post-author > p:not(.post-author__eyebrow):not(.post-author__note) {
  font-size: 15px;
  line-height: 1.72;
  margin: 20px 0;
}

.post-author__identity {
  align-items: center;
  display: flex;
  gap: 17px;
}

.post-author__monogram {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex: 0 0 58px;
  font-size: 18px;
  font-weight: 800;
  height: 58px;
  justify-content: center;
}

.post-author__name {
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 3px;
}

.post-author__roles {
  color: #59707d;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.post-author__details {
  border-bottom: 1px solid #d5e1de;
  border-top: 1px solid #d5e1de;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  padding: 17px 0;
}

.post-author__details p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.post-author a {
  color: #078b63;
  font-weight: 700;
}

.post-author__note {
  color: #6b7d86;
  font-size: 12px;
  line-height: 1.6;
  margin: 17px 0 0;
}

.contact-page {
  background: linear-gradient(135deg, #eef6f3 0%, #f7f8fa 52%, #eef2f5 100%);
  display: grid;
  gap: 78px;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  margin: 0;
  min-height: 720px;
  padding: 88px max(32px, calc((100vw - 1120px) / 2)) 104px;
}

.contact-page__intro {
  align-self: center;
  max-width: 470px;
}

.contact-page__eyebrow,
.newsletter-modal__eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  margin: 0 0 14px;
}

.contact-page h1 {
  color: var(--navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 25px;
}

.contact-page__intro > p:not(.contact-page__eyebrow) {
  color: #506572;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.contact-page__direct {
  border-top: 1px solid rgba(18, 52, 74, .14);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 38px;
  padding-top: 27px;
}

.contact-page__direct span {
  color: var(--muted);
  font-size: 13px;
}

.contact-page__direct a {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.contact-card {
  align-self: center;
  background: var(--white);
  border: 1px solid rgba(18, 52, 74, .08);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(18, 52, 74, .12);
  padding: 42px;
}

.contact-form__row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  color: var(--navy);
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
}

.form-field label > span:not(.form-field__optional) {
  color: #d64e4e;
}

.form-field__optional {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
}

.form-field input,
.form-field textarea {
  background: #fafbfc;
  border: 1px solid #dce3e7;
  border-radius: 9px;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  width: 100%;
}

.form-field textarea {
  min-height: 168px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 170, 128, .12);
}

.form-consent {
  align-items: flex-start;
  color: #5f6d76;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.55;
  margin: 4px 0 24px;
}

.form-consent input {
  accent-color: var(--green);
  flex: 0 0 auto;
  height: 17px;
  margin-top: 2px;
  width: 17px;
}

.form-consent a,
.newsletter-modal__privacy a {
  color: var(--navy);
  font-weight: 700;
}

.form-submit,
.newsletter-form__submit,
.newsletter-modal__done {
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 50px;
  padding: 13px 28px;
  transition: background .18s ease, transform .18s ease;
}

.form-submit {
  width: 100%;
}

.form-submit:hover,
.form-submit:focus-visible,
.newsletter-form__submit:hover,
.newsletter-form__submit:focus-visible,
.newsletter-modal__done:hover,
.newsletter-modal__done:focus-visible {
  background: var(--green);
  transform: translateY(-1px);
}

.contact-form__note {
  color: var(--muted);
  font-size: 12px;
  margin: 13px 0 0;
  text-align: center;
}

.form-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-status {
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
  padding: 13px 15px;
}

.form-status--success {
  background: #eef8f4;
  border: 1px solid #bfe4d7;
  color: #176d54;
}

.form-status--success strong,
.form-status--success span {
  display: block;
}

.form-status--success strong {
  font-size: 20px;
  margin-bottom: 6px;
}

.form-status--error {
  background: #fff4f3;
  border: 1px solid #f0cac6;
  color: #9b3f37;
}

body.modal-open {
  overflow: hidden;
}

.newsletter-modal[hidden] {
  display: none;
}

.newsletter-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 500;
}

.newsletter-modal__backdrop {
  background: rgba(8, 20, 28, .68);
  inset: 0;
  position: absolute;
}

.newsletter-modal__panel {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
  max-height: calc(100vh - 48px);
  max-width: 520px;
  overflow-y: auto;
  padding: 43px 42px 36px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.newsletter-modal__close {
  background: transparent;
  border: 0;
  color: #68747b;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  padding: 8px;
  position: absolute;
  right: 13px;
  top: 11px;
}

.newsletter-modal__panel h2 {
  color: var(--navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.newsletter-modal__panel > p:not(.newsletter-modal__eyebrow):not(.newsletter-modal__privacy) {
  color: #566a76;
  line-height: 1.65;
  margin: 0 0 25px;
}

.newsletter-form__submit {
  width: 100%;
}

.newsletter-modal__privacy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 17px 0 0;
  text-align: center;
}

.newsletter-modal__success {
  padding: 18px 5px 10px;
  text-align: center;
}

.newsletter-modal__success-icon {
  align-items: center;
  background: #e8f8f2;
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  font-size: 30px;
  height: 64px;
  justify-content: center;
  margin-bottom: 22px;
  width: 64px;
}

.newsletter-modal__success p {
  color: #566a76;
  line-height: 1.65;
  margin: 0 auto 26px;
  max-width: 390px;
}

@media (max-width: 960px) {
  .site-header__inner {
    padding: 0 24px;
  }

  .site-navigation {
    gap: 0;
  }

  .site-navigation a {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-insights {
    padding-left: 24px;
    padding-right: 24px;
  }

  .insight-grid {
    gap: 20px;
  }

  .insights-page__grid {
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-card__image {
    height: 250px;
  }

  .content-article__header {
    padding: 52px 22px 56px;
  }

  .content-article__body {
    padding-bottom: 68px;
  }

  .wordpress-content h2 {
    font-size: 27px;
  }

  .contact-page {
    gap: 38px;
    grid-template-columns: 1fr;
    padding: 58px 20px 72px;
  }

  .contact-page__intro {
    max-width: 620px;
  }

  .contact-card {
    max-width: 680px;
    padding: 32px;
    width: 100%;
  }

  .site-footer__inner {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    height: 72px;
    padding: 0 20px;
  }

  .site-logo img {
    width: 145px;
  }

  .site-menu-toggle {
    display: block;
  }

  .site-navigation {
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid #e8ebed;
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 8px 20px 18px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation a {
    padding: 11px 0;
  }

  .site-navigation a + a {
    border-left: 0;
  }

  .site-navigation__contact {
    border-left: 0;
    padding-left: 0 !important;
  }

  .home-hero {
    height: 570px;
    margin-top: 20px;
    min-height: 570px;
  }

  .home-hero__content {
    max-width: 520px;
    width: calc(100% - 40px);
  }

  .home-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.06;
  }

  .desktop-break {
    display: none;
  }

  .home-hero__actions {
    gap: 24px;
    padding-left: 0;
  }

  .home-insights {
    padding: 78px 20px;
  }

  .insights-page {
    padding: 58px 20px 76px;
  }

  .insights-page__header h1 {
    font-size: 42px;
  }

  .insights-page__grid {
    grid-template-columns: 1fr;
  }

  .insights-page__grid--list .insights-list-card.has-image,
  .post-grid--list .post-card.has-image {
    grid-template-columns: minmax(170px, 36%) 1fr;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .home-insights h2,
  .home-start h2 {
    font-size: 34px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .insight-card {
    min-height: 0;
  }

  .insight-card__image {
    height: auto;
    max-height: 360px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding: 42px 24px 22px;
  }

  .site-footer__copyright {
    grid-column: 1;
  }
}

@media (max-width: 460px) {
  .home-hero {
    background-position: 58% center;
  }

  .home-hero h1 {
    font-size: 36px;
  }

  .home-hero p {
    font-size: 15px;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .home-button--primary {
    min-height: 50px;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, max-content);
  }

  .content-article__header {
    padding: 42px 18px 46px;
  }

  .content-article h1 {
    font-size: 31px;
  }

  .content-article__body {
    padding: 28px 18px 58px;
  }

  .content-article__featured {
    margin-bottom: 30px;
  }

  .wordpress-content {
    font-size: 16px;
    line-height: 1.72;
  }

  .wordpress-content h2 {
    font-size: 25px;
  }

  .wordpress-content h3 {
    font-size: 21px;
  }

  .contact-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-page__intro {
    padding: 0 4px;
  }

  .contact-card {
    border-radius: 15px;
    padding: 25px 20px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .newsletter-modal {
    padding: 12px;
  }

  .newsletter-modal__panel {
    border-radius: 16px;
    max-height: calc(100vh - 24px);
    padding: 38px 22px 28px;
  }

  .newsletter-modal__panel h2 {
    font-size: 30px;
  }

  .archive-toolbar {
    align-items: flex-start;
    gap: 14px;
  }

  .insights-page__grid--list .insights-list-card.has-image,
  .post-grid--list .post-card.has-image {
    display: block;
  }

  .insights-page__grid--list .insights-list-card__image,
  .post-grid--list .post-card__image {
    aspect-ratio: 11 / 4.5;
    height: auto;
    min-height: 0;
  }

  .insights-page__grid--list .insights-list-card__body,
  .post-grid--list .post-card__body {
    min-height: 0;
    padding: 23px 21px;
  }

  .post-author {
    margin-top: 46px;
    padding: 25px 21px 22px;
  }

  .post-author__details {
    grid-template-columns: 1fr;
  }
}
