/* ============================================
   Variables - v4: Bold Editorial
   ============================================ */
:root {
  --blue: #2568c8;
  --blue-dark: #1a4e9a;
  --blue-hover: #2d72d2;
  --blue-light: #dbeaff;
  --green: #33a868;
  --green-dark: #1a6b40;
  --green-hover: #3dbb74;
  --orange: #f08c3a;
  --orange-hover: #f09050;
  --text: #0a0a12;
  --text-sub: #555570;
  --border: #dde3ee;
  --border-light: #edf0f8;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;

  --tag-seminar: #999;
  --tag-publish: #999;
  --tag-common: #999;
  --tag-qualified: var(--blue);
  --tag-license: var(--green);

  --max-w: 1440px;
  --header-h: 108px;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-pill: 9999px;

  --shadow-sm: 0 3px 14px rgba(0, 0, 0, 0.09);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.13);
  --shadow-lg: 0 20px 64px rgba(0, 0, 0, 0.18);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: static;
  height: auto;
  background: #fff;
  border-bottom: none;
}

.header-top {
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 48px;
  gap: 20px;
  transition: padding 0.3s ease;
}

.header-utilities {
  margin-left: auto;
  margin-right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-contact {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  padding: 6px 14px;
  border: 1.5px solid var(--blue);
  border-radius: var(--r-sm);
  transition:
    color 0.15s,
    border-color 0.15s;
}

.header-contact:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.header-bottom {
  border-top: 1px solid var(--border-light);
}

.header-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  transition: padding 0.3s ease;
  display: flex;
  align-items: center;
}

.header-pathway {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-pathway-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition:
    filter 0.15s,
    transform 0.15s;
}

.header-pathway-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.header-pathway-btn svg {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  flex-shrink: 0;
}

.header-pathway-btn--qualified {
  background: var(--blue);
}
.header-pathway-btn--license {
  background: var(--green);
}

.site-logo {
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
}

.global-nav {
}

.sp-pathway {
  display: none;
}
.sp-contact {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--blue);
  transition:
    left 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.15s;
  opacity: 0;
  pointer-events: none;
}

.nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-sub);
  transition:
    color 0.15s,
    font-size 0.3s ease,
    padding 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link--active {
  color: var(--blue);
}

.nav-link--cta {
  background: none;
  color: var(--text-sub);
  padding: 8px 16px;
  margin-left: 0;
  font-weight: 600;
  border-radius: 0;
  letter-spacing: 0.01em;
}

.nav-link--cta:hover {
  background: none;
  color: var(--blue);
}

/* Site Search */
.site-search {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--blue);
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.site-search-input {
  border: none;
  outline: none;
  padding: 7px 12px;
  font-size: 14px;
  width: 180px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  transition: width 0.3s ease;
}

.site-search-input::placeholder {
  color: var(--text-sub);
  opacity: 0.7;
}

