/* Report Adverse Event — editorial / medical layout */

.pv-page {
    --pv-ink: var(--brand-dark-navy, #000F9F);
    --pv-muted: var(--brand-paragraph, #4a5568);
    --pv-accent: #ea0029;
    --pv-line: rgba(0, 15, 159, 0.12);
    --pv-soft: #f3f6fa;
    --pv-soft-2: #e8eef5;
    --pv-heading: var(--heading-font, Georgia, "Times New Roman", serif);
}

.pv-page .pv-hero .pv-hero-eyebrow {
    color: #ff6b81;
    display: inline-block;
    margin-bottom: 14px;
}

.pv-page .pv-hero .responsibility-health-hero-lead {
    max-width: 34rem;
}

/* Emergency strip */
.pv-page .pv-emergency {
    background:
        linear-gradient(90deg, rgba(234, 0, 41, 0.08), transparent 55%),
        #fff7f8;
    border-bottom: 1px solid rgba(234, 0, 41, 0.16);
    padding: 18px 0;
}

.pv-page .pv-emergency-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px 22px;
    align-items: start;
}

.pv-page .pv-emergency-label {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    color: #fff;
    background: var(--pv-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 10px;
    line-height: 1;
}

.pv-page .pv-emergency p {
    margin: 0;
    color: #5a1522;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.65;
}

/* Sections */
.pv-page .pv-section {
    padding: clamp(64px, 8vw, 104px) 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 15, 159, 0.035), transparent 42%),
        #fff;
}

