:root {
    --pv-ink: #2f2227;
    --pv-ink-soft: #4a373d;
    --pv-surface: #fffdf9;
    --pv-surface-soft: #f6f1e9;
    --pv-surface-muted: #ece4d9;
    --pv-accent: #d99297;
    --pv-accent-deep: #b76a73;
    --pv-secondary: #5a4147;
    --pv-line: rgba(47, 34, 39, 0.1);
    --pv-shadow: 0 26px 60px rgba(47, 34, 39, 0.1);
    --pv-radius-xl: 34px;
    --pv-radius-lg: 24px;
    --pv-radius-md: 18px;
    --pv-max: 1320px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--pv-ink);
    background:
        radial-gradient(circle at top right, rgba(217, 146, 151, 0.14), transparent 30%),
        linear-gradient(180deg, #f8f3ea 0%, #fffdf9 32%, #fbf7f1 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--pv-max);
}

.pv-shell {
    min-height: 100vh;
}

.pv-main {
    overflow: hidden;
}

.pv-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pv-accent-deep);
    font-weight: 800;
}

.pv-kicker::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
}

.pv-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
}

.pv-header--scrolled {
    top: 1px;
}

.pv-header__micro-links {
    display: flex;
    gap: 1.15rem;
}

.pv-header__micro-links {
    font-size: 0.9rem;
    line-height: 1;
}

.pv-header__meta {
    margin-top: 0;
    min-height: 34px;
    max-height: 40px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(232, 180, 157, 0.72) 0%, rgba(255, 253, 249, 0.98) 100%);
    opacity: 1;
    transition: max-height 0.22s ease, opacity 0.22s ease, min-height 0.22s ease;
}

.pv-header > .pv-header__meta {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: max(0.75rem, calc((100vw - var(--pv-max)) / 2 + 0.75rem));
    padding-right: max(0.75rem, calc((100vw - var(--pv-max)) / 2 + 0.75rem));
}

.pv-header__meta .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 34px;
    padding-top: 0;
    padding-bottom: 0.1rem;
    transition: min-height 0.22s ease, padding 0.22s ease;
}

.pv-header--scrolled .pv-header__meta {
    display: none !important;
}

.pv-header__micro-links a {
    color: var(--pv-ink-soft);
    text-decoration: none;
    font-weight: 600;
}

.pv-header__micro-links a:hover,
.pv-brand:hover {
    color: var(--pv-accent-deep);
}

.pv-navbar {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-right: max(0.75rem, calc((100vw - var(--pv-max)) / 2 + 0.75rem));
    padding-left: max(0.75rem, calc((100vw - var(--pv-max)) / 2 + 0.75rem));
    align-items: center;
    min-height: 86px;
    padding-top: 0;
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(30, 39, 48, 0.06);
}

.pv-banner {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: clamp(378px, 56vw, 558px);
    overflow: clip;
    background: #120f12;
}

.pv-banner--home {
    min-height: 750px;
}

.pv-banner--magazine,
.pv-banner--topic {
    min-height: 750px;
}

.pv-banner__media,
.pv-banner__video,
.pv-banner__slides,
.pv-banner__slide,
.pv-banner__overlay {
    position: absolute;
    inset: 0;
}

.pv-banner__media {
    z-index: -2;
}

.pv-banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv-banner__slides {
    z-index: -2;
}

.pv-banner__slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    animation: pvBannerSequence 18s ease-in-out infinite;
}

.pv-banner__slide--1 {
    animation-delay: 0s;
}

.pv-banner__slide--2 {
    animation-delay: 6s;
}

.pv-banner__slide--3 {
    animation-delay: 12s;
}

.pv-banner__overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(16, 12, 16, 0.82) 0%, rgba(16, 12, 16, 0.52) 36%, rgba(16, 12, 16, 0.14) 68%, rgba(16, 12, 16, 0.06) 100%),
        linear-gradient(180deg, rgba(16, 12, 16, 0.08) 0%, rgba(16, 12, 16, 0.24) 58%, rgba(16, 12, 16, 0.72) 100%);
}

.pv-banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    min-height: inherit;
    height: 100%;
}

.pv-banner__content {
    width: min(100%, 720px);
    height: 100%;
    padding: 2.55rem 0 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff7f3;
}

.pv-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.pv-banner__content h1 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.9rem, 7vw, 5.8rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.05em;
    max-width: 12.5ch;
    color: #ece6e1;
    -webkit-text-stroke: 1.4px rgba(47, 34, 39, 0.82);
    paint-order: stroke fill;
    text-shadow: 0 2px 10px rgba(47, 34, 39, 0.14);
}

.pv-banner--home .pv-banner__content h1 {
    max-width: 11.6ch;
    font-size: clamp(2.35rem, 5.4vw, 4.6rem);
}

.pv-banner--home .pv-banner__content {
    padding-top: 2.55rem;
    padding-bottom: 3.5rem;
    color: #2f2227;
    text-shadow: none;
}

.pv-banner--home .pv-banner__content p {
    color: rgba(244, 239, 242, 0.96);
    text-shadow: 0 1px 10px rgba(28, 18, 24, 0.42);
}

.pv-banner--home .pv-banner__eyebrow {
    background: rgba(255, 253, 249, 0.58);
    border-color: rgba(47, 34, 39, 0.12);
    color: rgba(109, 74, 82, 0.96);
}

.pv-banner--magazine .pv-banner__content,
.pv-banner--topic .pv-banner__content {
    position: relative;
    padding-top: 2.55rem;
    padding-bottom: 3.5rem;
    width: min(100%, 820px);
    color: #2f2227;
    text-shadow: none;
}

.pv-banner--magazine .pv-banner__content h1 {
    max-width: 11.6ch;
    font-size: clamp(2.35rem, 5.4vw, 4.6rem);
}