.site-search-btn {
  border: none;
  background: var(--blue);
  color: #fff;
  padding: 7px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

.site-search-btn:hover {
  background: var(--blue-dark, #1a4fa0);
}
.site-search-btn svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px;
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 0;
  transition: background 0.15s;
}

.hamburger:hover {
  background: var(--bg-soft);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: var(--r-pill);
  transition:
    transform 0.22s var(--ease-out),
    opacity 0.15s;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero — 大胆エディトリアル
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 55%, #1f7a48 100%);
}

.hero-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* キャッチコピー：左寄せ・中段 */
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 48px;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-title {
  font-size: clamp(44px, 8.5vw, 94px);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  animation: heroFadeIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

/* ─── 資格ボタン：画面下部の全幅ブロック ─── */
.hero-pathway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
  padding: 0;
  flex-shrink: 0;
  animation: none;
}

.hero-pathway-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 48px;
  border-radius: 0;
  border: none;
  color: #fff;
  transition:
    filter 0.2s var(--ease-out),
    padding-left 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* セパレーターライン */
.hero-pathway-btn--qualified {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-pathway-btn::before {
  display: none;
}
.hero-pathway-btn::after {
  display: none;
}

.hero-pathway-btn--qualified {
  background: var(--blue);
}
.hero-pathway-btn--license {
  background: var(--green);
}

.hero-pathway-btn:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(1.12);
  padding-left: 56px;
}

.hero-pathway-btn-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pathway-btn-icon svg {
  width: 100%;
  height: 100%;
}

.hero-pathway-btn-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-pathway-btn-body strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.hero-pathway-btn-body span {
  font-size: 11.5px;
  opacity: 0.72;
  letter-spacing: 0.03em;
}

.hero-pathway-btn-arrow {
  flex-shrink: 0;
  font-size: 22px;
  opacity: 0.7;
  transition:
    transform 0.22s var(--ease-out),
    opacity 0.2s;
  line-height: 1;
}

.hero-pathway-btn:hover .hero-pathway-btn-arrow {
  transform: translateX(6px);
  opacity: 1;
}

/* ============================================
   Shortcut Section
   ============================================ */
.shortcut-section {
  background: rgb(249, 249, 249);
  padding: 48px 0;
}

.shortcut-section .container {
  max-width: 1440px;
}

.shortcut-title {
  margin-bottom: 12px;
}

.shortcut-desc {
  font-size: 16px;
  color: var(--text-sub);
  margin-bottom: 32px;
  text-align: center;
}

.shortcut-list {
  list-style: none;
  margin: 0 auto;
  padding: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shortcut-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: visible;
  text-decoration: none;
  color: var(--text);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.shortcut-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #e0e0e0;
  position: relative;
}

.shortcut-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.shortcut-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -38px;
  margin-left: auto;
  margin-right: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.shortcut-item {
  overflow: visible;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.shortcut-item .shortcut-link {
  flex: 1;
}

.shortcut-body {
  padding: 16px 22px 24px;
  text-align: left;
}

.shortcut-label {
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--blue);
  margin-bottom: 10px;
}

.shortcut-body-text {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

.shortcut-body {
  flex: 1;
}

.shortcut-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px 16px;
}

.shortcut-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px 7px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  transition: background 0.2s;
}

.shortcut-arrow-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================
   News Section
   ============================================ */
.news-section {
  padding: 80px 0 96px;
  background: var(--bg);
}

.news-section .container {
  max-width: 1440px;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}

.news-header-actions {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  letter-spacing: -0.01em;
  line-height: 1;
  padding-left: 0;
  border-left: none;
  position: relative;
  gap: 12px;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid transparent;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 5px var(--blue),
    0 0 0 7px #fff,
    0 0 0 10px var(--blue);
  margin-left: 10px;
  margin-right: 10px;
  flex-shrink: 0;
  align-self: center;
}

.news-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.15s,
    color 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

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

.btn-outline {
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-rss {
  background: #fff;
  border: 2px solid #e07b00;
  color: #e07b00;
}

.btn-rss svg {
  width: 13px;
  height: 13px;
}
.btn-rss:hover {
  background: #e07b00;
  color: #fff;
}

@media (max-width: 767px) {
  .btn-rss-label {
    display: none;
  }
  .btn-rss {
    padding: 12px;
  }
  .btn-rss svg {
    width: 18px;
    height: 18px;
  }
}

/* ニュースリスト */
.news-list {
  background: #fff;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border-light);
  transition:
    background 0.15s,
    padding-left 0.2s var(--ease-out);
  position: relative;
}

.news-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.news-item--pinned {
  border-left: 3px solid var(--blue);
  padding-left: 29px;
}

.news-badge-new {
  order: 4;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 52px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #e53935;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.08em;
  pointer-events: none;
}

.pin-mark {
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  flex-shrink: 0;
  width: 18px;
  opacity: 0.7;
  order: 0;
}

.pin-mark svg {
  width: 20px;
  height: 20px;
}
.pin-spacer {
  display: inline-block;
  width: 18px;
  flex-shrink: 0;
  order: 0;
}

/* タグ */
.news-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--r-sm);
  color: var(--blue);
  background: #fff;
  border: 1.5px solid var(--blue);
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-seminar,
.tag-publish,
.tag-common {
  background: #fff;
}

