:root {
  --apt-black: #050505;
  --apt-ink: #111111;
  --apt-muted: #6f6f6f;
  --apt-line: #e5e1da;
  --apt-paper: #f7f5f0;
  --apt-white: #ffffff;
  --apt-gold: #b99a5b;
  --apt-gold-dark: #856c3f;
  --apt-radius: 8px;
  --apt-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  --apt-header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--apt-ink);
  background: var(--apt-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", Arial, sans-serif;
  letter-spacing: 0;
}

body.admin-bar .apt-site-header {
  top: 32px;
}

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

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.apt-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--apt-black);
  color: var(--apt-white);
}

.apt-skip-link:focus {
  transform: translateY(0);
}

.apt-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  color: var(--apt-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.apt-site-header.is-scrolled {
  color: var(--apt-ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-color: rgba(0, 0, 0, 0.08);
}

.apt-header-inner {
  width: min(1160px, calc(100% - 32px));
  min-height: var(--apt-header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.apt-brand {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.apt-brand img {
  max-height: 42px;
  width: auto;
}
.apt-brand img.apt-jipmap-logo {
  max-height: 100px;
}

.apt-nav {
  display: none;
  align-items: center;
  gap: 26px;
  color: currentColor;
  font-size: 14px;
}

.apt-nav a {
  opacity: 0.82;
}

.apt-nav a:hover {
  opacity: 1;
}

.apt-header-phone {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: var(--apt-radius);
  font-weight: 700;
  font-size: 14px;
}

.apt-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--apt-white);
  background: var(--apt-black);
}

.apt-hero-media,
.apt-hero-media img,
.apt-hero-media .apt-image-fallback,
.apt-hero-shade {
  position: absolute;
  inset: 0;
}

.apt-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apt-hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.16) 34%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.55));
}

.apt-image-fallback {
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0 1px, transparent 1px 120px),
    linear-gradient(140deg, #1c1b19, #4d4a43 52%, #111111);
}

.apt-hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 120px 0 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.apt-kicker,
.apt-section-label {
  margin: 0 0 16px;
  color: var(--apt-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.apt-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 12vw, 118px);
  line-height: 0.95;
  font-weight: 800;
}

.apt-hero h2 {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(20px, 5vw, 42px);
  line-height: 1.18;
  font-weight: 600;
}

.apt-hero-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.apt-hero-phone {
  margin-top: 24px;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.apt-hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 420px);
  margin-top: 26px;
}

.apt-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--apt-radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.apt-button:hover {
  transform: translateY(-1px);
}

.apt-button-light {
  background: var(--apt-white);
  color: var(--apt-black);
}

.apt-button-dark {
  background: var(--apt-black);
  color: var(--apt-white);
  border-color: var(--apt-black);
}

.apt-section {
  padding: 92px 0;
}

.apt-section:nth-of-type(even) {
  background: var(--apt-paper);
}

.apt-section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.apt-grid-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.apt-grid-align {
  align-items: center;
}

.apt-section h2 {
  margin: 0;
  font-size: clamp(34px, 8vw, 72px);
  line-height: 1.02;
}

.apt-lead {
  margin: 22px 0 0;
  color: #3a3a3a;
  font-size: 18px;
  line-height: 1.8;
}

.apt-spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--apt-line);
}

.apt-spec-grid div {
  padding: 22px 0;
  border-bottom: 1px solid var(--apt-line);
}

.apt-spec-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--apt-muted);
  font-size: 13px;
  font-weight: 700;
}

.apt-spec-grid strong {
  font-size: 20px;
  line-height: 1.45;
}

.apt-section-visual,
.apt-wide-visual,
.apt-plan-image-wrap {
  overflow: hidden;
  border-radius: var(--apt-radius);
  background: #191816;
  box-shadow: var(--apt-shadow);
}

.apt-section-image,
.apt-layout-image,
.apt-plan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apt-section-visual {
  aspect-ratio: 4 / 5;
}

.apt-text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--apt-gold-dark);
  font-weight: 800;
}

.apt-premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 34px;
}

.apt-premium-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--apt-line);
  border-radius: var(--apt-radius);
  background: var(--apt-white);
}

.apt-premium-grid span {
  color: var(--apt-gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.apt-premium-grid h3 {
  margin: 44px 0 12px;
  font-size: 27px;
}

.apt-premium-grid p {
  margin: 0;
  color: #4f4f4f;
  line-height: 1.7;
}

.apt-section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.apt-section-heading p:last-child {
  margin: 0;
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.75;
}

.apt-wide-visual {
  aspect-ratio: 16 / 10;
}

.apt-tabs {
  margin-top: 30px;
}

.apt-tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.apt-tab {
  min-height: 48px;
  border: 1px solid var(--apt-line);
  border-radius: var(--apt-radius);
  background: var(--apt-white);
  color: var(--apt-ink);
  font-weight: 800;
  cursor: pointer;
}

.apt-tab.is-active {
  background: var(--apt-black);
  color: var(--apt-white);
  border-color: var(--apt-black);
}

.apt-tab-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--apt-line);
  border-radius: var(--apt-radius);
  background: var(--apt-white);
}

.apt-tab-panel.is-active {
  display: grid;
}

.apt-tab-panel h3 {
  margin: 0;
  font-size: 44px;
}

.apt-plan-area {
  margin: 10px 0 20px;
  color: var(--apt-gold-dark);
  font-weight: 800;
}

.apt-tab-panel p {
  color: #4a4a4a;
  line-height: 1.75;
}

.apt-plan-image-wrap {
  min-height: 280px;
  box-shadow: none;
  background: #f0eee8;
}

.apt-timeline {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.apt-timeline li {
  counter-increment: timeline;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--apt-line);
  font-weight: 700;
}

.apt-timeline li::before {
  content: counter(timeline, decimal-leading-zero);
  color: var(--apt-gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.apt-condition {
  padding: 28px;
  border-radius: var(--apt-radius);
  background: var(--apt-black);
  color: var(--apt-white);
}

.apt-condition h3 {
  margin: 0 0 24px;
  font-size: 28px;
}

.apt-price-box {
  margin: 0 0 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.apt-price-box span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.apt-price-box strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
}

.apt-price-box p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.apt-condition ul {
  margin: 0;
  padding-left: 20px;
}

.apt-condition li {
  margin: 13px 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.apt-faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--apt-line);
}

.apt-faq-list details {
  border-bottom: 1px solid var(--apt-line);
}

.apt-faq-list summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 19px;
  font-weight: 800;
}

.apt-faq-list p {
  margin: 0 0 24px;
  color: #4a4a4a;
  line-height: 1.8;
}

.apt-large-phone {
  display: inline-flex;
  margin-top: 26px;
  font-size: clamp(34px, 10vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.apt-lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--apt-line);
  border-radius: var(--apt-radius);
  background: var(--apt-white);
  box-shadow: var(--apt-shadow);
}

.apt-lead-form label {
  display: grid;
  gap: 8px;
}

.apt-lead-form label span {
  color: #3e3e3e;
  font-size: 14px;
  font-weight: 800;
}