.pv-banner--topic .pv-banner__content h1 {
    max-width: 11.6ch;
    font-size: clamp(2.35rem, 5.4vw, 4.6rem);
}

.pv-banner--magazine .pv-banner__content p,
.pv-banner--topic .pv-banner__content p {
    margin-top: 0.75rem;
    max-width: 62ch;
    font-size: clamp(0.94rem, 1.15vw, 1rem);
    line-height: 1.5;
    color: rgba(255, 247, 243, 0.94);
    text-shadow: 0 2px 14px rgba(16, 12, 16, 0.5);
}

.pv-banner--magazine .pv-banner__eyebrow,
.pv-banner--topic .pv-banner__eyebrow {
    background: rgba(255, 253, 249, 0.58);
    border-color: rgba(47, 34, 39, 0.12);
    color: rgba(109, 74, 82, 0.96);
}

.pv-banner__content p {
    margin: 1.05rem 0 0;
    max-width: 58ch;
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    line-height: 1.72;
    color: rgba(255, 245, 241, 0.88);
}

.pv-banner__tablet-break {
    display: none;
}

.pv-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.55rem;
}

.pv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.92rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.pv-button--solid {
    background: linear-gradient(135deg, #f0c7b5 0%, #e8b49d 100%);
    color: #24191d;
}

.pv-button--solid:hover {
    color: #24191d;
}

.pv-button--ghost {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.08);
    color: #fff7f3;
}

.pv-button--ghost:hover {
    color: #fff7f3;
    background: rgba(255, 255, 255, 0.16);
}

.pv-banner__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.65rem;
}

.pv-banner__pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.68rem 0.96rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 247, 243, 0.94);
    font-size: 0.9rem;
    line-height: 1.35;
}

.pv-banner:not(.pv-banner--home) .pv-banner__pill:nth-child(3n + 1) {
    background: rgba(189, 105, 119, 0.3);
    border-color: rgba(246, 193, 199, 0.44);
}

.pv-banner:not(.pv-banner--home) .pv-banner__pill:nth-child(3n + 2) {
    background: rgba(103, 145, 128, 0.3);
    border-color: rgba(185, 219, 202, 0.42);
}

.pv-banner:not(.pv-banner--home) .pv-banner__pill:nth-child(3n + 3) {
    background: rgba(191, 145, 84, 0.3);
    border-color: rgba(239, 204, 153, 0.44);
}

@keyframes pvBannerSequence {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    8% {
        opacity: 1;
    }
    28% {
        opacity: 1;
    }
    36% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.pv-sketch-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
    width: min(100%, 930px);
    margin-left: auto;
    align-self: center;
}

.pv-sketch-link {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 128px;
    padding: 0.94rem 0.88rem 0.88rem;
    border-radius: 22px;
    border: 1px solid rgba(30, 39, 48, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(246, 241, 233, 0.84) 100%);
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(52, 39, 36, 0.05);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pv-sketch-link:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 93, 94, 0.3);
    background: linear-gradient(180deg, rgba(255, 244, 245, 0.94) 0%, rgba(248, 236, 231, 0.96) 100%);
    box-shadow: 0 18px 34px rgba(184, 93, 94, 0.12);
}

.pv-sketch-link:hover .pv-sketch-link__art {
    opacity: 1;
    transform: scale(0.94) translateY(-1px);
}

.pv-sketch-link:hover .pv-sketch-link__label {
    background: rgba(255, 253, 249, 0.92);
    box-shadow: 0 10px 22px rgba(52, 39, 36, 0.09);
}

.pv-sketch-link__art {
    position: absolute;
    inset: 0.08rem 0.08rem 0 0.08rem;
    display: grid;
    place-items: center;
    opacity: 0.96;
    transform: scale(0.9) translateY(0);
}

.pv-sketch-link__art img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.pv-sketch-link--male .pv-sketch-link__art img {
    transform: scaleX(-1);
}

.pv-sketch-link--female .pv-sketch-link__art,
.pv-sketch-link--male .pv-sketch-link__art {
    clip-path: inset(0 0 20px 0 round 22px);
}

.pv-sketch-link--male .pv-sketch-link__art {
    transform: scale(0.84) translateY(0);
}

.pv-sketch-link--male:hover .pv-sketch-link__art {
    transform: scale(0.88) translateY(-1px);
}

.pv-sketch-link__label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--pv-ink);
    align-self: center;
    margin-top: auto;
    padding: 0.14rem 0.56rem;
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.74);
    box-shadow: 0 8px 18px rgba(52, 39, 36, 0.05);
    text-align: center;
}

@media (min-width: 1200px) {
    .pv-navbar {
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }

    .pv-navbar .navbar-collapse {
        align-self: stretch;
        align-items: center;
    }
}

.pv-header__feature {
    padding: 0 0 1rem;
}

.pv-header-card {
    display: grid;
    gap: 0.35rem;
    max-width: 30rem;
    margin-left: auto;
    padding: 0.95rem 1.1rem 1rem;
    border: 1px solid rgba(30, 39, 48, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(246, 241, 233, 0.9) 100%);
    box-shadow: 0 16px 34px rgba(52, 39, 36, 0.06);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pv-header-card:hover {
    transform: translateY(-1px);
    border-color: rgba(184, 93, 94, 0.22);
    box-shadow: 0 18px 36px rgba(52, 39, 36, 0.09);
}

.pv-header-card__kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pv-accent-deep);
}

.pv-header-card strong {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.15;
}

.pv-header-card span:last-child {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--pv-ink-soft);
}

.pv-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    margin-left: -18px;
}

.pv-brand__mark {
    width: 108px;
    flex: 0 0 108px;
}