.tag-qualified {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.tag-license {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.news-date {
  font-size: 14px;
  color: var(--text-sub);
  flex-shrink: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-weight: 500;
  order: 1;
}

.news-tag {
  order: 2;
}
.news-title {
  order: 3;
}

.news-title {
  font-size: 16px;
  color: var(--blue);
  line-height: 1.55;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.news-title:hover {
  text-decoration: none;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.9);
  padding: 52px 0 32px;
}

.footer-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 44px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  min-width: 200px;
}

.footer-logo {
  height: 44px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
}

.footer-name-en {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8px;
  flex: 1;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.15s,
    transform 0.2s var(--ease-out);
}

.footer-links a::before {
  content: "›";
  font-size: 18px;
  line-height: 1;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-sns {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s var(--ease-out);
}

.footer-sns-link--x {
  color: #000;
}
.footer-sns-link--youtube {
  color: #ff0000;
}

.footer-sns-link:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}
.footer-sns-link--x:hover {
  color: #000;
}
.footer-sns-link--youtube:hover {
  color: #cc0000;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ============================================
   Tablet (〜1023px)
   ============================================ */
@media (max-width: 1023px) {
  .container {
    padding: 0 24px;
  }
  .header-top {
    padding: 18px 24px;
  }
  .header-bottom-inner {
    padding: 0 24px;
  }
  .nav-link {
    font-size: 13px;
    padding: 14px 12px;
  }
  .site-search-input {
    width: 140px;
  }
  .hero-body {
    padding: 0 36px 40px;
  }
  .hero::before {
    left: 24px;
  }
  .hero-pathway-btn {
    padding: 22px 32px;
  }
  .hero-pathway-btn-body strong {
    font-size: 16px;
  }
  .footer-inner {
    gap: 40px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Mobile (〜767px)
   ============================================ */
@media (max-width: 767px) {
  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 16px;
  }
  .header-top {
    padding: 6px 16px;
  }
  .header-utilities {
    display: none;
  }
  .header-pathway {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-bottom {
    display: none;
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 99;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .header-bottom:has(.global-nav.is-open) {
    display: block;
  }

  .global-nav {
    display: block;
    width: 100%;
  }

  /* SP pill buttons */
  .sp-pathway {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--border-light);
  }

  .sp-pathway .header-pathway-btn {
    justify-content: center;
    padding: 13px 16px;
    font-size: 15px;
    border-radius: var(--r-md);
  }

  /* SP お問い合わせ */
  .sp-contact {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-sub);
    border-top: 1px solid var(--border-light);
    text-align: center;
  }

  .sp-contact:hover {
    color: var(--blue);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 4px 0;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
  }

  /* Hero SP */
  .hero {
    height: 72vw;
    min-height: 300px;
    max-height: 480px;
  }
  .hero::before {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  .hero-body {
    padding: 20px 20px 24px;
  }

  .hero-label {
    font-size: 9.5px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
  }
  .hero-label::after {
    background: rgba(255, 255, 255, 0.4);
  }

  .hero-title {
    font-size: clamp(22px, 6.5vw, 35px);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
  }

  .hero-pathway {
    grid-template-columns: 1fr;
  }

  .hero-pathway-btn {
    padding: 20px 24px;
    gap: 14px;
  }

  .hero-pathway-btn--qualified {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .hero-pathway-btn:hover {
    padding-left: 30px;
  }

  .hero-pathway-btn-body strong {
    font-size: 16px;
  }

  /* Shortcut */
  .shortcut-section {
    padding: 32px 0;
  }
  .shortcut-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .shortcut-body {
    padding: 14px 18px;
  }
  .shortcut-label {
    font-size: 20px;
  }

  /* News */
  .news-section {
    padding: 48px 0 64px;
  }
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 22px;
    padding-left: 12px;
    border-left-width: 3px;
  }

  .news-item {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 18px;
  }

  .pin-mark,
  .pin-spacer {
    display: none;
  }
  .news-title {
    width: 100%;
    font-size: 15px;
  }
  .news-badge-new {
    order: 4;
  }

  /* Footer */
  .site-footer::before {
    margin-bottom: 36px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-sub);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb li + li::before {
  content: "›";
  color: var(--border);
  font-size: 16px;
  line-height: 1;
}
.breadcrumb a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb a:hover {
  text-decoration: none;
}
.breadcrumb [aria-current] {
  color: var(--text-sub);
  font-weight: 500;
}

/* ============================================
   Page Header (second-tier pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #fff;
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.page-header--qualified {
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    #2d6fca 60%,
    #2568c8 100%
  );
}
.page-header--license {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}

.page-header--light {
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 44px;
}
.page-header--light::before {
  background: var(--blue);
  height: 1px;
}
.page-header--light .page-header-label {
  color: var(--blue);
}
.page-header--light .page-header-title {
  color: var(--blue);
}
.page-header--light .page-header-desc {
  color: var(--blue);
}
.page-header--light .page-header-icon svg {
  color: var(--blue);
  opacity: 0.18;
}
.page-header--light .page-header-inner {
  align-items: flex-start;
  gap: 24px;
}
.page-header--light .page-header-icon {
  opacity: 0.6;
}
.page-header--light .page-header-label {
  font-size: 12px;
  letter-spacing: 0.08em;
}
.page-header--light .page-header-title {
  font-size: 30px;
}
.page-header--light .page-header-desc {
  max-width: 680px;
}

.page-header--center .page-header-inner {
  justify-content: center;
}
.page-header--center .page-header-body {
  text-align: center;
}
.page-header--center .page-header-desc {
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
}

.page-header--sub {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  padding: 16px 0 0;
}
.page-header--sub .page-header-image {
  width: 100%;
  clip-path: none;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  opacity: 0;
}

.page-header--has-image .page-header-inner {
  padding-right: min(46%, 620px);
}

.page-header-image {
  position: absolute;
  right: 0;
  top: 0;
  width: min(44%, 600px);
  height: 100%;
  clip-path: polygon(50px 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.page-header-image-item {
  overflow: hidden;
}
.page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
}

.page-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-header-icon svg {
  width: 72px;
  height: 72px;
  color: #fff;
}

.page-header-body {
  flex: 1;
}

.page-header-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  display: block;
}

.page-header--qualified .page-header-title,
.page-header--license .page-header-title {
  color: #fff;
}

.page-header-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-header-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================
   Category Section (qualified page)
   ============================================ */
.category-section {
  padding: 64px 0;
}

.category-section + .category-section {
  padding-top: 0;
}

.category-section--org {
  background: #eef4fc;
  padding-top: 64px !important;
  padding-bottom: 72px;
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 28px;
}

.category-heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
}

.category-heading-icon svg {
  width: 22px;
  height: 22px;
}

.category-heading--org .category-heading-icon {
  background: var(--blue);
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.link-card-grid > li {
  display: flex;
}

.link-card-grid > li > .link-card {
  width: 100%;
}

.link-card-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.link-card-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.link-card-grid--vertical {
  gap: 32px;
}

.link-card-grid--vertical > li {
  display: flex;
}

/* ---- Vertical card (new) ---- */
.link-card--vertical {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
}

.link-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e8edf5;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--r-md);
}

.link-card--vertical .link-card-image {
  border-radius: 0;
}

.link-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.link-card--vertical .link-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 16px 24px;
  gap: 0;
}

.link-card--vertical .link-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 7px solid var(--blue);
}

.link-card--vertical .link-card-desc {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.link-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  align-self: stretch;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border-radius: 4px;
  padding: 11px 24px;
  transition: filter 0.18s;
  margin-top: auto;
}

.link-card-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.18s var(--ease-out);
}