.pv-page .pv-section--band {
    background:
        linear-gradient(180deg, #f5f8fc 0%, #eef3f8 100%);
}

.pv-page .pv-band-head {
    max-width: 42rem;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.pv-page .pv-title {
    margin: 0 0 16px;
    color: var(--pv-ink);
    font-family: var(--pv-heading);
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.pv-page .pv-lead,
.pv-page .pv-prose p,
.pv-page .pv-note,
.pv-page .pv-action__copy p,
.pv-page .pv-closing-inner p,
.pv-page .pv-steps p,
.pv-page .pv-channel p,
.pv-page .pv-contact-rail p,
.pv-page .pv-consent p {
    margin: 0 0 14px;
    color: var(--pv-muted);
    font-size: clamp(15px, 1.45vw, 17px);
    line-height: 1.72;
}

.pv-page .pv-subhead {
    margin: 0 0 18px;
    color: var(--pv-ink);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pv-page .pv-note {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--pv-line);
    max-width: 46rem;
}

/* Editorial split: title rail + reading column */
.pv-page .pv-split {
    display: grid;
    grid-template-columns: minmax(240px, 0.88fr) minmax(0, 1.35fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.pv-page .pv-split--tight {
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.25fr);
}

.pv-page .pv-split--vcenter {
    align-items: center;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.pv-page .pv-split--vcenter .pv-split__aside {
    position: static;
    top: auto;
}

.pv-page .pv-split--vcenter .pv-title {
    margin-bottom: 0;
}

.pv-page .pv-split--vcenter .pv-lead {
    margin: 0;
    max-width: 38rem;
}

.pv-page .pv-split__aside {
    position: sticky;
    top: 110px;
}

.pv-page .pv-split__aside .pv-title {
    max-width: 14ch;
}

.pv-page .pv-split__aside .pv-lead {
    max-width: 28rem;
}

.pv-page .pv-split__aside .responsibility-health-cta-btn {
    margin-top: 18px;
}

/* Prominent report CTAs (ADR + Product Quality) */
.pv-page .responsibility-health-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 8px;
    font-family: var(--heading-font, var(--primary-font));
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    white-space: nowrap;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease;
}

.pv-page .responsibility-health-cta-btn--primary {
    background: var(--brand-accent-red, #ea0029);
    border: 1px solid var(--brand-accent-red, #ea0029);
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(234, 0, 41, 0.28);
}

.pv-page .responsibility-health-cta-btn--primary:hover,
.pv-page .responsibility-health-cta-btn--primary:focus-visible {
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 16px 32px rgba(234, 0, 41, 0.36);
}

.pv-page .pv-action .responsibility-health-cta-btn--primary {
    min-height: 56px;
    padding: 0 30px;
    font-size: 1.02rem;
    background: #ffffff;
    border-color: #ffffff;
    color: #000F9F !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.pv-page .pv-action .responsibility-health-cta-btn--primary:hover,
.pv-page .pv-action .responsibility-health-cta-btn--primary:focus-visible {
    color: #000F9F !important;
    background: #f4f6ff;
    border-color: #f4f6ff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

/* Rail list (definition-style) */
.pv-page .pv-rail {
    display: grid;
    grid-template-columns: minmax(140px, 180px) 1fr;
    gap: 18px 36px;
    padding: clamp(22px, 3vw, 32px) 0;
    border-top: 1px solid var(--pv-line);
    border-bottom: 1px solid var(--pv-line);
}

.pv-page .pv-rail__label {
    margin: 0;
    color: var(--pv-ink);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.45;
}

.pv-page .pv-rail__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
}

.pv-page .pv-rail__list li {
    position: relative;
    padding: 4px 0 4px 16px;
    color: var(--pv-ink);
    font-size: 15.5px;
    line-height: 1.45;
}

.pv-page .pv-rail__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 1px;
    background: var(--pv-accent);
}

/* Pillar lists — compact editorial columns, not cards */
.pv-page .pv-pillars {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 36px;
}

.pv-page .pv-pillars li {
    break-inside: avoid;
    padding: 11px 0;
    border-bottom: 1px solid var(--pv-line);
    color: var(--pv-ink);
    font-size: 15.5px;
    line-height: 1.45;
}

/* Who can report — flowing labels */
.pv-page .pv-who-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.pv-page .pv-who-flow li {
    color: var(--pv-ink);
    font-family: var(--pv-heading);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
    padding: 10px 0;
    border-bottom: 2px solid rgba(234, 0, 41, 0.35);
    margin-right: 8px;
}

/* Minimum info — numbered steps (no cards) */
.pv-page .pv-steps {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--pv-line);
}

.pv-page .pv-steps > li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 28px 24px 28px 0;
    border-bottom: 1px solid var(--pv-line);
}

.pv-page .pv-steps > li:nth-child(odd) {
    padding-right: 32px;
    border-right: 1px solid var(--pv-line);
}

.pv-page .pv-steps > li:nth-child(even) {
    padding-left: 32px;
}

.pv-page .pv-steps__num {
    font-family: var(--pv-heading);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
    color: var(--brand-primary-blue, #000F9F);
    letter-spacing: -0.04em;
}

.pv-page .pv-steps h3 {
    margin: 0 0 8px;
    color: var(--pv-ink);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
}

.pv-page .pv-steps p:last-child {
    margin-bottom: 0;
}

/* Interactive ADR action band */
.pv-page .pv-action {
    position: relative;
    padding: clamp(64px, 8vw, 100px) 0;
    color: #fff;
    background: #000F9F;
    overflow: hidden;
}

.pv-page .pv-action::before {
    content: none;
}

.pv-page .pv-action__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: end;
}

.pv-page .pv-action .responsibility-health-eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.pv-page .pv-action .pv-title,
.pv-page .pv-action__copy p {
    color: rgba(255, 255, 255, 0.94);
}

.pv-page .pv-action__copy .pv-title {
    max-width: 16ch;
}

.pv-page .pv-action__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 6px;
}

.pv-page .pv-action__hint {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Clickable reporting channels */
.pv-page .pv-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.pv-page .pv-channel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(24px, 3vw, 32px);
    background: transparent;
    border: 1px solid var(--pv-line);
    border-left: 4px solid var(--pv-accent);
    transition: border-color 0.35s ease, background 0.35s ease;
}

.pv-page .pv-channel:hover,
.pv-page .pv-channel:focus-within {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(234, 0, 41, 0.35);
}

.pv-page .pv-channel__kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--pv-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pv-page .pv-channel h3 {
    margin: 0 0 10px;
    color: var(--pv-ink);
    font-family: var(--pv-heading);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.25;
}

.pv-page .pv-channel p {
    margin: 0 0 18px;
    color: var(--pv-muted);
}

.pv-page .pv-channel__go {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: var(--pv-accent);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.pv-page .pv-channel__go::after {
    content: " →";
}

.pv-page .pv-channel__go:hover,
.pv-page .pv-channel__go:focus-visible {
    text-decoration: underline;
    outline: none;
}

/* Quiet contact rail */
.pv-page .pv-contact-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 32px;
    padding-top: 28px;
    border-top: 1px solid var(--pv-line);
}

.pv-page .pv-contact-rail h3 {
    margin: 0 0 10px;
    color: var(--pv-ink);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pv-page .pv-contact-rail a {
    color: var(--pv-accent);
    font-weight: 600;
    text-decoration: none;
}

.pv-page .pv-contact-rail a:hover,
.pv-page .pv-contact-rail a:focus-visible {
    text-decoration: underline;
    outline: none;
}

.pv-page .pv-placeholder {
    color: rgba(0, 15, 159, 0.55);
    font-style: italic;
}

/* Consent as quote */
.pv-page .pv-consent {
    margin: 28px 0 0;
    padding: 22px 0 0 22px;
    border: 0;
    border-left: 3px solid var(--pv-accent);
    background: transparent;
}

.pv-page .pv-consent strong {
    display: block;
    margin-bottom: 8px;
    color: var(--pv-ink);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pv-page .pv-consent p:last-child {
    margin-bottom: 0;
}

/* Closing */
.pv-page .pv-closing {
    padding: clamp(72px, 9vw, 120px) 0;
    background:
        linear-gradient(180deg, rgba(0, 15, 159, 0.04), transparent 40%),
        linear-gradient(135deg, #eef3f8 0%, #f8fafc 55%, #fff 100%);
}

.pv-page .pv-closing-inner {
    max-width: 44rem;
}

.pv-page .pv-closing .responsibility-health-hero-actions {
    margin-top: 26px;
}

/* Motion — never hide content (page HTML scripts are often stripped) */
.pv-page .pv-hero .responsibility-health-hero-content {
    animation: pvHeroIn 0.9s ease both;
}

.pv-page .pv-channel {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

@keyframes pvHeroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pv-page .pv-hero .responsibility-health-hero-content,
    .pv-page .pv-channel {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .pv-page .pv-split,
    .pv-page .pv-split--tight,
    .pv-page .pv-rail,
    .pv-page .pv-action__grid,
    .pv-page .pv-channels,
    .pv-page .pv-contact-rail,
    .pv-page .pv-steps {
        grid-template-columns: 1fr;
    }

    .pv-page .pv-split__aside {
        position: static;
    }

    .pv-page .pv-split__aside .pv-title {
        max-width: none;
    }

    .pv-page .pv-pillars {
        columns: 1;
    }

    .pv-page .pv-rail__list {
        grid-template-columns: 1fr;
    }

    .pv-page .pv-steps > li,
    .pv-page .pv-steps > li:nth-child(odd),
    .pv-page .pv-steps > li:nth-child(even) {
        padding: 22px 0;
        border-right: 0;
    }

    .pv-page .pv-emergency-inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pv-page .pv-channels,
    .pv-page .pv-contact-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pv-page .pv-contact-rail > :last-child {
        grid-column: 1 / -1;
    }
}
