@layer page {
  /* Consolidated page styles for guide-pta.html */
  /* Page-specific styles for guide-pta.html */
  /* 就任直後フロー */
  .onboard-section {
    background: #fff;
    padding: 80px 0;
  }
  .onboard-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    padding-left: 60px;
  }
  .onboard-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--navy), rgba(26, 58, 82, 0.2));
  }
  .otl-step {
    position: relative;
    padding-bottom: 36px;
  }
  .otl-step:last-child {
    padding-bottom: 0;
  }
  .otl-dot {
    position: absolute;
    left: -50px;
    top: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(5, 17, 31, 0.25);
    z-index: 1;
  }
  .otl-phase {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    background: rgba(212, 175, 55, 0.12);
    color: #7a5c00;
    margin-bottom: 8px;
  }
  .otl-title {
    font-family: "Noto Serif JP", serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .otl-body {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
  }
  .otl-body p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin: 0;
  }
  .otl-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }
  .otl-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--t);
  }
  .otl-check:hover {
    border-color: var(--navy-3);
    background: var(--bg);
  }
  .check-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--line);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 1px;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    transition: var(--t);
  }
  .check-box.checked {
    background: #15803d;
    border-color: #15803d;
    color: #fff;
  }
  .check-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.6;
  }
  .check-text strong {
    color: var(--navy);
  }
  .check-law {
    display: block;
    font-size: 0.74rem;
    color: var(--text-soft);
    margin-top: 2px;
  }

  /* リスクインフォグラフィック */
  .risk-infographic {
    background: linear-gradient(145deg, #1d4ed8, #2563eb);
    padding: 80px 0;
    color: #fff;
  }
  .risk-chart {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
  }
  .risk-col {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px;
  }
  .risk-col h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.05rem;
    color: var(--gold-lt);
    margin-bottom: 14px;
  }
  .risk-bar-wrap {
    margin-bottom: 14px;
  }
  .risk-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 5px;
  }
  .risk-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    overflow: hidden;
  }
  .risk-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s ease;
  }
  .risk-bar-fill-red {
    background: linear-gradient(90deg, #b91c1c, #ef4444);
  }
  .risk-bar-fill-orange {
    background: linear-gradient(90deg, #c2410c, #f97316);
  }
  .risk-bar-fill-blue {
    background: linear-gradient(90deg, #1d4ed8, #60a5fa);
  }

  /* Before/After */
  .compare-section {
    background: var(--bg);
    padding: 80px 0;
  }
  .compare-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 40px;
  }
  .compare-col {
    border-radius: var(--radius);
    padding: 28px;
  }
  .compare-col.before {
    background: #fff5f5;
    border: 1px solid #fecaca;
  }
  .compare-col.after {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
  }
  .compare-label {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .compare-col.before .compare-label {
    color: #b91c1c;
  }
  .compare-col.after .compare-label {
    color: #15803d;
  }
  .compare-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
  }
  .ci-dot-ng {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fee2e2;
    color: #b91c1c;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .ci-dot-ok {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Roadmap */
  .roadmap-section {
    background: #fff;
    padding: 80px 0;
  }
  .roadmap {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }
  .rm-step {
    display: flex;
    gap: 20px;
    position: relative;
  }
  .rm-step::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 48px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  }
  .rm-step:last-child::before {
    display: none;
  }
  .rm-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
    z-index: 1;
  }
  .rm-body {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
    flex: 1;
    margin-bottom: 20px;
  }
  .rm-phase {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: #7a5c00;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }
  .rm-body strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .rm-body p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.75;
  }

  /* PDF */
  .officer-pdf {
    background: var(--navy);
    padding: 72px 0;
    color: #fff;
  }
  .officer-pdf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
  }
  .opdf-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--t);
  }
  .opdf-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  .opdf-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .opdf-card h3 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--gold-lt);
    margin-bottom: 6px;
  }
  .opdf-card p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .opdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
    font-size: 0.82rem;
    text-decoration: none;
    transition: var(--t);
  }
  .opdf-btn:hover {
    background: var(--gold-lt);
  }

  @media (max-width: 900px) {
    .risk-chart {
      grid-template-columns: 1fr;
    }
    .compare-wrap {
      grid-template-columns: 1fr;
    }
    .officer-pdf-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 560px) {
    .officer-pdf-grid {
      grid-template-columns: 1fr;
    }
  }

  .page-hero {
    position: relative;
    overflow: hidden;
  }
  .page-hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .page-hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05);
  }
  .page-hero-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(5, 17, 31, 0.32) 0%,
      rgba(5, 17, 31, 0.14) 60%,
      rgba(5, 17, 31, 0.05) 100%
    );
  }
  .page-hero-inner {
    position: relative;
    z-index: 1;
  }

  /* ↓ Photo hero overrides — keep white text on photo background ↓ */
  .page-hero {
    background: transparent;
    border-top: none;
    border-bottom: none;
  }
  .page-hero h1 {
    color: #fff;
  }
  .page-hero h1 em {
    color: var(--gold-lt);
  }
  .page-hero p {
    color: rgba(255, 255, 255, 0.88);
  }
  .page-hero-kicker {
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-lt);
  }
  .hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
  }

  /* 学校利用・働き方改革：PTA役員向け補強 */
  .officer-core-section {
    background: #fff;
    padding: 74px 0;
    border-top: 1px solid var(--line);
  }
  .officer-core-section.alt {
    background: var(--bg);
  }
  .officer-core-section .section-lead {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .officer-prose {
    max-width: 980px;
    margin: 22px auto 0;
    font-size: 1rem;
    line-height: 2;
    color: var(--text);
  }
  .officer-prose p {
    margin: 0 0 1.2em;
  }
  .officer-prose strong {
    color: var(--navy);
    background: linear-gradient(transparent 62%, rgba(212, 175, 55, 0.28) 62%);
  }
  .officer-principle-box {
    max-width: 980px;
    margin: 28px auto 0;
    border-left: 7px solid var(--gold);
    background: #fffaf0;
    padding: 22px 26px;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.05);
  }
  .officer-principle-box h3 {
    font-family: "Noto Serif JP", serif;
    color: var(--navy);
    font-size: 1.18rem;
    margin: 0 0 10px;
  }
  .officer-principle-box p {
    margin: 0;
    line-height: 1.9;
    color: var(--text);
  }
  .officer-legal-table {
    width: 100%;
    max-width: 1040px;
    margin: 28px auto 0;
    border-collapse: collapse;
    font-size: 0.94rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  }
  .officer-legal-table th,
  .officer-legal-table td {
    border: 1px solid var(--line);
    vertical-align: top;
    padding: 14px 16px;
    line-height: 1.75;
    text-align: left;
  }
  .officer-legal-table th {
    background: #f1f5f9;
    color: var(--navy);
    font-weight: 900;
  }
  .officer-source-link {
    max-width: 980px;
    margin: 20px auto 0;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-soft);
  }
  .officer-source-link a {
    font-weight: 900;
    color: var(--navy);
  }
  .officer-action-list {
    max-width: 980px;
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .officer-action-list li {
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    line-height: 1.7;
    font-size: 0.94rem;
  }
  .officer-action-list strong {
    display: block;
    color: var(--navy);
    margin-bottom: 3px;
  }
  @media (max-width: 760px) {
    .officer-action-list {
      grid-template-columns: 1fr;
    }
    .officer-legal-table {
      display: block;
      overflow-x: auto;
    }
    .officer-legal-table th,
    .officer-legal-table td {
      min-width: 12rem;
    }
  }

  .officer-video-section {
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    padding: 48px 0;
    border-top: 1px solid rgba(15, 39, 71, 0.06);
    border-bottom: 1px solid rgba(15, 39, 71, 0.08);
  }

  .officer-video-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.25fr);
    gap: 28px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(15, 39, 71, 0.14);
    border-left: 8px solid #2f6f73;
    border-radius: 0 22px 22px 0;
    box-shadow: 0 16px 38px rgba(5, 17, 31, 0.1);
    padding: 30px;
  }

  .officer-video-badge {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(47, 111, 115, 0.1);
    color: #2f6f73;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .officer-video-copy h2 {
    font-family: "Noto Serif JP", serif;
    color: var(--navy);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.45;
    margin: 0 0 12px;
  }

  .officer-video-copy p {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.95;
    margin: 0;
  }

  .officer-video-frame {
    position: relative;
    width: 100%;
  }

  .officer-video-frame video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: #0f2747;
    box-shadow: 0 18px 42px rgba(5, 17, 31, 0.18);
  }

  @media (max-width: 860px) {
    .officer-video-card {
      grid-template-columns: 1fr;
      padding: 24px 20px;
      border-left-width: 6px;
    }

    .officer-video-section {
      padding: 36px 0;
    }
  }

  .officer-chain-direct {
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
    padding: 42px 0;
    border-top: 1px solid rgba(15, 39, 71, 0.06);
    border-bottom: 1px solid rgba(15, 39, 71, 0.08);
  }

  .officer-chain-card {
    background: #fff;
    border: 1px solid rgba(15, 39, 71, 0.14);
    border-left: 8px solid #2f6f73;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 14px 34px rgba(5, 17, 31, 0.1);
    padding: 28px 30px;
  }

  .officer-chain-badge {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(47, 111, 115, 0.1);
    color: #2f6f73;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .officer-chain-card h2 {
    font-family: "Noto Serif JP", serif;
    color: var(--navy);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.45;
    margin: 0 0 12px;
  }

  .officer-chain-card p {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.95;
    margin: 0 0 18px;
  }

  .officer-chain-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  @media (max-width: 760px) {
    .officer-chain-direct {
      padding: 32px 0;
    }
    .officer-chain-card {
      padding: 24px 20px;
      border-left-width: 6px;
    }
  }

  /* Page-specific styles for guide-pta.html */
  body.guide-pta-editorial .page-hero-kicker {
    text-transform: none;
    letter-spacing: 0.03em;
    border-radius: 3px;
  }
  body.guide-pta-editorial .hero-actions,
  body.guide-pta-editorial .officer-chain-direct {
    display: none;
  }
  body.guide-pta-editorial .officer-video-section {
    padding: 38px 0;
    background: #f8fafc;
    border-bottom: 1px solid #dbe4ee;
  }
  body.guide-pta-editorial .officer-video-card {
    border: 0;
    border-left: 4px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    padding: 22px 0 22px 24px;
    background: transparent;
  }
  body.guide-pta-editorial .officer-video-badge,
  body.guide-pta-editorial .otl-phase,
  body.guide-pta-editorial .rm-phase {
    display: none;
  }
  body.guide-pta-editorial #guidebook-text {
    padding-top: 68px;
  }
  body.guide-pta-editorial #guidebook-text > .wrap > div:first-child {
    display: none;
  }
  body.guide-pta-editorial .gb-chapter,
  body.guide-pta-editorial .gb-chapter-accordion {
    border: 0;
    border-top: 1px solid #cfd8e2;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background: #fff;
  }
  body.guide-pta-editorial .gb-chapter-accordion:last-child {
    border-bottom: 1px solid #cfd8e2;
  }
  body.guide-pta-editorial .gb-chapter-summary {
    cursor: default;
    list-style: none;
    padding: 24px 0 18px;
    background: #fff;
    border: 0;
    color: var(--navy);
  }
  body.guide-pta-editorial .gb-chapter-summary::-webkit-details-marker,
  body.guide-pta-editorial .gb-chapter-state,
  body.guide-pta-editorial .gb-chapter-summary::after {
    display: none;
  }
  body.guide-pta-editorial .gb-chapter-content {
    display: block;
    padding: 0 0 34px;
    background: #fff;
  }
  body.guide-pta-editorial .otl-body,
  body.guide-pta-editorial .risk-col,
  body.guide-pta-editorial .compare-col,
  body.guide-pta-editorial .rm-body,
  body.guide-pta-editorial .opdf-card,
  body.guide-pta-editorial .otl-check {
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
  body.guide-pta-editorial .risk-chart,
  body.guide-pta-editorial .officer-pdf-grid {
    display: block;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  body.guide-pta-editorial .risk-col,
  body.guide-pta-editorial .opdf-card {
    margin: 0;
    padding: 24px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
  }
  body.guide-pta-editorial .risk-col:last-child,
  body.guide-pta-editorial .opdf-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }
  body.guide-pta-editorial .compare-wrap {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #cfd8e2;
  }
  body.guide-pta-editorial .compare-col {
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid #cfd8e2;
    background: transparent;
  }
  body.guide-pta-editorial .rm-body {
    border: 0;
    border-bottom: 1px solid #cfd8e2;
    padding: 18px 0 24px;
  }
  body.guide-pta-editorial main a:hover,
  body.guide-pta-editorial main button:hover,
  body.guide-pta-editorial main summary:hover {
    transform: none;
    box-shadow: none;
  }
  @media (max-width: 760px) {
    body.guide-pta-editorial .officer-video-card {
      padding-left: 18px;
    }
    body.guide-pta-editorial .onboard-timeline {
      padding-left: 48px;
    }
  }

  /* Page-specific styles for guide-pta.html */
  body.guide-pta-editorial .page-hero-kicker {
    display: none;
  }
  body.guide-pta-editorial .risk-bar-track {
    display: none;
  }
  body.guide-pta-editorial .risk-bar-label {
    justify-content: flex-start;
    gap: 12px;
  }
  body.guide-pta-editorial .risk-bar-label span:last-child {
    display: none;
  }
  body.guide-pta-editorial .compare-label {
    text-transform: none;
    letter-spacing: 0;
  }
  body.guide-pta-editorial .otl-dot,
  body.guide-pta-editorial .rm-num {
    border-radius: 0;
    box-shadow: none;
  }
  body.guide-pta-editorial .otl-body,
  body.guide-pta-editorial .otl-check {
    background: #fff;
    border-left: 0;
    border-right: 0;
  }

  /* Page-specific styles for guide-pta.html */
  .rc6-section {
    background: var(--bg, #f5f7fa);
    padding: 64px 0;
  }
  .rc6-wrap {
    width: min(calc(100% - 40px), 860px);
    margin-inline: auto;
  }
  .rc6-section .section-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    line-height: 1.35;
    letter-spacing: 0;
  }
  .rc6-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }
  .rc6-item {
    background: #fff;
    border: 1px solid var(--line, #e2e8f0);
    border-left: 4px solid var(--navy, #1e3a5f);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 1px 3px rgba(10, 22, 40, 0.05);
  }
  .rc6-head {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .rc6-no {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--navy, #1e3a5f);
    color: var(--gold-lt, #e8cd77);
    font-weight: 900;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rc6-axis {
    font-weight: 900;
    color: var(--navy, #1e3a5f);
    font-size: 1.02rem;
  }
  .rc6-q {
    margin: 10px 0 8px 38px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.75;
    color: var(--text, #1e293b);
  }
  .rc6-ok {
    font-size: 0.86rem;
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 8px 12px;
    margin-left: 38px;
  }
  .rc6-ok b {
    color: #15803d;
  }
  .rc6-link {
    margin-left: 38px;
    margin-top: 8px;
    font-size: 0.82rem;
  }
  .rc6-link a {
    color: var(--navy, #1e3a5f);
    text-decoration: none;
    border-bottom: 1px dotted var(--navy, #1e3a5f);
  }
  .rc6-cta {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  @media (max-width: 560px) {
    .rc6-q,
    .rc6-ok,
    .rc6-link {
      margin-left: 0;
    }
  }
}