.pv-brand__wordmark {
    display: flex;
    align-items: center;
    width: auto;
    max-width: none;
}

.pv-brand__wordmark img {
    width: auto;
    height: 108px;
    max-width: none;
}

.navbar-toggler {
    border: 1px solid rgba(30, 39, 48, 0.14);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: var(--pv-ink);
    font-size: 0.95rem;
    font-weight: 700;
    padding-inline: 0.8rem !important;
}

.nav-link.active,
.nav-link:hover {
    color: var(--pv-accent-deep);
}

.pv-hero,
.pv-page-hero {
    padding: clamp(3rem, 6vw, 5rem) 0 2.4rem;
}

.pv-hero__grid,
.pv-page-hero__grid,
.pv-feature__grid,
.pv-journey__grid,
.pv-single__hero,
.pv-single__layout {
    display: grid;
    gap: 2rem;
}

.pv-hero__grid,
.pv-feature__grid,
.pv-journey__grid,
.pv-page-hero__grid,
.pv-single__hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
}

.pv-hero__copy h1,
.pv-page-hero__copy h1,
.pv-single__copy h1,
.pv-section-head h2 {
    margin: 0.5rem 0 1rem;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.pv-hero__copy h1 {
    font-size: clamp(2.9rem, 7vw, 5.5rem);
    max-width: 13ch;
}

.pv-page-hero__copy h1,
.pv-single__copy h1 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    max-width: 14ch;
}

.pv-hero__copy p,
.pv-page-hero__copy p,
.pv-single__copy p,
.pv-section-head p {
    font-size: 1.08rem;
    color: var(--pv-ink-soft);
    max-width: 60ch;
}

.pv-hero__visual,
.pv-page-hero__visual,
.pv-feature__media,
.pv-page-hero__feature,
.pv-single__visual,
.pv-journey__visual {
    border-radius: var(--pv-radius-xl);
    overflow: hidden;
    background: linear-gradient(180deg, #fff9f2 0%, #f2e8de 100%);
    border: 1px solid rgba(30, 39, 48, 0.05);
    box-shadow: var(--pv-shadow);
}

.pv-journey__visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.pv-hero__actions,
.pv-feature__meta,
.pv-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.pv-hero__facts {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.pv-hero__facts article,
.pv-topic-tile,
.pv-focus__card,
.pv-page-panel,
.pv-aside-card {
    padding: 1.4rem 1.5rem;
    border-radius: var(--pv-radius-lg);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--pv-line);
}

.pv-hero__facts strong,
.pv-topic-tile h2,
.pv-focus__card h3,
.pv-page-panel h2,
.pv-card__title,
.pv-feature__copy h2 {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
}

.pv-topic-strip,
.pv-focus,
.pv-magazine-preview,
.pv-feature,
.pv-journey,
.pv-page-sections,
.pv-magazine-feed,
.pv-single {
    padding: 1.2rem 0 4.2rem;
}

.pv-banner + .pv-topic-strip,
.pv-banner + .pv-page-sections,
.pv-banner + .pv-magazine-filter,
.pv-banner + .pv-magazine-feed {
    padding-top: 2.75rem;
}

.pv-magazine-filter {
    padding: 0.35rem 0 1.2rem;
}

.pv-magazine-filter__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    border-radius: var(--pv-radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--pv-line);
    box-shadow: 0 18px 38px rgba(47, 34, 39, 0.06);
}

.pv-magazine-filter__copy h2 {
    margin: 0.4rem 0 0.7rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.pv-magazine-filter__copy p {
    margin: 0;
    color: var(--pv-ink-soft);
    max-width: none;
}

.pv-magazine-filter__form {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.2fr) auto;
    gap: 0.9rem;
    align-items: end;
}

.pv-magazine-filter__field {
    display: grid;
    gap: 0.38rem;
}

.pv-magazine-filter__field label {
    color: var(--pv-ink);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pv-magazine-filter__field select,
.pv-magazine-filter__field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--pv-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--pv-ink);
    padding: 0.86rem 1rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.pv-magazine-filter__field select:focus,
.pv-magazine-filter__field input:focus {
    border-color: var(--pv-accent-deep);
    box-shadow: 0 0 0 3px rgba(125, 61, 80, 0.12);
}

.pv-magazine-filter__actions {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    justify-content: flex-start;
}

.pv-magazine-filter__actions .btn-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: var(--pv-accent-deep);
    color: #fff;
    padding: 0.78rem 1.35rem;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(125, 61, 80, 0.18);
}

.pv-magazine-filter__actions .btn-site:hover,
.pv-magazine-filter__actions .btn-site:focus {
    background: var(--pv-ink);
    color: #fff;
}

.pv-magazine-filter__reset {
    color: var(--pv-accent-deep);
    font-weight: 700;
    text-decoration: none;
}

.pv-magazine-filter__reset:hover,
.pv-magazine-filter__reset:focus {
    color: var(--pv-ink);
}

.pv-topic-strip__grid,
.pv-focus__grid,
.pv-grid,
.pv-page-sections__grid {
    display: grid;
    gap: 1.2rem;
}

.pv-topic-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pv-focus__grid,
.pv-grid,
.pv-page-sections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pv-page-sections__grid--women {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pv-page-panel--topic-link {
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pv-page-panel--topic-link:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 106, 115, 0.3);
    box-shadow: 0 22px 42px rgba(47, 34, 39, 0.08);
}

.pv-page-panel__illustration {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1rem;
    border-radius: 20px 20px 20px 7px;
    background: linear-gradient(145deg, rgba(217, 146, 151, 0.28), rgba(246, 241, 233, 0.95));
    color: var(--pv-accent-deep);
    font-size: 1.55rem;
    transform: rotate(-3deg);
}