.link-card--vertical:hover .link-card-btn {
  filter: brightness(1.12);
}

.link-card--vertical:hover .link-card-btn svg {
  transform: translateX(3px);
}

.mb-section .link-card-btn {
  background: var(--blue);
}

/* ---- Horizontal card (legacy) ---- */
.link-card:not(.link-card--vertical) {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #b0bac8;
  border-radius: var(--r-md);
  padding: 20px 24px;
  text-decoration: none;
  color: var(--text);
  position: relative;
}

.link-card-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.link-card-icon svg {
  width: 28px;
  height: 28px;
}

.link-card:not(.link-card--vertical) .link-card-body {
  flex: 1;
  padding: 0 16px;
}

.link-card:not(.link-card--vertical) .link-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 6px;
}

.link-card:not(.link-card--vertical) .link-card-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
}

.link-card-arrow {
  flex-shrink: 0;
  color: var(--blue);
  opacity: 0.5;
  margin-top: 2px;
  transition:
    transform 0.2s var(--ease-out),
    opacity 0.2s;
}

.link-card:hover .link-card-arrow {
  opacity: 1;
}
.link-card-arrow svg {
  width: 18px;
  height: 18px;
}

/* ---- Card with left diagonal image ---- */
.link-card.link-card--has-image:not(.link-card--vertical) {
  padding: 0;
  overflow: hidden;
  gap: 0;
  align-items: stretch;
  min-height: 96px;
}