.apt-lead-form input,
.apt-lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--apt-line);
  border-radius: var(--apt-radius);
  background: #fbfaf7;
  color: var(--apt-ink);
}

.apt-lead-form textarea {
  resize: vertical;
}

.apt-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.apt-privacy {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
}

.apt-privacy input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.apt-privacy span {
  color: #525252;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.apt-form-notice {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--apt-radius);
  background: #eef8f1;
  color: #17672d;
  font-weight: 800;
}

.apt-form-error {
  background: #fff1ef;
  color: #a92f24;
}

.apt-footer {
  padding: 38px 0 92px;
  background: var(--apt-black);
  color: rgba(255, 255, 255, 0.72);
}

.apt-footer p {
  margin: 0;
  line-height: 1.7;
}

.apt-footer-meta {
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.apt-mobile-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: var(--apt-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.apt-mobile-dock a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--apt-radius);
  background: var(--apt-black);
  color: var(--apt-white);
  font-size: 14px;
  font-weight: 900;
}

@media (min-width: 640px) {
  .apt-hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apt-spec-grid,
  .apt-premium-grid,
  .apt-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apt-tab-list {
    display: flex;
  }

  .apt-tab {
    min-width: 112px;
    padding: 0 22px;
  }
}

@media (min-width: 900px) {
  .apt-nav {
    display: flex;
  }

  .apt-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
  }

  .apt-section-heading {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .apt-premium-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .apt-tab-panel {
    grid-template-columns: 0.75fr 1.25fr;
    padding: 34px;
    align-items: center;
  }

  .apt-plan-image-wrap {
    min-height: 430px;
  }

  .apt-mobile-dock {
    display: none;
  }

  .apt-footer {
    padding-bottom: 38px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .apt-site-header {
    top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Reference-style apartment promotion layout */
:root {
  --apt-green: #006967;
  --apt-green-dark: #004947;
  --apt-soft: #f6f7f4;
}

.apt-site-header {
  color: #172221;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.apt-site-header.is-scrolled {
  color: #172221;
  background: rgba(255, 255, 255, 0.98);
}

.apt-header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
}

.apt-brand {
  color: var(--apt-green-dark);
  font-size: 18px;
  font-weight: 900;
}

.apt-nav {
  gap: 34px;
  font-size: 14px;
  font-weight: 800;
}

.apt-header-phone {
  gap: 8px;
  border: 0;
  color: var(--apt-green);
  padding: 0;
}

.apt-header-phone span {
  color: #889291;
  font-size: 11px;
  font-weight: 800;
}

.apt-header-phone strong {
  font-size: 15px;
}

.apt-hero-reference {
  min-height: 690px;
  color: #0c1f20;
  background: #dfe7e5;
}

.apt-hero-reference .apt-hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42) 43%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.apt-hero-reference .apt-image-fallback {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 38%, rgba(1, 74, 74, 0.22)),
    repeating-linear-gradient(90deg, rgba(0, 80, 78, 0.08) 0 1px, transparent 1px 86px),
    linear-gradient(145deg, #e8efec, #bdd1cf 55%, #537f7c);
}

.apt-hero-reference .apt-hero-content {
  width: min(1180px, calc(100% - 32px));
  min-height: 690px;
  justify-content: center;
  align-items: flex-start;
  padding: 110px 0 70px;
}

.apt-hero-reference .apt-kicker {
  color: var(--apt-green);
}

.apt-hero-reference h1 {
  max-width: 720px;
  color: var(--apt-green-dark);
  font-size: clamp(42px, 8vw, 78px);
  line-height: 1.05;
}

.apt-hero-reference h2 {
  order: -1;
  max-width: 650px;
  margin: 0 0 14px;
  color: #223230;
  font-size: clamp(20px, 4vw, 34px);
  line-height: 1.32;
  font-weight: 800;
}

.apt-hero-reference .apt-hero-copy {
  color: #334442;
}

.apt-hero-reference .apt-hero-actions {
  width: min(100%, 390px);
}

.apt-hero-reference .apt-button-dark,
.apt-tab.is-active,
.apt-mobile-dock a,
.apt-lead-form .apt-button-dark {
  background: var(--apt-green);
  border-color: var(--apt-green);
}

.apt-hero-reference .apt-button-light {
  border: 1px solid rgba(0, 105, 103, 0.22);
  color: var(--apt-green-dark);
}

.apt-section {
  padding: 104px 0;
}

.apt-location-reference,
.apt-overview-reference,
.apt-layout-reference,
.apt-dongho-reference,
.apt-faq-reference {
  background: #ffffff !important;
}

.apt-plans-reference,
.apt-sales-reference,
.apt-consult-reference {
  background: var(--apt-soft) !important;
}

.apt-section-inner {
  width: min(1180px, calc(100% - 32px));
}

.apt-centered-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.apt-section-label {
  color: var(--apt-green);
  letter-spacing: 0;
}

.apt-centered-heading h2,
.apt-section h2 {
  color: #172221;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.22;
  font-weight: 900;
}

.apt-centered-heading p {
  margin: 18px 0 0;
  color: #65706f;
  line-height: 1.8;
}

.apt-map-visual,
.apt-overview-image {
  overflow: hidden;
  border-radius: 0;
  background: #eef0ec;
}

.apt-map-visual {
  aspect-ratio: 16 / 8.5;
  margin: 0 auto 86px;
  border: 1px solid #d9dfdc;
}

.apt-life-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px 64px;
  max-width: 980px;
  margin: 0 auto;
}

.apt-life-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.apt-life-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8ece8;
}

.apt-life-image .apt-image-fallback {
  min-height: 100%;
}

.apt-life-copy span {
  display: block;
  margin-bottom: -4px;
  color: rgba(0, 0, 0, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 8vw, 56px);
  line-height: 0.9;
}

.apt-life-copy h3 {
  margin: 18px 0 8px;
  color: #1f2d2b;
  font-size: 20px;
}

.apt-life-copy p {
  margin: 0;
  color: #66706e;
  line-height: 1.7;
}

.apt-overview-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.apt-overview-image {
  aspect-ratio: 16 / 9;
}

.apt-overview-reference .apt-spec-grid {
  border-top: 2px solid var(--apt-green);
}

.apt-overview-reference .apt-spec-grid span {
  color: var(--apt-green);
}

.apt-tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1000px;
  margin: 0 auto 30px;
  gap: 0;
  border: 1px solid #e5e9e6;
  background: #fff;
}

.apt-tab {
  min-height: 48px;
  border: 0;
  border-right: 1px solid #e5e9e6;
  border-radius: 0;
  color: #4c5b59;
  background: #fff;
}

.apt-tab:last-child {
  border-right: 0;
}

.apt-tab.is-active {
  color: #fff;
}