.pv-page-panel__illustration i {
    transform: rotate(3deg);
}

.pv-page-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1rem;
    color: var(--pv-accent-deep);
    font-size: 0.9rem;
    font-weight: 800;
}

.pv-women-detail {
    padding: 2rem 0 4.5rem;
}

.pv-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    color: var(--pv-ink-soft);
    font-size: 0.88rem;
}

.pv-detail-breadcrumb a {
    color: var(--pv-accent-deep);
    font-weight: 800;
}

.pv-women-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--pv-line);
    border-radius: var(--pv-radius-xl);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--pv-shadow);
}

.pv-women-detail__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(2rem, 5vw, 4.2rem);
}

.pv-women-detail__icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.3rem;
    border-radius: 50% 50% 50% 18px;
    background: rgba(217, 146, 151, 0.2);
    color: var(--pv-accent-deep);
    font-size: 1.85rem;
}

.pv-women-detail__copy h1 {
    margin: 0.55rem 0 1rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.pv-women-detail__copy > p {
    margin: 0;
    color: var(--pv-ink-soft);
    font-size: 1.1rem;
    line-height: 1.75;
}

.pv-women-detail__image {
    min-height: 440px;
    margin: 0;
    background: var(--pv-surface-muted);
}

.pv-women-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv-women-detail__intro {
    max-width: 940px;
    margin: 2.6rem auto;
    text-align: center;
}

.pv-women-detail__intro p {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.55;
}

.pv-women-detail__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.pv-women-detail__facts article {
    padding: 1.4rem;
    border-radius: var(--pv-radius-md);
    background: rgba(255, 247, 243, 0.9);
    border: 1px solid rgba(217, 146, 151, 0.2);
}

.pv-women-detail__facts span {
    color: var(--pv-accent-deep);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.pv-women-detail__facts p {
    margin: 0.55rem 0 0;
    color: var(--pv-ink);
    font-weight: 700;
    line-height: 1.55;
}

.pv-women-detail__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2rem;
    align-items: start;
}

.pv-women-detail__chapters {
    display: grid;
    gap: 1rem;
}

.pv-women-detail__chapters article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.55rem;
    border-radius: var(--pv-radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--pv-line);
}

.pv-women-detail__chapter-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--pv-surface-soft);
    color: var(--pv-accent-deep);
}

.pv-women-detail__chapters h2,
.pv-women-detail__guide h2 {
    margin: 0.35rem 0 0.55rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.pv-women-detail__chapters p {
    margin: 0;
    color: var(--pv-ink-soft);
}

.pv-women-detail__guide {
    position: sticky;
    top: 1.5rem;
    padding: 1.6rem;
    border-radius: var(--pv-radius-lg);
    background: linear-gradient(160deg, #f6f1e9, #fff7f3);
    border: 1px solid var(--pv-line);
}

.pv-women-detail__diagram {
    display: grid;
    gap: 0.75rem;
    margin: 1.3rem 0;
}

.pv-women-detail__diagram div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    position: relative;
}

.pv-women-detail__diagram i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--pv-accent-deep);
    border: 1px solid rgba(217, 146, 151, 0.3);
}

.pv-women-detail__diagram span {
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
}

.pv-women-detail__guide > p {
    margin: 1rem 0 0;
    color: var(--pv-ink-soft);
    font-size: 0.86rem;
    line-height: 1.5;
}

.pv-women-detail__source {
    display: inline-flex;
    gap: 0.4rem;
    margin-top: 0.85rem;
    color: var(--pv-accent-deep);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.4;
}

.pv-women-detail__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.pv-topic-tile__eyebrow,
.pv-card__meta,
.pv-page-panel__index {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pv-accent-deep);
    font-weight: 800;
}

.pv-section-head {
    margin-bottom: 1.8rem;
}

.pv-focus > .container > .pv-section-head {
    padding-left: 1.5rem;
}

.pv-magazine-preview > .container > .pv-section-head {
    padding-left: 1.5rem;
}

.pv-section-head--split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
}

.pv-inline-link,
.pv-card__link {
    color: var(--pv-accent-deep);
    font-weight: 800;
}

.pv-inline-link:hover,
.pv-card__link:hover {
    color: var(--pv-accent);
}

.pv-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: var(--pv-radius-lg);
    overflow: hidden;
    border: 1px solid var(--pv-line);
    background: rgba(255, 255, 255, 0.75);
}

.pv-card__media {
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
}

.pv-card__media img,
.pv-feature__media img,
.pv-page-hero__feature img,
.pv-single__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv-card__body {
    padding: 1.35rem 1.35rem 1.5rem;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.9rem;
}

.pv-card__meta {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.pv-card__title {
    font-size: 1.55rem;
    margin: 0;
}

.pv-card__excerpt,
.pv-topic-tile p,
.pv-focus__card p,
.pv-page-panel p,
.pv-footer p,
.pv-aside-card p {
    color: var(--pv-ink-soft);
}

.pv-feature__copy,
.pv-page-hero__feature-copy {
    padding: 1.6rem;
}

.pv-page-hero__feature-copy {
    background: rgba(255, 255, 255, 0.76);
}

.pv-page-panel__index {
    display: inline-block;
    margin-bottom: 0.65rem;
}

.pv-page-intro,
.pv-page-recent {
    margin-bottom: 2rem;
}

.pv-page-intro__grid,
.pv-page-recent__layout {
    display: grid;
    gap: 1.25rem;
}

.pv-page-intro__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
}

.pv-page-intro__copy,
.pv-page-intro__notes,
.pv-page-recent__feature,
.pv-page-mini {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--pv-line);
    border-radius: var(--pv-radius-lg);
}

.pv-page-intro__copy {
    padding: 1.7rem 1.8rem;
}