.link-card-left-image {
  width: 160px;
  flex-shrink: 0;
  align-self: stretch;
  background: #c8d8ea;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.link-card-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.link-card.link-card--has-image:not(.link-card--vertical) .link-card-body {
  padding: 16px 12px 16px 32px;
}

.link-card.link-card--has-image:not(.link-card--vertical) .link-card-arrow {
  padding-right: 20px;
  align-self: center;
}

/* Sub-links inside registration card */
.link-card-sublinks {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-card-sublinks a {
  font-size: 15px;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
  transition: color 0.15s;
}

.link-card-sublinks a:hover {
  color: var(--blue-dark);
}
.link-card-sublinks a::before {
  content: none;
}

.link-card--has-sublinks {
  cursor: default;
}

.link-card-title-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.link-card-title-link:hover .link-card-title {
  color: var(--blue-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   Qualified News (filtered)
   ============================================ */
.qualified-news-section {
  background: #fff;
  padding: 56px 0 48px;
}

.qualified-news-section .news-header {
  justify-content: flex-start;
  position: static;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.qualified-news-section .news-header .btn-outline {
  margin-left: auto;
}

.qualified-news-filter-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid rgba(37, 99, 176, 0.5);
  border-radius: var(--r-pill);
  padding: 4px 14px;
  letter-spacing: 0.04em;
}

/* ============================================
   Responsive: qualified page
   ============================================ */
@media (max-width: 767px) {
  .page-header {
    padding: 36px 0 32px;
  }
  .page-header-inner {
    gap: 16px;
  }
  .page-header-icon {
  }
  .page-header-icon svg {
    width: 34px;
    height: 34px;
  }
  .page-header-label {
    font-size: 10px;
  }
  .page-header--light .page-header-inner {
    flex-direction: column;
    gap: 12px;
  }
  .page-header--light .page-header-title {
    font-size: 22px;
  }
  .page-header--has-image {
    min-height: 180px;
  }
  .page-header--has-image .page-header-inner {
    padding-right: 0;
    position: relative;
    z-index: 2;
  }
  .page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: none;
    margin-top: 0;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
  .page-header-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 40, 80, 0.55);
    z-index: 1;
    pointer-events: none;
  }

  .link-card-grid {
    grid-template-columns: 1fr;
  }
  .link-card-grid--3col {
    grid-template-columns: 1fr;
  }
  .link-card-grid--single {
    max-width: none;
  }
  .link-card-left-image {
    width: 110px;
  }
  .category-section {
    padding: 40px 0;
  }
  .category-section + .category-section {
    padding-top: 0;
  }
}
