:root {
  --white: #ffffff;
  --bg: #f4f6f8;
  --text: #0f1419;
  --text-secondary: #5c6573;
  --text-tertiary: #8b939e;
  --border: #e8ebef;
  --border-strong: #d1d6dc;
  --primary: #1a56db;
  --primary-hover: #1446b8;
  --primary-soft: #eff4ff;
  --danger: #dc2626;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-xs: 0 1px 2px rgba(15, 20, 25, 0.04);
  --shadow-sm: 0 4px 12px rgba(15, 20, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 20, 25, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 20, 25, 0.12);
  --font: "Inter", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 64px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.wrap {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); display: grid; place-items: center;
}
.logo-icon svg {
  width: 18px; height: 18px; stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.logo-text strong {
  display: block; font-size: 15px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2;
}
.logo-text span { font-size: 11px; color: var(--text-tertiary); font-weight: 500; }
.gnb { display: flex; align-items: center; gap: 32px; }
.gnb a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.15s;
}
.gnb a:hover, .gnb a.is-active { color: var(--text); }
.header-cta { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 40px; padding: 0 18px; border-radius: 10px; border: none;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-ghost {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg); color: var(--text); }
.btn-lg { height: 48px; padding: 0 24px; font-size: 15px; border-radius: var(--radius); }
.btn-block { width: 100%; }

.menu-btn {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--white); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-btn span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sub page hero */
.page-hero {
  padding: 48px 0 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero .wrap {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-tertiary); margin-bottom: 12px;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-tertiary); }
.page-hero h1 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.25;
}
.page-hero .lead {
  margin-top: 10px; font-size: 15px; color: var(--text-secondary);
  max-width: 560px; line-height: 1.65;
}
.page-hero-aside {
  padding: 20px 24px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  max-width: 280px; box-shadow: var(--shadow-sm);
}
.page-hero-aside strong {
  display: block; font-size: 28px; font-weight: 700;
  color: var(--primary); letter-spacing: -0.02em;
}
.page-hero-aside span { font-size: 13px; color: var(--text-tertiary); }