.pv-page-intro__copy > .pv-kicker {
    display: block;
    text-align: center;
}

.pv-page-intro__copy h2,
.pv-page-recent__feature h3,
.pv-page-mini h3 {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pv-page-intro__copy h2 {
    margin: 0.45rem auto 1rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    width: 100%;
    max-width: none;
    text-align: center;
}

.pv-page-intro__copy p {
    margin: 0.9rem auto 0;
    color: var(--pv-ink-soft);
    font-size: 1.02rem;
    max-width: 58ch;
    text-align: center;
}

.pv-page-intro__notes {
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
}

.pv-page-note {
    padding: 1.05rem 1.1rem;
    border-radius: 1.15rem;
    background: rgba(255, 247, 243, 0.92);
    border: 1px solid rgba(232, 180, 157, 0.24);
    transform: translateX(0);
}

.pv-page-note:nth-child(2) {
    transform: translateX(18px);
}

.pv-page-note:nth-child(3) {
    transform: translateX(36px);
}

.pv-page-note h3 {
    margin: 0.35rem 0 0.55rem;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    font-size: 1.28rem;
}

.pv-page-note p {
    margin: 0;
    color: var(--pv-ink-soft);
}

.pv-page-recent__layout {
    grid-template-columns: 1fr;
    align-items: start;
}

.pv-page-recent__feature {
    overflow: hidden;
    display: grid;
    min-height: 100%;
}

.pv-page-recent__feature-media {
    aspect-ratio: 1.58 / 1;
    overflow: hidden;
}

.pv-page-recent__feature-media img,
.pv-page-mini__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv-page-recent__feature-body {
    display: grid;
    gap: 0.85rem;
    padding: 1.3rem 1.35rem 1.45rem;
}

.pv-page-recent__feature h3 {
    margin: 0;
    font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.pv-page-recent__feature p,
.pv-page-mini p {
    margin: 0;
    color: var(--pv-ink-soft);
}

.pv-page-recent__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.95rem;
    margin-top: 0.95rem;
}

.pv-page-mini {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: stretch;
    align-self: stretch;
    height: 100%;
    overflow: hidden;
}

.pv-page-mini__media {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

.pv-page-mini__media img {
    display: block;
}

.pv-page-mini__body {
    display: grid;
    align-content: start;
    grid-template-rows: auto auto 1fr;
    gap: 0.55rem;
    padding: 1rem 1.05rem;
    min-height: 190px;
}

.pv-page-mini h3 {
    margin: 0;
    font-size: 1.22rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.pv-page-mini .pv-card__meta {
    font-size: 0.77rem;
}

.pv-page-mini p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.pv-page-content {
    margin-top: 2rem;
    padding: 1.8rem;
    border-radius: var(--pv-radius-lg);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--pv-line);
}

.page-shell {
    padding: 2.25rem 0 4rem;
}

.legal-page {
    min-height: 40vh;
}

.legal-stack {
    max-width: 860px;
    padding: 2rem 2.1rem;
    border-radius: var(--pv-radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--pv-line);
    box-shadow: 0 20px 44px rgba(47, 34, 39, 0.06);
}

.legal-stack h1,
.legal-stack h2 {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--pv-ink);
}

.legal-stack h1 {
    margin: 0 0 1.2rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.legal-stack h2 {
    margin: 1.75rem 0 0.7rem;
    font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.legal-stack p {
    margin: 0.65rem 0 0;
    color: var(--pv-ink-soft);
}

.pv-page-content h2,
.pv-page-content h3,
.pv-single__content h2,
.pv-single__content h3 {
    font-family: "Fraunces", Georgia, serif;
    margin-top: 2rem;
}

.pv-contact-page {
    padding: 3rem 0 4.5rem;
}

.pv-contact-hero {
    max-width: 850px;
    margin-bottom: 2rem;
}

.pv-contact-hero h1,
.pv-contact-form-card h2,
.pv-contact-card h2,
.pv-contact-note h2 {
    font-family: "Fraunces", Georgia, serif;
    color: var(--pv-ink);
}

.pv-contact-hero h1 {
    max-width: 760px;
    margin: 0.4rem 0 0.85rem;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.pv-contact-hero > p {
    max-width: 760px;
    margin: 0;
    color: var(--pv-ink-soft);
    font-size: 1.08rem;
    line-height: 1.75;
}

.pv-contact-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.4fr);
    gap: 2rem;
    align-items: start;
}

.pv-contact-details {
    display: grid;
    gap: 1rem;
}

.pv-contact-card,
.pv-contact-form-card,
.pv-contact-note {
    border: 1px solid var(--pv-line);
    border-radius: var(--pv-radius-lg);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 44px rgba(47, 34, 39, 0.06);
}

.pv-contact-card,
.pv-contact-form-card {
    padding: clamp(1.4rem, 3vw, 2.2rem);
}

.pv-contact-card__icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 1.15rem;
    border-radius: 50%;
    background: rgba(217, 146, 151, 0.18);
    color: var(--pv-accent-deep);
    font-size: 1.35rem;
}

.pv-contact-card h2,
.pv-contact-form-card h2,
.pv-contact-note h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.pv-contact-card > p,
.pv-contact-form-card__head > p,
.pv-contact-note p {
    color: var(--pv-ink-soft);
}

.pv-contact-card dl {
    display: grid;
    gap: 1rem;
    margin: 1.4rem 0 0;
}

.pv-contact-card dl div {
    padding-top: 0.85rem;
    border-top: 1px solid var(--pv-line);
}

.pv-contact-card dt {
    margin-bottom: 0.2rem;
    color: var(--pv-ink-soft);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pv-contact-card dd {
    margin: 0;
}

.pv-contact-card a {
    color: var(--pv-accent-deep);
    font-weight: 700;
    text-decoration: none;
}

.pv-contact-note {
    display: flex;
    gap: 0.9rem;
    padding: 1.2rem;
    background: rgba(238, 244, 235, 0.88);
}

.pv-contact-note > i {
    color: var(--pv-secondary);
    font-size: 1.4rem;
}

.pv-contact-note h2 {
    font-size: 1.05rem;
}

.pv-contact-note p {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.pv-contact-form-card__head {
    margin-bottom: 1.5rem;
}

.pv-contact-form-card__head h2 {
    margin-top: 0.35rem;
}

.pv-contact-form-card__head > p {
    margin: 0.5rem 0 0;
}

.pv-contact-form-card .nbcc-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
}

.pv-contact-form-card .nbcc-field {
    margin: 0 0 1rem;
}

.pv-contact-form-card .nbcc-field label {
    display: block;
    margin-bottom: 0.38rem;
    color: var(--pv-ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.pv-contact-form-card .nbcc-field input,
.pv-contact-form-card .nbcc-field textarea {
    width: 100%;
    border: 1px solid var(--pv-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--pv-ink);
    padding: 0.8rem 0.9rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.pv-contact-form-card .nbcc-field textarea {
    min-height: 175px;
    resize: vertical;
}

.pv-contact-form-card .nbcc-field input:focus,
.pv-contact-form-card .nbcc-field textarea:focus {
    border-color: var(--pv-accent-deep);
    box-shadow: 0 0 0 3px rgba(125, 61, 80, 0.12);
}

.pv-contact-form-card .nbcc-field-honeypot {
    position: absolute !important;
    left: -10000px !important;
}

.pv-contact-form-card .nbcc-consent {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin: 0.3rem 0 1.25rem;
    color: var(--pv-ink-soft);
    font-size: 0.88rem;
    line-height: 1.5;
}

.pv-contact-form-card .nbcc-consent input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    flex: 0 0 auto;
    accent-color: var(--pv-accent-deep);
}

.pv-contact-form-card .nbcc-consent a {
    color: var(--pv-accent-deep);
    font-weight: 700;
}

.pv-contact-form-card .btn-site {
    border: 0;
    border-radius: 999px;
    background: var(--pv-accent-deep);
    color: #fff;
    padding: 0.8rem 1.35rem;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(125, 61, 80, 0.18);
}

.pv-contact-form-card .btn-site:hover,
.pv-contact-form-card .btn-site:focus {
    background: var(--pv-ink);
    color: #fff;
}

.pv-contact-form-card .nbcc-form-notice {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(217, 146, 151, 0.18);
}

.pv-single__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    margin-top: 2rem;
}

.pv-single__content {
    padding: 2rem;
    border-radius: var(--pv-radius-lg);
    background: rgba(255, 255, 255, 0.77);
    border: 1px solid var(--pv-line);
}

.pv-single__content::after {
    content: "";
    display: block;
    clear: both;
}

.pv-single__share {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
}

.pv-single__share .nbsoc-share-block {
    grid-column: 1;
    margin: 1.5rem 0 0;
}

.pv-single__content .nbmag-inline-media {
    float: right;
    width: min(46%, 420px);
    margin: 0.35rem 0 1.25rem 1.4rem;
    border-radius: calc(var(--pv-radius-lg) - 8px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(35, 35, 42, 0.08);
    box-shadow: 0 18px 38px rgba(30, 39, 48, 0.12);
}

.pv-single__content .nbmag-inline-media--align-left {
    float: left;
    margin: 0.35rem 1.4rem 1.25rem 0;
}

.pv-single__content .nbmag-inline-media--align-right {
    float: right;
    margin: 0.35rem 0 1.25rem 1.4rem;
}

.pv-single__content .nbmag-inline-media--size-compact {
    width: min(38%, 340px);
}

.pv-single__content .nbmag-inline-media--size-standard {
    width: min(46%, 420px);
}

.pv-single__content .nbmag-inline-media--size-roomy {
    width: min(52%, 470px);
}

.pv-single__content .nbmag-inline-media--graphic {
    background: linear-gradient(180deg, rgba(247, 243, 240, 0.98), rgba(255, 255, 255, 0.94));
}

.pv-single__content .nbmag-inline-media__image {
    display: block;
    width: 100%;
    height: auto;
}

.pv-single__content .nbmag-inline-media__caption {
    margin: 0;
    padding: 0.8rem 0.95rem 0.95rem;
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--pv-ink-soft);
}

.pv-single__content .nbmag-inline-media__caption em {
    font-style: normal;
}

.pv-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.pv-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid var(--pv-line);
    background: rgba(255, 255, 255, 0.82);
}

.pv-pagination .current {
    background: var(--pv-accent);
    color: #fff;
    border-color: transparent;
}

.pv-footer {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0 2.4rem;
    border-top: 1px solid rgba(30, 39, 48, 0.08);
    background: linear-gradient(180deg, rgba(243, 239, 230, 0.72), rgba(255, 255, 255, 0.96));
}

.pv-footer__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.pv-footer__brand {
    display: grid;
    grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
    align-items: center;
    max-width: 520px;
}

.pv-footer__brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0;
}

.pv-footer__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 3.2rem;
}