.apt-tab-panel {
  max-width: 1000px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.apt-plan-summary h3 {
  color: var(--apt-green-dark);
  font-size: clamp(34px, 7vw, 58px);
}

.apt-plan-area {
  color: var(--apt-green);
}

.apt-plan-image-wrap,
.apt-wide-visual {
  border-radius: 0;
  box-shadow: none;
  background: #eef0ec;
}

.apt-wide-visual {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #dce2df;
}

.apt-sales-reference .apt-condition {
  background: var(--apt-green-dark);
  border-radius: 0;
}

.apt-faq-reference .apt-section-label {
  text-align: left;
}

.apt-faq-list summary {
  color: #1c2a28;
}

.apt-modelhouse-info .apt-lead {
  color: #65706f;
}

.apt-contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
  padding-top: 26px;
  border-top: 2px solid var(--apt-green);
}

.apt-modelhouse-map {
  overflow: hidden;
  margin-top: 28px;
  aspect-ratio: 16 / 9;
  background: #eef1ee;
}

.apt-modelhouse-map .apt-section-image,
.apt-modelhouse-map .apt-image-fallback {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.apt-modelhouse-notice {
  margin: 18px 0 0;
  color: #65706f;
  font-size: 14px;
  line-height: 1.7;
}

.apt-contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--apt-green);
  font-size: 13px;
  font-weight: 900;
}

