.pnr-below { margin-top: 48px; }

/* ── Example block ── */
.pnr-example {
    background: #F8F8F8;
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 56px;
}
.pnr-example__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid #D4D4D4;
    background: #fff;
}
.pnr-example__label {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #9299A2;
}
.pnr-example__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: none;
    cursor: pointer;
    color: #9299A2;
    transition: color .2s, background .2s;
    flex-shrink: 0;
}
.pnr-example__copy:hover { color: #4450F2; background: #EEEFFF; }
.pnr-example__copy.is-copied { color: #35C658; }
.pnr-example__code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.75;
    color: #141414;
    padding: 16px 20px;
    margin: 0;
    white-space: pre;
    overflow-x: auto;
    background: #F8F8F8;
}

/* ── Section titles ── */
.pnr-section-title {
    font-family: 'Poppins', Roboto, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #141414;
    margin: 0 0 24px;
    line-height: 1.3;
}

/* ── SEO intro ── */
.pnr-intro { margin-bottom: 56px; }
.pnr-intro__text {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 14px;
    color: #9299A2;
    line-height: 1.75;
    max-width: 820px;
}
.pnr-intro__text p { margin: 0 0 12px; }
.pnr-intro__text p:last-child { margin-bottom: 0; }

/* ── How it works ── */
.pnr-steps { margin-bottom: 56px; }
.pnr-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 768px) { .pnr-steps__grid { grid-template-columns: 1fr; } }
.pnr-step {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 24px 20px;
}
.pnr-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EEEFFF;
    margin-bottom: 16px;
}
.pnr-step__title {
    font-family: 'Poppins', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 8px;
}
.pnr-step__text {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 14px;
    color: #9299A2;
    line-height: 1.65;
}

/* ── Who uses ── */
.pnr-who { margin-bottom: 56px; }
.pnr-who__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 768px) { .pnr-who__grid { grid-template-columns: 1fr; } }
.pnr-who-card {
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    padding: 20px;
}
.pnr-who-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.pnr-who-card__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EEEFFF;
}
.pnr-who-card__title {
    font-family: 'Poppins', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #141414;
}
.pnr-who-card__text {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 14px;
    color: #9299A2;
    line-height: 1.65;
}

/* ── FAQ ── */
.pnr-faq { margin-bottom: 56px; }
.pnr-faq-item { border-bottom: 1px solid #EBEBEB; padding: 20px 0; }
.pnr-faq-item:first-of-type { border-top: 1px solid #EBEBEB; }
.pnr-faq-item__q {
    font-family: 'Poppins', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 10px;
}
.pnr-faq-item__a {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 14px;
    color: #9299A2;
    line-height: 1.7;
}

/* ── Tables (status codes, GDS comparison) ── */
.pnr-table-wrap {
    overflow-x: auto;
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    margin-bottom: 56px;
}
.pnr-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 14px;
}
.pnr-table th,
.pnr-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #EBEBEB;
    vertical-align: top;
}
.pnr-table tr:last-child td { border-bottom: none; }
.pnr-table th {
    font-family: 'Poppins', Roboto, sans-serif;
    font-weight: 600;
    color: #141414;
    background: #F8F8F8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.pnr-table td { color: #141414; line-height: 1.6; }
.pnr-table td.pnr-table__code {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #4450F2;
    white-space: nowrap;
}
.pnr-table__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', Roboto, sans-serif;
}
.pnr-table__badge--ok { background: #7BF78F; color: #141414; }
.pnr-table__badge--warn { background: #FEF0C7; color: #141414; }
.pnr-table__badge--bad { background: #FDECEC; color: #FD3A57; }

/* ── Examples grid (4 GDS formats) ── */
.pnr-examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 56px;
}
@media (min-width: 900px) {
    .pnr-examples-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Interactive anatomy block ── */
.pnr-anatomy { margin-bottom: 56px; }
.pnr-anatomy__intro {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 14px;
    color: #9299A2;
    line-height: 1.75;
    max-width: 820px;
    margin-bottom: 20px;
}
.pnr-anatomy__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 900px) {
    .pnr-anatomy__layout { grid-template-columns: 1fr 1fr; }
}
.pnr-anatomy__code-wrap {
    background: #F8F8F8;
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    overflow: hidden;
}
.pnr-anatomy__code-header {
    padding: 10px 16px;
    border-bottom: 1px solid #D4D4D4;
    background: #FFFFFF;
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #9299A2;
}
.pnr-anatomy__code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.85;
    color: #141414;
    padding: 16px 20px;
    margin: 0;
    white-space: pre;
    overflow-x: auto;
}
.pnr-anatomy__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pnr-anatomy__card {
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    padding: 12px 16px;
    background: #FFFFFF;
    cursor: default;
    transition: border-color .15s, background .15s;
}
.pnr-anatomy__card-label {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 12px;
    line-height: 15px;
    color: #9299A2;
    margin-bottom: 4px;
}
.pnr-anatomy__card-value {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    line-height: 1.5;
}
/* Highlight applies to both code tokens and detail cards via shared data-anchor. */
.pnr-anatomy [data-anchor] {
    border-radius: 4px;
    transition: background-color .15s, color .15s;
    cursor: pointer;
}
.pnr-anatomy__code [data-anchor] { padding: 1px 2px; }
.pnr-anatomy [data-anchor].is-highlighted {
    background-color: #EEEFFF;
    color: #1D29C7;
}
.pnr-anatomy__card.is-highlighted {
    border-color: #4356E9;
    background: #EEEFFF;
}
.pnr-anatomy__legend {
    font-family: 'Inter', Roboto, sans-serif;
    font-size: 12px;
    color: #9299A2;
    margin-top: 12px;
    line-height: 1.6;
}

/* ── Number badge for step icons on /pnr-converter-* landings ── */
.pnr-step__icon--num {
    font-family: 'Poppins', Roboto, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #4450F2;
    line-height: 1;
}