.pv-footer__brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pv-footer__brand-wordmark {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
}

.pv-footer__brand-wordmark img {
    width: min(100%, 15.75rem);
    height: auto;
    display: block;
}

.pv-footer__brand p {
    max-width: 48ch;
    margin: 0;
    line-height: 1.75;
    font-size: 1.08rem;
}

.pv-footer__heading {
    margin: 0 0 1rem;
    font-family: var(--pv-font-sans);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pv-accent-deep);
}

.site-footer__nav {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav li {
    margin: 0;
    border-bottom: 1px solid rgba(30, 39, 48, 0.1);
}

.site-footer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0;
    font-weight: 650;
    text-decoration: none;
}

.site-footer__link::after {
    content: "\2192";
    color: var(--pv-accent);
    transition: transform 0.2s ease;
}

.site-footer__link:hover {
    color: var(--pv-accent-deep);
}

.site-footer__link:hover::after {
    transform: translateX(0.25rem);
}

.pv-footer__notes {
    padding: 1.35rem 1.45rem;
    border: 1px solid rgba(30, 39, 48, 0.08);
    border-radius: var(--pv-radius-lg);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 36px rgba(30, 39, 48, 0.06);
}

.pv-footer__notes p {
    margin: 0 0 0.95rem;
    line-height: 1.65;
    font-size: 1.02rem;
}