.apt-contact-list strong,
.apt-contact-list a {
  color: #172221;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.apt-consult-reference .apt-lead-form {
  border-radius: 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

.apt-consult-reference .apt-lead-form input,
.apt-consult-reference .apt-lead-form textarea {
  border-radius: 0;
  background: #fff;
}

@media (min-width: 760px) {
  .apt-life-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apt-life-card:nth-child(even) {
    margin-top: 64px;
  }

  .apt-overview-board {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .apt-tab-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .apt-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apt-tab-panel {
    grid-template-columns: 0.65fr 1.35fr;
  }
}

@media (max-width: 899px) {
  .apt-site-header {
    position: sticky;
  }
	.apt-site-logo img {
  height: 60px !important;
  width: auto !important;
}

  .apt-header-phone span {
    display: none;
  }

  .apt-hero-reference,
  .apt-hero-reference .apt-hero-content {
    min-height: 620px;
  }
}

/* Dropdown navigation, privacy consent, and legal footer */
.apt-nav {
  align-items: stretch;
}

.apt-nav > a,
.apt-nav-toggle {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  color: #142322;
  font-size: 18px;
  font-weight: 900;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.apt-nav-home {
  color: #001c33 !important;
}

.apt-nav-item {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.apt-nav-toggle {
  gap: 9px;
  padding: 0;
}

.apt-nav-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.apt-nav-item:hover .apt-nav-toggle::after,
.apt-nav-item.is-open .apt-nav-toggle::after {
  transform: rotate(225deg);
}

.apt-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 80;
  min-width: 160px;
  padding: 12px 0;
  background: #fff;
  border: 1px solid #e5e9e6;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.apt-nav-item:hover .apt-nav-dropdown,
.apt-nav-item.is-open .apt-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.apt-nav-dropdown a {
  display: block;
  padding: 11px 18px;
  color: #283735;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.apt-nav-dropdown a:hover {
  color: var(--apt-green);
  background: #f3f7f5;
}

.apt-privacy-box {
  padding: 16px;
  border: 1px solid #dce4e1;
  background: #f8faf8;
}

.apt-privacy-box strong {
  display: block;
  margin-bottom: 8px;
  color: #152321;
  font-size: 14px;
  font-weight: 900;
}

.apt-privacy-box p {
  margin: 0;
  max-height: 96px;
  overflow: auto;
  color: #5a6664;
  font-size: 12px;
  line-height: 1.7;
}

.apt-footer {
  padding: 70px 0 80px;
  background: #fff;
  color: #9aa0a0;
  text-align: center;
}

.apt-footer-inner {
  max-width: 980px;
}

.apt-footer-notice {
  margin: 0 0 22px;
  color: #a4aaaa;
  font-size: 12px;
}

.apt-footer-meta,
.apt-footer-copy {
  margin: 0;
  color: #9ba1a1;
  font-size: 15px;
  line-height: 1.7;
}

.apt-footer-meta span {
  padding: 0 8px;
  color: #c1c5c5;
}

@media (max-width: 899px) {
  .apt-nav {
    display: none;
  }

  .apt-brand {
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .apt-footer-meta span {
    display: none;
  }

  .apt-footer-meta {
    display: grid;
    gap: 3px;
  }
}

/* Header refinement to match the clean reference navigation */
.apt-site-header {
  background: #ffffff;
  border-bottom: 1px solid #2f628d;
  color: #07151f;
}

.apt-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  color: #07151f;
}

.apt-header-inner {
  width: min(100%, 1800px);
  min-height: 102px;
  padding: 0 52px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 54px;
}

.apt-brand {
  justify-self: start;
  color: #07151f;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.apt-nav {
  justify-self: end;
  gap: 52px;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.apt-nav > a,
.apt-nav-toggle {
  min-height: 102px;
  color: #07151f;
  font-size: 19px;
  font-weight: 800;
}

.apt-nav-home {
  color: #07151f !important;
}

.apt-nav-toggle::after {
  width: 8px;
  height: 8px;
  border-width: 2px;
}

.apt-header-phone {
  justify-self: end;
  gap: 8px;
  color: #006967;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.apt-header-phone span {
  display: none;
}

.apt-header-phone::before {
  content: "☎";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #006967;
  font-size: 25px;
  line-height: 1;
}

.apt-header-phone strong {
  color: #006967;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.apt-nav-dropdown {
  top: calc(100% - 14px);
}

@media (max-width: 1100px) {
  .apt-header-inner {
    padding: 0 24px;
    gap: 22px;
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .apt-nav {
    display: none;
  }

  .apt-brand {
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 21px;
  }

  .apt-header-phone strong {
    font-size: 22px;
  }
}

.apt-subpage-hero {
  padding: 178px 0 78px;
  background: linear-gradient(135deg, #f5f8f7, #dbe9e7);
  border-bottom: 1px solid #dbe5e2;
}

.apt-subpage-hero h1 {
  margin: 0;
  color: #07151f;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.08;
  font-weight: 900;
}

.apt-subpage-content {
  padding: 86px 0 110px;
  background: #fff;
}

.apt-subpage-inner {
  max-width: 1000px;
  color: #263331;
  font-size: 18px;
  line-height: 1.8;
}

.apt-subpage-inner h2 {
  margin: 0 0 22px;
  color: #07151f;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.2;
}

.apt-subpage-inner h3 {
  margin: 42px 0 14px;
  color: var(--apt-green-dark);
  font-size: 26px;
}

.apt-subpage-inner p {
  margin: 0 0 18px;
}

/* Dedicated sub page templates */
.apt-page-hero {
  margin-top: 102px;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #005b58, #004543);
  color: #fff;
}

.apt-page-hero-inner {
  position: relative;
  width: min(100%, 1800px);
  min-height: 220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 44px 28px 0;
}

.apt-page-hero-copy {
  position: relative;
  z-index: 2;
}

.apt-page-hero-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #071513;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.apt-page-hero-copy strong {
  display: block;
  max-width: 520px;
  font-size: clamp(28px, 7vw, 46px);
  line-height: 1.22;
  font-weight: 500;
}

.apt-page-hero-title {
  position: relative;
  z-index: 2;
  align-self: center;
  text-align: left;
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 4px;
}

.apt-page-hero-title em,
.apt-page-hero-title b {
  display: block;
  font-style: normal;
  font-weight: 600;
}

.apt-page-hero-visual {
  position: relative;
  width: min(420px, 86vw);
  aspect-ratio: 1.55 / 1;
  justify-self: end;
  align-self: end;
  overflow: hidden;
  border: 12px solid rgba(218, 203, 181, 0.9);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: #d9e7e4;
}

.apt-page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apt-page-hero-visual .apt-image-fallback {
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(0, 83, 78, 0.18) 0 1px, transparent 1px 46px),
    linear-gradient(135deg, #dcebea, #93b9b5);
}

.apt-page-section {
  padding: 96px 0 120px;
  background: #fff;
}

.apt-page-inner {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.apt-page-heading {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.apt-page-heading p {
  position: relative;
  margin: 0 0 34px;
  color: var(--apt-green);
  font-size: 18px;
  font-weight: 900;
}

.apt-page-heading p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--apt-green) 50%, #817d76 50%);
  transform: translateX(-50%);
}

.apt-page-heading h1 {
  margin: 0;
  color: var(--apt-green-dark);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.32;
  font-weight: 900;
}

.apt-page-heading span {
  display: block;
  margin: 22px auto 0;
  max-width: 740px;
  color: #5f6967;
  font-size: 16px;
  line-height: 1.8;
}

.apt-page-main-image {
  overflow: hidden;
  width: min(100%, 960px);
  margin: 0 auto 58px;
  border: 1px solid #e0e4e1;
  background: #f3f5f2;
}

.apt-page-full-image,
.apt-page-main-image .apt-image-fallback {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.apt-page-map-large .apt-page-full-image,
.apt-page-map-large .apt-image-fallback {
  min-height: 420px;
}

.apt-page-plan-image .apt-page-full-image,
.apt-page-plan-image .apt-image-fallback {
  min-height: 640px;
  object-fit: contain;
  background-color: #f5f6f3;
}

.apt-page-info-table {
  width: min(100%, 960px);
  margin: 0 auto 56px;
  border-collapse: collapse;
  border-top: 2px solid #1c2220;
  color: #555f5d;
  font-size: 18px;
}

.apt-page-info-table th,
.apt-page-info-table td {
  padding: 22px 28px;
  border-bottom: 1px solid #d9dedb;
}

.apt-page-info-table th {
  width: 210px;
  color: #253130;
  font-weight: 900;
  text-align: center;
  border-right: 1px solid #d9dedb;
}

.apt-page-notice {
  width: min(100%, 960px);
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 32px;
  background: #f5f5f3;
  color: #8b918f;
}

.apt-page-notice strong {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d2d6d4;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
}

.apt-page-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.apt-page-legend {
  width: min(100%, 960px);
  margin: -58px auto 30px;
  display: grid;
  grid-template-columns: 180px 1fr;
  background: #f7f8f5;
  border: 1px solid #e2e5e2;
}

.apt-page-legend strong {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: var(--apt-green);
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

.apt-page-legend p {
  margin: 0;
  padding: 20px 24px 0;
  color: #1d2b29;
  font-weight: 900;
}

.apt-page-legend ul {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px 24px 24px;
  list-style: none;
  color: #55615f;
  font-size: 14px;
}

.apt-page-legend li::before {
  content: "";
  width: 18px;
  height: 12px;
  display: inline-block;
  margin-right: 8px;
  background: #7bcbd9;
  border: 1px solid rgba(0, 0, 0, 0.12);
  vertical-align: -1px;
}

.apt-page-legend li:nth-child(2)::before {
  background: #f1a45f;
}

.apt-page-legend li:nth-child(3)::before {
  background: #e4ce7a;
}

.apt-page-legend li:nth-child(4)::before {
  background: #b99ccc;
}

.apt-page-premium-grid {
  width: min(100%, 920px);
  margin: 80px auto 110px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}

.apt-page-premium {
  position: relative;
}

.apt-page-premium:nth-child(even) {
  justify-self: end;
}

.apt-page-premium span {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 0 -16px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 10vw, 72px);
  line-height: 0.85;
}

.apt-page-premium > div {
  overflow: hidden;
  width: min(100%, 460px);
  aspect-ratio: 16 / 9;
  background: #eef0ec;
}

.apt-page-premium-image,
.apt-page-premium .apt-image-fallback {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.apt-page-premium h2 {
  margin: 22px 0 10px;
  color: #192522;
  font-size: 22px;
}

.apt-page-premium p {
  margin: 0;
  max-width: 440px;
  color: #66716f;
  line-height: 1.75;
}

.apt-page-floor-tabs {
  margin-bottom: 110px;
}

.apt-page-tab-list {
  width: min(100%, 860px);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.apt-page-tab {
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  background: #f2f2f2;
  color: #1f2927;
  font-weight: 800;
  cursor: pointer;
}

.apt-page-tab.is-active {
  background: var(--apt-green);
  color: #fff;
}

.apt-page-floor-panel {
  width: min(100%, 860px);
  margin: 0 auto;
}

.apt-page-floor-panel[hidden] {
  display: none;
}

.apt-page-floor-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 0 0 30px;
  border-top: 1px solid #1b2422;
}

.apt-page-floor-type {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--apt-green);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.apt-page-floor-type strong {
  font-size: clamp(58px, 16vw, 86px);
  line-height: 1;
  font-weight: 900;
}

.apt-page-floor-type span {
  margin-top: 14px;
  padding: 8px 26px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-weight: 900;
}

.apt-page-floor-summary table {
  width: 100%;
  align-self: center;
  border-collapse: collapse;
  color: #5e6866;
}

.apt-page-floor-summary th,
.apt-page-floor-summary td {
  padding: 13px 16px;
  border-bottom: 1px solid #dce1de;
  text-align: left;
}

.apt-page-floor-summary th {
  width: 45%;
  color: #1d2826;
}

.apt-page-floor-badge {
  width: max-content;
  margin: 58px auto 16px;
  padding: 8px 28px;
  border-radius: 999px;
  background: #aab2b0;
  color: #fff;
  font-weight: 900;
}

.apt-page-floor-badge + .apt-page-floor-image-large {
  margin-top: 0;
}

.apt-page-floor-image {
  width: min(100%, 640px);
  margin: 0 auto;
  background: #f5f5f2;
}

.apt-page-floor-image-large {
  width: min(100%, 760px);
}

.apt-page-floor-image .apt-page-full-image,
.apt-page-floor-image .apt-image-fallback {
  min-height: 360px;
  object-fit: contain;
}

.apt-page-reservation {
  width: min(100%, 960px);
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: start;
}

.apt-page-map-image,
.apt-page-map .apt-image-fallback {
  width: 100%;
  min-height: 190px;
  object-fit: cover;
  background-color: #eef1ee;
}

.apt-page-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
  color: #172321;
}

.apt-page-contact div {
  padding-bottom: 18px;
  border-bottom: 1px solid #dbe1de;
}

.apt-page-contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--apt-green);
  font-size: 13px;
  font-weight: 900;
}

.apt-page-contact strong,
.apt-page-contact a {
  color: #1d2927;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.65;
}

.apt-page-form {
  display: grid;
  gap: 14px;
}

.apt-page-form h2 {
  position: relative;
  margin: 0 0 18px;
  padding-top: 20px;
  color: #172321;
  font-size: 20px;
}

.apt-page-form-notice {
  margin: -8px 0 8px;
  color: #66716f;
  font-size: 14px;
  line-height: 1.7;
}

.apt-page-form h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--apt-green);
}

.apt-page-form label {
  display: grid;
  gap: 7px;
  color: #5b6664;
  font-size: 13px;
  font-weight: 700;
}

.apt-page-form input,
.apt-page-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  background: #f8f8f7;
  color: #172321;
}

.apt-page-form textarea {
  resize: vertical;
}

.apt-page-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.apt-page-privacy {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
}

.apt-page-privacy input {
  min-height: 18px;
}

.apt-page-form .apt-button {
  width: max-content;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
}

.apt-page-modelhouse .apt-page-reservation {
  margin-top: 0;
}

@media (min-width: 760px) {
  .apt-page-hero-inner {
    grid-template-columns: 1fr 0.8fr 1.1fr;
    min-height: 290px;
    padding: 58px 72px 0;
    align-items: center;
  }

  .apt-page-hero-title {
    text-align: center;
  }

  .apt-page-hero-visual {
    width: min(520px, 36vw);
  }

  .apt-page-tab-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .apt-page-floor-summary {
    grid-template-columns: 300px 1fr;
    align-items: center;
  }

  .apt-page-reservation {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
  }

  .apt-page-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .apt-page-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apt-page-premium:nth-child(even) {
    margin-top: 86px;
  }
}

@media (max-width: 899px) {
  .apt-page-hero {
    margin-top: 0;
  }

  .apt-page-section {
    padding: 72px 0 96px;
  }

  .apt-page-info-table {
    font-size: 15px;
  }

  .apt-page-info-table th,
  .apt-page-info-table td {
    padding: 16px 12px;
  }

  .apt-page-info-table th {
    width: 112px;
  }

  .apt-page-full-image,
  .apt-page-main-image .apt-image-fallback,
  .apt-page-map-large .apt-page-full-image,
  .apt-page-map-large .apt-image-fallback {
    min-height: 260px;
  }

  .apt-page-plan-image .apt-page-full-image,
  .apt-page-plan-image .apt-image-fallback {
    min-height: 430px;
  }

  .apt-page-legend {
    grid-template-columns: 1fr;
    margin-top: -58px;
  }

  .apt-page-legend ul {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .apt-page-hero-inner {
    padding: 36px 18px 0;
  }

  .apt-page-hero-title {
    letter-spacing: 2px;
  }

  .apt-page-notice {
    grid-template-columns: 1fr;
  }

  .apt-page-floor-type {
    min-height: 180px;
  }
}

.apt-insight-header .apt-header-inner {
  max-width: 1280px;
}

.apt-insight-brand span {
  color: #111827;
}

.apt-insight-nav {
  gap: 22px;
  justify-content: flex-end;
}

.apt-insight-nav a {
  white-space: nowrap;
}

.apt-insight-main {
  background: #fff;
}

.apt-insight-hero {
  padding: 110px 0 68px;
  background: #f5f7f7;
  border-bottom: 1px solid #e5e7eb;
}

.apt-insight-hero p {
  margin: 0 0 14px;
  color: #006b66;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.apt-insight-hero h1 {
  margin: 0;
  max-width: 840px;
  color: #111827;
  font-size: 54px;
  line-height: 1.08;
}

.apt-insight-hero span {
  display: block;
  max-width: 720px;
  margin-top: 18px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.apt-insight-search {
  display: flex;
  max-width: 640px;
  margin-top: 34px;
  border: 1px solid #d1d5db;
  background: #fff;
}

.apt-insight-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 18px 20px;
  font: inherit;
}

.apt-insight-search button {
  border: 0;
  padding: 0 26px;
  background: #006b66;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.apt-insight-categories {
  border-bottom: 1px solid #e5e7eb;
}

.apt-insight-categories .apt-section-inner {
  display: flex;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  overflow-x: auto;
}

.apt-insight-categories a,
.apt-insight-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  color: #006b66;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.apt-insight-list,
.apt-insight-related {
  padding: 72px 0 96px;
}

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

.apt-insight-card {
  border: 1px solid #e5e7eb;
  background: #fff;
}

.apt-insight-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #edf3f2, #dce8e6);
}

.apt-insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apt-insight-card-media span {
  display: block;
  width: 100%;
  height: 100%;
}

.apt-insight-card-body {
  padding: 24px;
}

.apt-insight-card h2 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.apt-insight-card h2 a {
  color: #111827;
  text-decoration: none;
}

.apt-insight-card p {
  color: #4b5563;
  line-height: 1.7;
}

.apt-insight-meta,
.apt-insight-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6b7280;
  font-size: 14px;
}

.apt-insight-empty {
  color: #6b7280;
}

.apt-calculator-search-results {
  margin: 0 0 56px;
  padding: 32px;
  border: 1px solid #b9d8cc;
  background: #f2f8f5;
}

.apt-calculator-search-heading {
  margin-bottom: 24px;
}

.apt-calculator-search-heading p {
  margin: 0 0 8px;
  color: #007a55;
  font-size: 14px;
  font-weight: 700;
}

.apt-calculator-search-heading h2 {
  margin: 0 0 8px;
  color: #102a25;
  font-size: 28px;
}

.apt-calculator-search-heading span {
  color: #48635b;
}

.apt-calculator-search-card {
  border-color: #cfe0d9;
}

.apt-calculator-search-card .apt-insight-card-media {
  background: #dbeee6;
}

.apt-calculator-search-card .apt-insight-card-media span::after {
  content: 'CALCULATOR';
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #147253;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.apt-calculator-search-card h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.apt-calculator-search-card h3 a,
.apt-calculator-search-link {
  color: #102a25;
  text-decoration: none;
}

.apt-calculator-search-link {
  display: inline-block;
  margin-top: 12px;
  color: #007a55;
  font-weight: 700;
}

.apt-insight-article-header {
  padding: 92px 0 46px;
  background: #f8faf9;
  border-bottom: 1px solid #e5e7eb;
}

.apt-insight-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #6b7280;
  font-size: 14px;
}

.apt-insight-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.apt-insight-article h1 {
  max-width: 900px;
  margin: 18px 0 18px;
  color: #111827;
  font-size: 52px;
  line-height: 1.14;
}

.apt-insight-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.apt-insight-share a,
.apt-insight-share button {
  border: 1px solid #d1d5db;
  padding: 10px 14px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.apt-insight-featured {
  margin: 48px 0 0;
}

.apt-insight-featured img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.apt-insight-article-layout {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 62px;
  padding-bottom: 80px;
}

.apt-insight-toc {
  position: sticky;
  top: 92px;
  border: 1px solid #e5e7eb;
  padding: 20px;
}

.apt-insight-toc strong {
  display: block;
  margin-bottom: 12px;
}

.apt-insight-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.apt-insight-toc .is-level-3 {
  margin-left: 12px;
}

.apt-insight-toc a {
  color: #374151;
  text-decoration: none;
}

.apt-insight-content {
  color: #1f2937;
  font-size: 18px;
  line-height: 1.85;
}

.apt-insight-content h2,
.apt-insight-content h3 {
  margin-top: 44px;
  color: #111827;
  line-height: 1.3;
}

.apt-insight-content img {
  max-width: 100%;
  height: auto;
}

/* JIPMAP GLOBAL PORTAL NAV START */
.apt-portal-tools{border-bottom:1px solid #e5e7eb;background:#fff}
.apt-portal-tools__inner{width:min(1180px,calc(100% - 32px));margin:0 auto;display:flex;align-items:center;gap:14px;min-height:50px;padding:7px 0}
.apt-portal-tools__title{color:#0f5f54;font-size:13px;white-space:nowrap}
.apt-portal-tools__links{display:flex;flex-wrap:wrap;gap:7px}
.apt-portal-tools a{display:inline-flex;align-items:center;min-height:30px;padding:5px 10px;border:1px solid #d7e4e0;border-radius:999px;background:#f8fbfa;color:#35514b;font-size:12px;font-weight:700;line-height:1.2}
.apt-portal-tools a:hover,.apt-portal-tools a:focus-visible{border-color:#74a99d;background:#edf7f4;color:#0d6557}
.apt-portal-tools__short{display:none}
.apt-insight-article-layout--portal{width:min(1180px,calc(100% - 32px));display:grid;grid-template-columns:220px minmax(0,760px);justify-content:center;gap:42px}
.apt-portal-sidebar{min-width:0}
.apt-portal-sidebar__nav{position:sticky;top:96px;border:1px solid #e1e8e5;border-radius:12px;background:#fbfdfc;padding:18px}
.apt-portal-sidebar__brand{margin:0 0 13px;color:#183d35;font-size:15px;font-weight:800}
.apt-portal-sidebar__heading{margin:20px 0 8px;color:#688078;font-size:11px;font-weight:800;letter-spacing:.08em}
.apt-portal-sidebar__nav>a,.apt-portal-sidebar__nav li a{display:flex;justify-content:space-between;gap:8px;padding:8px 0;color:#40554f;font-size:13px;line-height:1.35}
.apt-portal-sidebar__nav ul{margin:0;padding:0;list-style:none}
.apt-portal-sidebar__nav li a span{color:#879990;font-size:11px}
.apt-portal-sidebar__nav a:hover,.apt-portal-sidebar__nav a:focus-visible,.apt-portal-sidebar__nav a.is-current{color:#087860;font-weight:800}
.apt-portal-sidebar__home{padding:9px 10px!important;border-radius:8px;background:#edf7f4;color:#087860!important;font-weight:800}
.apt-portal-sidebar__toggle{display:none}
@media (max-width:900px){.apt-insight-article-layout--portal{width:min(760px,calc(100% - 32px));display:block}.apt-portal-sidebar{margin:0 0 18px}.apt-portal-sidebar__toggle{display:flex;width:100%;align-items:center;justify-content:center;min-height:44px;border:1px solid #cdded8;border-radius:9px;background:#fff;color:#0d6557;font-weight:800}.apt-portal-sidebar__nav{display:none;position:static;margin-top:8px}.apt-portal-sidebar__nav.is-open{display:block}.apt-portal-tools__inner{align-items:flex-start;flex-direction:column;gap:6px;padding:10px 0}.apt-portal-tools__links{flex-wrap:wrap;max-width:100%;overflow:visible;padding-bottom:2px}.apt-portal-tools a{flex:0 0 auto}.apt-portal-tools__full{display:none}.apt-portal-tools__short{display:inline}}
@media (min-width: 900px) {
  .apt-portal-tools {
    padding-top: 103px;
  }

  .apt-portal-tools + .apt-main .apt-page-hero {
    margin-top: 30px;
  }
}
@media (max-width: 899px) {
  .apt-insight-header .apt-header-inner,
.apt-insight-direct-single .apt-site-header .apt-header-inner {
    min-height: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 6px;
  }

  .apt-nav.apt-insight-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 4px 10px;
    overflow: visible;
  }

  .apt-nav.apt-insight-nav > a {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    white-space: nowrap;
  }
}
/* JIPMAP GLOBAL PORTAL NAV END */

.apt-insight-sources {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
}

.apt-insight-related h2 {
  margin: 0 0 24px;
  font-size: 30px;
}

.apt-insight-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 96px;
}

.apt-insight-post-nav a {
  display: block;
  border: 1px solid #e5e7eb;
  padding: 20px;
  color: #111827;
  font-weight: 800;
  text-decoration: none;
}

.apt-insight-footer .apt-footer-meta {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .apt-insight-nav {
    max-width: 70vw;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .apt-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apt-insight-article-layout {
    grid-template-columns: 1fr;
  }

  .apt-insight-toc {
    position: static;
  }
}

@media (max-width: 700px) {
  .apt-insight-header .apt-header-inner {
    align-items: flex-start;
    gap: 16px;
  }

  .apt-insight-nav {
    width: 100%;
    max-width: none;
  }

  .apt-insight-hero {
    padding: 76px 0 48px;
  }

  .apt-insight-hero h1,
  .apt-insight-article h1 {
    font-size: 36px;
  }

  .apt-insight-search {
    display: grid;
  }

  .apt-insight-search button {
    min-height: 52px;
  }

  .apt-insight-grid,
  .apt-insight-post-nav {
    grid-template-columns: 1fr;
  }
}

.apt-region-hero {
  padding: 136px 0 58px;
  background: #f4f8f7;
  border-bottom: 1px solid #dfe8e6;
}

.apt-region-hero p {
  margin: 0 0 12px;
  color: #006b66;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.apt-region-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #102526;
  font-size: 52px;
  line-height: 1.12;
}

.apt-region-hero span {
  display: block;
  max-width: 760px;
  margin-top: 18px;
  color: #465a5a;
  font-size: 18px;
  line-height: 1.75;
}

.apt-region-section {
  padding: 56px 0 92px;
}

.apt-region-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
}

.apt-region-main {
  display: grid;
  gap: 24px;
}

.apt-region-card,
.apt-region-side-box {
  border: 1px solid #dde7e5;
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.apt-region-card h2 {
  margin: 0 0 16px;
  color: #102526;
  font-size: 26px;
  line-height: 1.3;
}

.apt-region-card p {
  margin: 0;
  color: #425252;
  font-size: 17px;
  line-height: 1.85;
}

.apt-region-link-grid,
.apt-region-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.apt-region-link-grid a,
.apt-region-check-grid div,
.apt-region-list li {
  border-left: 4px solid #2f91bd;
  background: #f1f7f8;
  padding: 14px 15px;
  color: #102526;
  text-decoration: none;
}

.apt-region-link-grid a.is-current {
  border-left-color: #f39a18;
  background: #fff7ea;
}

.apt-region-link-grid strong,
.apt-region-check-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.apt-region-link-grid span,
.apt-region-check-grid span {
  color: #526465;
  font-size: 14px;
  line-height: 1.55;
}

.apt-region-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apt-region-side {
  align-self: start;
  position: sticky;
  top: 92px;
}

.apt-region-side-box {
  display: grid;
  gap: 8px;
}

.apt-region-side-box strong {
  display: block;
  margin-bottom: 8px;
  color: #102526;
  font-size: 18px;
}

.apt-region-side-box a {
  color: #006b66;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .apt-region-layout {
    grid-template-columns: 1fr;
  }

  .apt-region-side {
    position: static;
  }
}

@media (max-width: 700px) {
  .apt-region-hero {
    padding: 104px 0 44px;
  }

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

  .apt-region-card,
  .apt-region-side-box {
    padding: 22px;
  }
}

.apt-fee-hero {
  padding: 96px 0 70px;
  background: #f6faf9;
  border-bottom: 1px solid #d8e5e2;
}

.apt-fee-kicker {
  margin: 0 0 12px;
  color: #00675f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.apt-fee-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #052f2b;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.06;
}

.apt-fee-hero span {
  display: block;
  max-width: 680px;
  margin-top: 22px;
  color: #3f5754;
  font-size: 18px;
  line-height: 1.7;
}

.apt-fee-tool {
  padding: 64px 0;
  background: #fff;
}

.apt-fee-panel,
.apt-fee-results,
.apt-fee-detail {
  border: 1px solid #dfe7e5;
  border-radius: 8px;
  background: #fff;
}

.apt-fee-panel {
  padding: 28px;
}

.apt-fee-panel-head,
.apt-fee-result-head,
.apt-fee-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.apt-fee-panel-head h2,
.apt-fee-result-head h2,
.apt-fee-detail-head h2 {
  margin: 0;
  color: #10201f;
  font-size: 28px;
  line-height: 1.25;
}

.apt-fee-panel-head a,
.apt-fee-detail-head a {
  color: #00675f;
  font-weight: 800;
  text-decoration: none;
}

.apt-fee-cache-label {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 999px;
  background: #10201f;
  padding: 5px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.apt-fee-admin-notice {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 16px;
  border-left: 4px solid #00675f;
  background: #eef8f6;
  color: #24423e;
}

.apt-fee-search {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr) 150px;
  gap: 12px;
  margin-top: 28px;
}

.apt-fee-search label {
  display: grid;
  gap: 8px;
  color: #243331;
  font-size: 13px;
  font-weight: 800;
}

.apt-fee-search select,
.apt-fee-search input,
.apt-fee-search button {
  width: 100%;
  min-height: 52px;
  border-radius: 6px;
  font: inherit;
}

.apt-fee-search select,
.apt-fee-search input {
  border: 1px solid #cbd7d4;
  padding: 0 14px;
  background: #fff;
  color: #10201f;
}

.apt-fee-search button,
.apt-fee-table button {
  border: 0;
  background: #00675f;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.apt-fee-search button:hover,
.apt-fee-table button:hover {
  background: #004d47;
}

.apt-fee-helper {
  margin: 16px 0 0;
  color: #61716e;
  font-size: 14px;
  line-height: 1.7;
}

.apt-fee-results,
.apt-fee-detail {
  margin-top: 24px;
  padding: 28px;
}

.apt-fee-empty,
.apt-fee-error {
  display: grid;
  gap: 8px;
  color: #536562;
}

.apt-fee-empty strong,
.apt-fee-error strong {
  color: #10201f;
  font-size: 18px;
}

.apt-fee-error {
  border-left: 4px solid #b42318;
  padding: 16px;
  background: #fff4f2;
}

.apt-fee-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.apt-fee-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.apt-fee-table th,
.apt-fee-table td {
  padding: 16px 14px;
  border-top: 1px solid #e6ecea;
  text-align: left;
  vertical-align: middle;
}

.apt-fee-table th {
  color: #425451;
  font-size: 13px;
}

.apt-fee-table td strong,
.apt-fee-table td span {
  display: block;
}

.apt-fee-table td span {
  margin-top: 5px;
  color: #60706d;
  font-size: 14px;
}

.apt-fee-table button {
  min-width: 92px;
  min-height: 40px;
  border-radius: 5px;
  padding: 0 12px;
}

.apt-fee-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.apt-fee-detail-grid section {
  border-top: 2px solid #00675f;
  padding-top: 18px;
}

.apt-fee-detail-grid h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.apt-fee-api-group + .apt-fee-api-group {
  margin-top: 18px;
}

.apt-fee-operation {
  display: inline-flex;
  margin: 0 0 8px;
  border-radius: 999px;
  background: #eaf5f2;
  padding: 5px 10px;
  color: #00675f;
  font-size: 12px;
  font-weight: 800;
  word-break: break-all;
}

.apt-fee-detail-grid dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.apt-fee-detail-grid dl div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #e6ecea;
}

.apt-fee-detail-grid dt {
  color: #61716e;
  font-weight: 800;
}

.apt-fee-detail-grid dd {
  margin: 0;
  color: #10201f;
}

.apt-fee-guide {
  padding: 64px 0 96px;
  background: #f7f8f6;
}

.apt-fee-guide h2 {
  margin: 0 0 24px;
  color: #10201f;
  font-size: 30px;
}

.apt-fee-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.apt-fee-guide-grid div {
  border-top: 2px solid #00675f;
  padding-top: 18px;
}

.apt-fee-guide-grid strong {
  color: #10201f;
  font-size: 18px;
}

.apt-fee-guide-grid p {
  margin: 10px 0 0;
  color: #536562;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .apt-fee-search,
  .apt-fee-detail-grid,
  .apt-fee-guide-grid {
    grid-template-columns: 1fr;
  }

  .apt-fee-panel-head,
  .apt-fee-result-head,
  .apt-fee-detail-head {
    display: grid;
  }
}

@media (max-width: 560px) {
  .apt-fee-hero {
    padding: 72px 0 52px;
  }

  .apt-fee-panel,
  .apt-fee-results,
  .apt-fee-detail {
    padding: 20px;
  }

  .apt-fee-detail-grid dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Calculator pages */
.jip-calc-hero {
  padding: 152px 0 72px;
  color: #fff;
  background: #153b32;
}

.jip-calc-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.jip-calc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.jip-calc-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.jip-calc-eyebrow { margin: 0 0 12px; color: #42d393; font-size: 14px; font-weight: 800; }
.jip-calc-hero h1 { margin: 0; font-size: clamp(38px, 5vw, 56px); line-height: 1.15; }
.jip-calc-hero > .jip-calc-shell > p:last-child { max-width: 640px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.86); font-size: 18px; line-height: 1.7; }
.jip-calc-section { padding: 72px 0; background: #fff; }
.jip-calc-section:nth-of-type(even) { background: #f5f8f6; }
.jip-calc-intro { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.jip-calc-intro h2, .jip-calc-reading h2, .jip-calc-hub-heading h2 { margin: 0; color: #142821; font-size: 28px; line-height: 1.35; }
.jip-calc-intro p, .jip-calc-hub-heading p { margin: 10px 0 0; color: #52635d; line-height: 1.7; }
.jip-percent-start { display: grid; grid-template-columns: minmax(190px, 0.8fr) minmax(0, 2.2fr); gap: 26px; margin: 0 0 22px; padding: 24px 26px; border: 1px solid #cde8dc; border-left: 4px solid #24a86f; background: #eef8f2; }
.jip-percent-start h3 { margin: 4px 0 0; color: #142821; font-size: 22px; line-height: 1.35; }
.jip-percent-start-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.jip-percent-start-steps li { color: #465851; font-size: 14px; line-height: 1.65; }
.jip-percent-start-steps strong { display: block; margin-bottom: 5px; color: #153b32; font-size: 15px; }
.jip-percent-start-steps span { display: block; }
.jip-percent-start-tip { grid-column: 1 / -1; margin: 0; padding-top: 16px; border-top: 1px solid #cde8dc; color: #315447; font-size: 14px; line-height: 1.65; }

.jip-percent-tool { overflow: hidden; border: 1px solid #d8e2dc; border-radius: 8px; background: #fff; box-shadow: 0 16px 44px rgba(21, 59, 50, 0.09); }
.jip-percent-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid #d8e2dc; background: #f5f8f6; }
.jip-percent-tabs button { min-height: 58px; border: 0; border-right: 1px solid #d8e2dc; background: transparent; color: #52635d; cursor: pointer; font-weight: 800; }
.jip-percent-tabs button:last-child { border-right: 0; }
.jip-percent-tabs button.is-active { color: #fff; background: #187350; }
.jip-percent-panel { padding: 32px; }
.jip-percent-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.jip-percent-form-grid-change { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jip-percent-form-grid label { display: grid; gap: 9px; color: #243b31; font-size: 14px; font-weight: 800; }
.jip-percent-form-grid input, .jip-percent-form-grid select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid #bfcfc6; border-radius: 6px; color: #142821; background: #fff; outline: none; }
.jip-percent-form-grid input:focus, .jip-percent-form-grid select:focus { border-color: #187350; box-shadow: 0 0 0 3px rgba(24, 115, 80, 0.14); }
.jip-percent-formula { margin: 18px 0 0; color: #60726a; font-size: 14px; }
.jip-percent-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.jip-calc-primary, .jip-calc-reset, .jip-calc-outline { min-height: 48px; padding: 0 19px; border-radius: 6px; font-weight: 800; cursor: pointer; }
.jip-calc-primary { border: 1px solid #187350; background: #187350; color: #fff; }
.jip-calc-primary:hover { background: #115f41; }
.jip-calc-reset { border: 1px solid #bfcfc6; background: #fff; color: #30453a; }
.jip-percent-result { margin: 0 32px 32px; padding: 26px; border-left: 4px solid #42d393; background: #eefaf3; }
.jip-percent-result-label { margin: 0 0 8px; color: #187350; font-weight: 800; }
.jip-percent-result strong { display: block; color: #142821; font-size: 24px; line-height: 1.35; }
.jip-percent-result p:last-child { margin: 10px 0 0; color: #52635d; line-height: 1.6; }

.jip-calc-reading { color: #31453b; font-size: 16px; line-height: 1.85; }
.jip-calc-reading > h2 { margin-top: 56px; }
.jip-calc-reading > h2:first-child { margin-top: 0; }
.jip-calc-reading > p { margin: 18px 0 0; }
.jip-calc-guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.jip-calc-guide-grid article { padding: 24px; border-top: 3px solid #42d393; background: #f5f8f6; }
.jip-calc-guide-grid h3 { margin: 0; color: #142821; font-size: 18px; }
.jip-calc-guide-grid p { margin: 12px 0 0; }
.jip-calc-example { margin-top: 16px; padding: 22px 24px; border: 1px solid #d8e2dc; background: #fff; }
.jip-calc-example p { margin: 5px 0; }
.jip-calc-notes { margin: 18px 0 0; padding-left: 22px; }
.jip-calc-notes li + li { margin-top: 8px; }
.jip-calc-faq { margin-top: 18px; border-top: 1px solid #d8e2dc; }
.jip-calc-faq details { border-bottom: 1px solid #d8e2dc; }
.jip-calc-faq summary { padding: 18px 30px 18px 0; color: #142821; cursor: pointer; font-weight: 800; }
.jip-calc-faq p { margin: 0; padding: 0 0 18px; }
.jip-calc-related { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-top: 54px; padding: 28px; background: #153b32; color: #fff; }
.jip-calc-related h2 { margin: 0; color: #fff; }
.jip-calc-related .jip-calc-eyebrow { color: #7df0b6; }
.jip-calc-related p:last-child { margin: 10px 0 0; color: rgba(255,255,255,.82); }
.jip-calc-outline { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid #fff; color: #fff; }
.jip-calc-outline:hover { color: #153b32; background: #fff; }
.jip-calc-updated { margin: 28px 0 0; color: #75857e; font-size: 14px; }

.jip-calc-hub-hero { padding-bottom: 80px; }
.jip-calc-hub-heading { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.jip-calc-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.jip-calc-card { display: flex; min-height: 250px; flex-direction: column; padding: 24px; border: 1px solid #d8e2dc; background: #fff; transition: transform 160ms ease, box-shadow 160ms ease; }
.jip-calc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(21, 59, 50, .12); }
.jip-calc-card span { color: #187350; font-size: 13px; font-weight: 800; }
.jip-calc-card h3 { margin: 12px 0 0; color: #142821; font-size: 21px; }
.jip-calc-card p { margin: 12px 0 0; color: #52635d; line-height: 1.7; }
.jip-calc-card b { margin-top: auto; padding-top: 22px; color: #187350; }
.jip-calc-category-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.jip-calc-category-list span { padding: 8px 12px; border: 1px solid #d8e2dc; border-radius: 999px; color: #52635d; font-size: 14px; }

@media (max-width: 760px) {
  .jip-calc-hero { padding: 128px 0 54px; }
  .jip-percent-tabs { grid-template-columns: 1fr; }
  .jip-percent-tabs button { border-right: 0; border-bottom: 1px solid #d8e2dc; }
  .jip-percent-tabs button:last-child { border-bottom: 0; }
  .jip-percent-start, .jip-percent-start-steps, .jip-percent-form-grid, .jip-percent-form-grid-change, .jip-calc-guide-grid, .jip-calc-card-grid { grid-template-columns: 1fr; }
  .jip-percent-panel, .jip-percent-result { padding: 22px; }
  .jip-percent-result { margin: 0 22px 22px; }
  .jip-calc-related { align-items: flex-start; flex-direction: column; }
}