.section-label {
  font-size: 12px; font-weight: 600; color: var(--primary);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.section { padding: 64px 0; }
.section-gray { background: var(--bg); }

/* Forms */
.field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-grid { display: grid; gap: 14px; }
.form-hint { font-size: 12px; color: var(--text-tertiary); line-height: 1.5; }

/* Listing layout */
.listing-page { padding: 40px 0 80px; }
.listing-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 32px;
  align-items: start;
}
.filter-panel {
  position: sticky; top: calc(var(--header-h) + 24px);
  padding: 24px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.filter-panel h2 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.filter-panel > p {
  font-size: 13px; color: var(--text-secondary);
  margin-bottom: 20px; line-height: 1.5;
}
.filter-group { margin-bottom: 20px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h3 {
  font-size: 12px; font-weight: 600; color: var(--text-tertiary);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 6px; }
.chip,
a.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  cursor: pointer; transition: all 0.12s;
  text-decoration: none;
}
.chip:hover { border-color: var(--border-strong); color: var(--text); }
.chip.is-active {
  background: var(--primary-soft); border-color: var(--primary);
  color: var(--primary); font-weight: 600;
}
.list-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.list-toolbar h2 { font-size: 18px; font-weight: 600; }
.list-toolbar p { font-size: 14px; color: var(--text-tertiary); }
.sort-select {
  height: 40px; padding: 0 12px; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: 14px; background: var(--white);
}

/* Property grid cards */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prop-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; transition: box-shadow 0.2s, transform 0.2s;
}
.prop-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.prop-card-media {
  position: relative; aspect-ratio: 4/3; background: var(--bg);
}
.prop-card-media img { width: 100%; height: 100%; object-fit: cover; }
.prop-card-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(15, 20, 25, 0.72); backdrop-filter: blur(4px);
}
.prop-card-tag.hot { background: var(--danger); }
.prop-card-body { padding: 16px 18px 18px; }
.prop-card-price {
  font-size: 17px; font-weight: 700; color: var(--primary);
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.prop-card-body h3 {
  font-size: 15px; font-weight: 600; line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.prop-card-addr {
  font-size: 13px; color: var(--text-tertiary);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.prop-card-meta {
  display: flex; gap: 12px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border); font-size: 12px; color: var(--text-secondary);
}

/* Detail page */
.detail-hero {
  padding: 32px 0 0;
  background: var(--bg);
}
.detail-hero .wrap { padding-bottom: 24px; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.detail-tag {
  padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 500;
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-secondary);
}
.detail-price {
  font-size: 28px; font-weight: 700; color: var(--primary);
  letter-spacing: -0.03em; margin-top: 12px;
}
.detail-main { padding: 32px 0 80px; }
.detail-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 32px;
  align-items: start;
}
.gallery {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border); margin-bottom: 24px;
}
.gallery-main {
  aspect-ratio: 16/10; background: var(--bg);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border);
}
.gallery-thumbs button {
  aspect-ratio: 4/3; border: none; padding: 0; cursor: pointer;
  opacity: 0.7; transition: opacity 0.15s;
}
.gallery-thumbs button.is-active,
.gallery-thumbs button:hover { opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.content-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 16px;
}
.content-card h2 {
  font-size: 17px; font-weight: 600; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.content-card p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.75;
}
.meta-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.meta-grid > div {
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.meta-grid dt {
  font-size: 12px; color: var(--text-tertiary); margin-bottom: 4px;
}
.meta-grid dd { font-size: 14px; font-weight: 500; }

.sidebar-card {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.sidebar-card h2 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.sidebar-card > p {
  font-size: 14px; color: var(--text-secondary);
  margin-bottom: 20px; line-height: 1.55;
}
.sidebar-phone {
  display: block; font-size: 22px; font-weight: 700;
  color: var(--primary); margin-bottom: 16px; letter-spacing: -0.02em;
}
.sidebar-phone:hover { text-decoration: underline; }
.detail-map-box {
  height: 200px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  margin-top: 12px; background: var(--bg);
}
.detail-map-box img { width: 100%; height: 100%; object-fit: cover; }

/* Broker page */
.broker-intro-design {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}
.broker-intro-design .lead,
.broker-intro-design .story-copy p,
.broker-intro-design .broker-journal-intro p,
.broker-intro-design .broker-band p,
.broker-intro-design .closing-cta p,
.broker-intro-design .photo-grid figcaption,
.broker-intro-design .certs-grid figcaption,
.broker-intro-design .breadcrumb {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.broker-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 40px;
  align-items: center;
}
.broker-portrait {
  margin: 0;
  display: block;
  width: fit-content;
  max-width: 400px;
  max-height: min(500px, 58vh);
  justify-self: end;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.broker-portrait img {
  display: block;
  width: auto;
  height: auto;
  max-width: 400px;
  max-height: min(500px, 58vh);
}
.broker-band {
  padding: 40px 0;
  background: var(--text);
  color: #fff;
  text-align: center;
}
.broker-band p {
  font-size: 17px;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}
.broker-journal-intro {
  max-width: 640px;
  margin-bottom: 40px;
}
.broker-journal-intro .step {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.broker-journal-intro h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.3;
}
.broker-journal-intro p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 64px;
}
.photo-grid .stack {
  display: grid;
  gap: 18px;
}
.photo-grid figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  min-height: 100%;
}
.photo-grid .broker-media-frame {
  background: var(--white);
}
.broker-media-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  background: #eef1f4;
}
.broker-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.photo-grid > figure:first-of-type .broker-media-frame {
  aspect-ratio: unset;
  height: auto;
  background: transparent;
  line-height: 0;
}
.photo-grid > figure:first-of-type .broker-media-frame img {
  width: 100%;
  height: auto;
  object-fit: unset;
}
.photo-grid figcaption {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 16px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  background: var(--white);
  border-top: 1px solid var(--border);
  line-height: 1.45;
  white-space: normal;
}
@media (min-width: 769px) {
  .photo-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .photo-grid > figure:first-of-type {
    grid-column: 1;
    grid-row: 1;
  }
  .photo-grid .stack {
    display: contents;
  }
  .photo-grid .stack figure:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .photo-grid .stack figure:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
}
.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.story-block.reverse .story-copy { order: 1; }
.story-block.reverse figure { order: 2; }
.story-block figure {
  margin: 0;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg);
}
.story-block:not(.reverse) figure .broker-media-frame {
  aspect-ratio: 4 / 5;
}
.story-block.reverse figure {
  max-width: 440px;
  justify-self: end;
  width: 100%;
}
.story-block.reverse figure .broker-media-frame {
  aspect-ratio: 3 / 4;
}
.story-block .broker-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-copy .step {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.story-copy h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.3;
}
.story-copy p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.broker-map-section {
  margin-bottom: 64px;
}
.broker-map-copy {
  max-width: 640px;
  margin-bottom: 28px;
}
.broker-map-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: end;
}
.broker-map-duo figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg);
}
.broker-map-duo figure:first-child .broker-media-frame {
  aspect-ratio: 4 / 3;
}
.broker-map-duo figure:last-child .broker-media-frame {
  aspect-ratio: 3 / 4;
}
.broker-proof-block {
  margin-top: 0;
  margin-bottom: 0;
}
.broker-proof-block .story-copy {
  margin-bottom: 28px;
  max-width: 640px;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.certs-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.certs-grid img {
  width: 100%;
  height: clamp(280px, 32vw, 390px);
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background: var(--white);
  display: block;
}
.certs-grid figcaption {
  padding: 12px 16px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-cta {
  text-align: center; padding: 72px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.closing-cta h2 {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700;
  letter-spacing: -0.03em; margin: 10px 0 16px;
}
.closing-cta p {
  font-size: 15px; color: var(--text-secondary);
  max-width: 520px; margin: 0 auto 28px; line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 48px 0 32px; border-top: 1px solid var(--border);
}
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand strong { display: block; font-size: 16px; margin-bottom: 6px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); }
.footer-col dt {
  font-size: 12px; font-weight: 600; color: var(--text-tertiary);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em;
}
.footer-col dd { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-tertiary);
}

.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 300; padding: 14px 24px;
  background: var(--text); color: #fff;
  font-size: 14px; font-weight: 500; border-radius: 100px;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.toast.is-visible {
  transform: translateX(-50%) translateY(0); opacity: 1;
}
.float-call {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff; box-shadow: var(--shadow-md);
  align-items: center; justify-content: center; border: none; cursor: pointer;
}
.float-call svg { width: 22px; height: 22px; fill: currentColor; }

@media (max-width: 1024px) {
  .listing-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .broker-hero-grid { grid-template-columns: 1fr; }
  .broker-hero-grid { grid-template-columns: 1fr; }
  .broker-portrait {
    max-width: 360px;
    max-height: none;
    justify-self: center;
  }
  .broker-portrait img {
    max-width: 360px;
    max-height: min(460px, 55vh);
  }
  .story-block,
  .story-block.reverse { grid-template-columns: 1fr; }
  .story-block.reverse figure { order: initial; max-width: none; justify-self: stretch; }
  .story-block.reverse .story-copy { order: initial; }
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid .stack {
    display: grid;
  }
  .broker-map-duo { grid-template-columns: 1fr; align-items: stretch; }
  .broker-map-duo figure:last-child .broker-media-frame { aspect-ratio: 4 / 3; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-top: var(--header-h); }
  .gnb, .header-cta .btn-ghost { display: none; }
  .menu-btn { display: flex; }
  .gnb.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    padding: 20px 24px; background: var(--white);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 20px;
  }
  .prop-grid { grid-template-columns: 1fr; }
  .meta-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .float-call { display: flex; }
  .page-hero .wrap { flex-direction: column; align-items: flex-start; }
  .page-hero-aside { max-width: none; width: 100%; }
}

@media (max-width: 480px) {
  .wrap { width: calc(100% - 32px); }
  .certs-grid { grid-template-columns: 1fr; }
}