.pv-footer__notes-meta {
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--pv-ink);
}

.pv-footer__notes-meta span {
    display: block;
}

.pv-footer__backtop {
    height: 0;
    margin: 0;
    overflow: visible;
}

.pv-back-to-top {
    position: fixed;
    right: 0.7rem;
    bottom: 3.15rem;
    z-index: 2147483647;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 38px;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(232, 180, 157, 0.96) 0%, rgba(183, 106, 115, 0.96) 100%);
    color: #fffdf9;
    box-shadow: 0 16px 32px rgba(47, 34, 39, 0.22);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pv-back-to-top__icon {
    font-size: 0.95rem;
    line-height: 1;
}

.pv-back-to-top__label {
    line-height: 1;
    white-space: nowrap;
}

.pv-back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(47, 34, 39, 0.28);
    color: #fffdf9;
}

.btn-dark {
    background: linear-gradient(135deg, var(--pv-ink) 0%, #364351 100%);
    border-color: transparent;
}

.btn-outline-dark {
    border-color: rgba(30, 39, 48, 0.16);
}

.btn-outline-dark:hover {
    background: rgba(30, 39, 48, 0.04);
    color: var(--pv-ink);
    border-color: rgba(30, 39, 48, 0.2);
}

@media (max-width: 1199.98px) {
    .pv-navbar {
        min-height: 82px;
    }

    .pv-sketch-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        margin: 0.75rem 0 0;
    }

    .pv-sketch-link {
        aspect-ratio: 1 / 1;
        min-height: 0;
        height: auto;
    }

    .pv-header__feature {
        padding-top: 0.35rem;
    }

    .pv-header-card {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .pv-banner {
        min-height: 414px;
    }

    .pv-banner--magazine,
    .pv-banner--topic {
        min-height: 620px;
    }

    .pv-banner__overlay {
        background:
            linear-gradient(180deg, rgba(16, 12, 16, 0.12) 0%, rgba(16, 12, 16, 0.28) 38%, rgba(16, 12, 16, 0.8) 100%);
    }

    .pv-banner__content {
        width: min(100%, 660px);
        padding: 2.35rem 0 3rem;
    }

    .pv-banner--magazine .pv-banner__content,
    .pv-banner--topic .pv-banner__content {
        width: min(100%, 680px);
    }

    .pv-hero__grid,
    .pv-page-hero__grid,
    .pv-feature__grid,
    .pv-journey__grid,
    .pv-single__hero,
    .pv-single__layout,
    .pv-footer__grid {
        grid-template-columns: 1fr;
    }

    .pv-hero__facts,
    .pv-topic-strip__grid,
    .pv-focus__grid,
    .pv-grid,
    .pv-page-sections__grid,
    .pv-page-intro__grid,
    .pv-page-recent__layout,
    .pv-page-recent__grid {
        grid-template-columns: 1fr;
    }

    .pv-section-head--split {
        display: block;
    }

    .pv-page-sections__grid--women,
    .pv-women-detail__hero,
    .pv-women-detail__content {
        grid-template-columns: 1fr;
    }

    .pv-women-detail__guide {
        position: static;
    }

    .pv-page-note:nth-child(2),
    .pv-page-note:nth-child(3) {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .pv-footer__brand {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pv-footer__backtop {
        height: 0;
        margin: 0;
        padding-right: 0;
    }

    .pv-back-to-top {
        right: 0.95rem;
        bottom: 3.2rem;
        min-height: 44px;
        padding: 0 0.95rem;
        font-size: 0.9rem;
    }

    .pv-header__micro-links {
        width: auto;
        justify-content: flex-end;
        gap: 1rem;
        margin-left: auto;
        font-size: 0.84rem;
    }

    .pv-header__meta {
        min-height: 34px;
        padding: 0 3.75rem 0.1rem 0;
        padding-right: 3.75rem;
    }

    .pv-header > .pv-header__meta {
        left: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .pv-header--scrolled .pv-header__meta {
        display: none !important;
    }

    .pv-header__topline .container {
        min-height: 0;
        padding-top: 0.2rem;
    }

    .pv-navbar {
        align-items: center;
        position: relative;
        min-height: 78px;
        padding: 0.35rem 3.75rem 0.35rem 0;
        justify-content: flex-start;
    }

    .pv-brand {
        gap: 0.55rem;
        margin-left: 0;
        margin-right: 0.75rem;
    }

    .navbar-toggler {
        position: absolute;
        top: 50%;
        right: 0;
        z-index: 3;
        margin: 0;
        flex: 0 0 auto;
        transform: translateY(-50%);
    }

    .pv-navbar .navbar-collapse {
        position: absolute;
        top: calc(100% + 0.3rem);
        left: 0;
        right: 0;
        z-index: 4;
        padding: 0.95rem;
        border: 1px solid rgba(30, 39, 48, 0.08);
        border-radius: 24px;
        background: rgba(255, 253, 249, 0.98);
        box-shadow: 0 18px 38px rgba(52, 39, 36, 0.1);
    }

    .pv-banner__video {
        object-position: 68% center;
    }

    .pv-banner__slide {
        background-position: 68% center;
    }

    .pv-banner {
        min-height: 378px;
    }

    .pv-banner--magazine,
    .pv-banner--topic {
        min-height: 520px;
    }

    .pv-banner__content {
        width: 100%;
        padding: 2rem 0 2.4rem;
    }

    .pv-banner__content h1 {
        max-width: 9.8ch;
    }

    .pv-banner--magazine .pv-banner__content h1,
    .pv-banner--topic .pv-banner__content h1 {
        max-width: 9.8ch;
        font-size: clamp(2.35rem, 5.4vw, 4.6rem);
    }


    .pv-banner__content p {
        max-width: 34ch;
        font-size: 1rem;
        line-height: 1.62;
    }

    .pv-banner__pills {
        gap: 0.65rem;
    }

    .pv-banner__pill {
        font-size: 0.85rem;
    }

    body {
        font-size: 17px;
    }

    .pv-sketch-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .pv-sketch-link {
        min-height: 116px;
        padding: 0.86rem 0.82rem;
    }

    .pv-sketch-link__label {
        font-size: 0.95rem;
    }

    .pv-hero__copy h1,
    .pv-page-hero__copy h1,
    .pv-single__copy h1 {
        max-width: none;
    }

    .pv-brand__mark {
        width: 82px;
        flex-basis: 82px;
    }

    .pv-brand__wordmark {
        width: auto;
        max-width: none;
    }

    .pv-brand__wordmark img {
        width: auto;
        height: 82px;
        max-width: none;
    }

    .pv-page-content,
    .pv-single__content,
    .pv-topic-tile,
    .pv-focus__card,
    .pv-page-panel,
    .pv-page-intro__copy,
    .pv-page-intro__notes,
    .pv-aside-card,
    .pv-hero__facts article {
        padding: 1.15rem 1.15rem 1.25rem;
    }

    .pv-page-intro__copy h2 {
        max-width: none;
    }

    .pv-focus > .container > .pv-section-head {
        padding-left: 1.15rem;
    }

    .pv-magazine-preview > .container > .pv-section-head {
        padding-left: 1.15rem;
    }

    .pv-single__content .nbmag-inline-media,
    .pv-single__content .nbmag-inline-media--align-left,
    .pv-single__content .nbmag-inline-media--align-right,
    .pv-single__content .nbmag-inline-media--size-compact,
    .pv-single__content .nbmag-inline-media--size-standard,
    .pv-single__content .nbmag-inline-media--size-roomy {
        float: none;
        width: 100%;
        max-width: none;
        margin: 1rem 0 1.15rem;
    }

    .pv-single__share {
        display: block;
    }

    .pv-single__share .nbsoc-share-block {
        margin-top: 1rem;
    }

    .pv-contact-page {
        padding: 2rem 0 3rem;
    }

    .pv-contact-layout,
    .pv-contact-form-card .nbcc-field-grid {
        grid-template-columns: 1fr;
    }

    .pv-contact-layout {
        gap: 1rem;
    }

    .pv-women-detail {
        padding: 1.3rem 0 3rem;
    }

    .pv-women-detail__hero,
    .pv-women-detail__facts {
        grid-template-columns: 1fr;
    }

    .pv-women-detail__hero {
        min-height: 0;
    }

    .pv-women-detail__image {
        min-height: 280px;
        order: -1;
    }

    .pv-women-detail__copy {
        padding: 1.4rem;
    }

    .pv-women-detail__copy h1 {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }

    .pv-women-detail__chapters article {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .pv-banner .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .pv-single__copy,
    .pv-single__copy h1,
    .pv-single__copy p,
    .pv-single__meta {
        width: 100%;
        max-width: none;
    }

    .pv-banner--home .pv-banner__content h1,
    .pv-banner--magazine .pv-banner__content h1,
    .pv-banner--topic .pv-banner__content h1 {
        font-size: clamp(2.85rem, 6.6vw, 4.1rem);
    }

    .pv-banner__tablet-break {
        display: block;
    }

    .pv-page-recent > .pv-section-head {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .pv-header--scrolled .pv-header__meta {
        display: none !important;
    }

    .pv-banner__content {
        padding-left: 0.15rem;
        padding-right: 0.15rem;
    }

    .pv-journey .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .pv-journey__copy {
        padding-left: 0.15rem;
    }

    .pv-footer__grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        gap: 2rem 2.5rem;
    }

    .pv-footer__brand {
        grid-column: 1 / -1;
        width: min(100%, 620px);
        max-width: none;
        margin: 0 auto;
        text-align: left;
    }

    .pv-footer__brand-lockup {
        justify-content: flex-start;
    }

    .pv-footer__brand p {
        margin-right: auto;
        margin-left: auto;
    }

    .pv-footer__nav {
        padding-left: 1.25rem;
    }

    .pv-footer__backtop {
        height: 0;
        margin: 0;
        padding-right: 0;
    }

.pv-back-to-top {
        right: 1.15rem;
        bottom: 3.25rem;
        min-height: 44px;
        padding: 0 0.95rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 991.98px) {
    .pv-magazine-filter__panel,
    .pv-magazine-filter__form {
        grid-template-columns: 1fr;
    }

    .pv-magazine-filter__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
.pv-forum-heading {
    padding: 1.25rem 0 0;
}

.pv-forum-heading h1 {
    display: inline-block;
    margin: 0;
    padding: 0.65rem 1.15rem;
    border-radius: 14px;
    background: #f7eee9;
    color: #3f3036;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}
