/*
Theme Name: Paper Folds Block
Theme URI: https://paperfoldsnews.com/
Author: Rose Media Co. LLC
Description: Native WordPress block theme for Paper Folds News.
Version: 1.3.11
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: paperfolds-block
*/

:root {
    --pf-ink: #1c1c1c;
    --pf-teal: #0b3d47;
    --pf-mid-teal: #1a7a8a;
    --pf-gold: #e8a020;
    --pf-cream: #f2ede4;
    --pf-line: rgba(11, 61, 71, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

a {
    transition: color 0.18s ease, opacity 0.18s ease;
}

.pf-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-sizing: border-box;
    padding: 1.05rem 1.5rem 0.85rem !important;
    border-top: 6px solid var(--pf-gold);
    border-bottom: 2px solid var(--pf-teal);
    box-shadow: 0 5px 18px rgba(11, 61, 71, 0.08);
}

.admin-bar .pf-site-header {
    top: 32px;
}

.pf-brand-row {
    min-height: 54px;
}

.pf-site-header > .wp-block-group.alignwide {
    width: 100% !important;
    max-width: 1252px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.pf-site-header > .wp-block-group.alignwide:last-of-type {
    flex-wrap: nowrap !important;
    gap: 0.35rem;
    margin-block-start: 0.85rem !important;
    padding-bottom: 0.2rem;
}

.pf-brand-lockup {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--pf-teal);
    text-decoration: none;
}

.pf-brand-logo-image {
    display: block;
    width: clamp(280px, 25vw, 360px);
    height: auto;
}

.pf-brand-plane {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 72px;
    height: 54px;
    flex: 0 0 72px;
    margin-left: -14px;
    transform: translateY(-7px);
}

.pf-brand-plane img {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.pf-brand-plane-tail {
    position: absolute;
    left: 0;
    top: 17px;
    width: 56px;
    height: 32px;
    color: rgba(91, 179, 192, 0.58);
    pointer-events: none;
    transform: rotate(-6deg);
    transform-origin: 100% 50%;
}

.pf-brand-copy {
    display: flex;
    flex-direction: column;
}

.pf-brand-wordmark {
    color: var(--pf-teal);
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(1.95rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.pf-brand-name {
    margin: 0;
    line-height: 0.9;
}

.pf-brand-name a {
    text-decoration: none;
}

.pf-tagline {
    margin: 7px 0 0;
    letter-spacing: 2px;
    color: var(--pf-gold);
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.pf-header-tools {
    white-space: nowrap;
}

.pf-weather-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px 14px !important;
    border: 1px solid rgba(11, 61, 71, 0.12) !important;
    border-radius: 100px !important;
    background: rgba(11, 61, 71, 0.04);
    color: var(--pf-teal) !important;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px;
    line-height: 1;
    text-transform: uppercase;
}

.pf-weather-widget {
    position: relative;
    z-index: 2;
    outline: none;
}

.pf-weather-widget:hover,
.pf-weather-widget:focus-within {
    z-index: 1001;
}

.pf-weather-widget:hover .pf-weather-pill,
.pf-weather-widget:focus-within .pf-weather-pill {
    border-color: var(--pf-teal) !important;
    background: rgba(11, 61, 71, 0.08);
}

.pf-weather-pill strong {
    font-weight: 900;
}

.pf-weather-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: #e8a020;
}

.pf-weather-arrow {
    margin-left: 1px;
    font-size: 0.65rem;
}

.pf-weather-widget:hover .pf-weather-arrow,
.pf-weather-widget:focus-within .pf-weather-arrow {
    transform: rotate(180deg);
}

.pf-weather-popover {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 380px;
    box-sizing: border-box;
    padding: 1.2rem;
    border: 1px solid rgba(11, 61, 71, 0.14);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(11, 61, 71, 0.12);
    color: var(--pf-ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s cubic-bezier(.16, 1, .3, 1);
}

.pf-weather-widget:hover .pf-weather-popover,
.pf-weather-widget:focus-within .pf-weather-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pf-weather-popover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--pf-teal), #f5c423);
}

.pf-weather-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.pf-weather-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--pf-teal);
    font-family: var(--wp--preset--font-family--league-spartan), sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
}

.pf-weather-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
}

.pf-weather-report-label {
    color: #6e7475;
    font-family: monospace;
    font-size: .68rem;
    letter-spacing: .5px;
}

.pf-forecast-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.pf-forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    border: 1px solid rgba(11, 61, 71, .03);
    border-radius: 12px;
    background: rgba(11, 61, 71, .04);
    font-size: .85rem;
    text-align: center;
}

.pf-forecast-name {
    color: #6e7475;
    font-size: .7rem;
    font-weight: 700;
}

.pf-forecast-symbol {
    min-height: 23px;
    font-size: 1.2rem;
}

.pf-forecast-baro {
    color: var(--pf-gold);
    font-family: monospace;
    font-size: .65rem;
    font-weight: 700;
}

.pf-forecast-alert {
    border-color: rgba(200, 68, 10, .25);
    background: rgba(200, 68, 10, .08);
}

.pf-forecast-alert .pf-forecast-baro {
    color: #c8440a;
}

.pf-nav {
    width: auto !important;
    flex: 1 1 auto;
    padding-top: 2px;
}

.pf-nav .wp-block-navigation__container {
    flex-wrap: nowrap !important;
    gap: 0.35rem !important;
}

.pf-site-header > .wp-block-group.alignwide:last-of-type > .wp-block-buttons {
    flex: 0 0 auto;
    margin-left: auto;
}

.pf-nav .wp-block-navigation-item__content {
    padding: 6px 12px;
    border-radius: 6px;
    color: #5c5a57 !important;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.pf-nav .wp-block-navigation-item__content:hover {
    background: rgba(11, 61, 71, 0.05);
    color: var(--pf-teal) !important;
}

.pf-nav .current-menu-item > .wp-block-navigation-item__content {
    border-radius: 6px;
    background: var(--pf-teal);
    color: #fff !important;
}

.pf-donate .wp-block-button__link {
    padding: 6px 14px;
    border-radius: 100px !important;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (min-width: 901px) {
    .pf-site-header > .wp-block-group.alignwide:last-of-type {
        justify-content: center !important;
    }

    .pf-nav {
        flex: 0 1 auto;
    }

    .pf-site-header > .wp-block-group.alignwide:last-of-type > .wp-block-buttons {
        margin-left: 18px;
    }
}

body.pf-donation-open {
    overflow: hidden;
}

.pf-donation-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 17, 21, 0.78);
}

.pf-donation-modal[hidden] {
    display: none;
}

.pf-donation-modal__card {
    position: relative;
    width: min(920px, 96vw);
    max-height: 92vh;
    overflow-y: auto;
    padding: clamp(24px, 4vw, 42px);
    border-top: 6px solid var(--pf-gold);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.pf-donation-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--pf-teal);
    background: var(--pf-cream);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.pf-donation-modal__eyebrow {
    margin: 0 50px 6px 0;
    color: var(--pf-gold);
    font-family: var(--wp--preset--font-family--league-spartan), sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.pf-donation-modal h2 {
    margin: 0 50px 8px 0;
    color: var(--pf-teal);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.pf-donation-modal__intro {
    margin: 0 0 22px;
    color: #48575a;
    font-size: 1rem;
}

.pf-donation-modal__one-time {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 20px;
    border: 2px solid var(--pf-gold);
    border-radius: 10px;
    color: var(--pf-teal);
    background: rgba(232, 160, 32, 0.08);
    text-decoration: none;
}

.pf-donation-modal__one-time strong {
    font-family: var(--wp--preset--font-family--league-spartan), sans-serif;
    font-size: 1.1rem;
}

.pf-donation-modal__one-time span {
    color: #48575a;
    font-size: 0.9rem;
}

.pf-donation-modal__divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0 16px;
    color: var(--pf-teal);
    font-family: var(--wp--preset--font-family--league-spartan), sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.pf-donation-modal__divider::before,
.pf-donation-modal__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--pf-line);
}

.pf-donation-modal__pricing {
    min-height: 260px;
}

.pf-donation-modal__manage,
.pf-donation-modal__note {
    display: block;
    margin-top: 16px;
    text-align: center;
    font-size: 0.86rem;
}

.pf-donation-modal__manage {
    color: var(--pf-mid-teal);
}

.pf-donation-modal__note {
    margin-bottom: 0;
    color: #667477;
}

body:has(.pf-football-schedules--single) .pf-nav .wp-block-navigation-item:nth-child(4) > .wp-block-navigation-item__content {
    background: var(--pf-teal);
    color: #fff !important;
}

body.home .pf-nav .wp-block-navigation-item:first-child > .wp-block-navigation-item__content {
    background: var(--pf-teal);
    color: #fff !important;
}

.pf-canvas {
    background-image:
        linear-gradient(rgba(11, 61, 71, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 61, 71, 0.025) 1px, transparent 1px);
    background-size: 30px 30px;
}

.pf-main {
    padding-top: clamp(22px, 3.5vw, 38px);
    padding-bottom: clamp(55px, 8vw, 90px);
}

.pf-lead-columns {
    gap: clamp(38px, 6vw, 74px);
    align-items: flex-start;
}

.pf-lead-query .wp-block-post-template {
    margin: 0;
}

.pf-featured-image {
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 16 / 9 !important;
}

.pf-featured-image img {
    display: block;
    aspect-ratio: 16 / 9 !important;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center 24%;
}

.pf-story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 15px;
    font-size: 1.05rem;
    line-height: 1.3;
    letter-spacing: 0.6px;
}

.pf-story-meta a,
.pf-story-meta time {
    font-size: inherit !important;
}

.pf-story-meta .wp-block-post-terms,
.pf-story-meta .wp-block-post-date {
    font-size: 1.05rem !important;
    font-weight: 400 !important;
}

.pf-story-meta .wp-block-post-terms a,
.pf-story-meta .wp-block-post-date time {
    font-weight: 400 !important;
}

.pf-story-meta .taxonomy-category a {
    color: var(--pf-gold);
}

.pf-lead-title {
    margin-top: 22px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 3.6vw, 3.25rem) !important;
    line-height: 1.08;
}

.pf-lead-title a,
.pf-recent-title a,
.pf-card-title a {
    color: var(--pf-teal) !important;
    text-decoration: none;
}

.pf-lead-title a:hover,
.pf-recent-title a:hover,
.pf-card-title a:hover,
.pf-secondary-title a:hover {
    color: var(--pf-mid-teal) !important;
}

.pf-lead-excerpt {
    margin-top: 0;
    line-height: 1.7;
}

.pf-section-title {
    padding-bottom: 9px;
    border-bottom: 2px solid var(--pf-teal);
    letter-spacing: 1px;
}

.pf-recent-list {
    margin: 0;
}

.pf-recent-list > li {
    padding: 19px 0;
    border-bottom: 1px solid var(--pf-line);
}

.pf-recent-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--pf-gold);
    font-size: 1.05rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.pf-recent-meta a,
.pf-recent-meta time {
    font-size: inherit !important;
}

.pf-recent-meta .wp-block-post-terms,
.pf-recent-meta .wp-block-post-date {
    font-size: 1.05rem !important;
    font-weight: 400 !important;
}

.pf-recent-meta .wp-block-post-terms a,
.pf-recent-meta .wp-block-post-date time {
    font-weight: 400 !important;
}

.pf-recent-title,
.pf-recent-title a {
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.28;
    font-family: 'Google Sans Flex', sans-serif !important;
    font-weight: 400 !important;
}

.pf-secondary-features {
    margin-top: clamp(42px, 6vw, 68px);
}

.pf-secondary-features > *,
.pf-category-section > * {
    width: 100%;
    max-width: none !important;
}

.pf-secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 44px);
    margin: 24px 0 0;
}

.pf-secondary-grid > li {
    margin: 0;
}

.pf-secondary-image {
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 16 / 9;
}

.pf-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf-secondary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 14px;
    color: var(--pf-gold);
    letter-spacing: 0.5px;
}

.pf-secondary-title {
    margin: 12px 0 8px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.12;
}

.pf-secondary-title a {
    color: var(--pf-teal) !important;
    text-decoration: none;
}

.pf-secondary-excerpt {
    margin-top: 0;
    line-height: 1.55;
}

.pf-category-section {
    margin-top: clamp(58px, 8vw, 88px);
    padding: clamp(24px, 4vw, 42px);
    border-top: 4px solid var(--pf-teal);
    border-radius: 8px;
    background: rgba(242, 237, 228, 0.58);
}

.pf-category-header {
    padding-bottom: 11px;
    border-bottom: 1px solid var(--pf-line);
}

.pf-category-grid {
    gap: clamp(22px, 3vw, 36px);
}

.pf-category-grid > .wp-block-column {
    overflow: hidden;
    padding: 0 18px 8px;
    border: 1px solid rgba(11, 61, 71, 0.13);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(11, 61, 71, 0.06);
}

.pf-category-grid > .wp-block-column > h3 {
    margin: 0 -18px 16px !important;
    padding: 12px 18px;
    border-bottom: 3px solid var(--pf-gold);
    background: var(--pf-teal);
    color: #fff !important;
    letter-spacing: 0.06em;
}

.pf-category-query .wp-block-post-template {
    margin: 0;
}

.pf-category-query .wp-block-post {
    padding: 14px 0;
    border-bottom: 1px solid rgba(11, 61, 71, 0.08);
}

.pf-category-query .wp-block-post:first-child {
    padding-top: 0;
}

.pf-category-query .wp-block-post:not(:first-child) {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
        "thumb date"
        "thumb title";
    column-gap: 12px;
    align-items: start;
}

.pf-category-query .wp-block-post:not(:first-child) .pf-card-image {
    grid-area: thumb;
    margin: 0;
}

.pf-category-query .wp-block-post:not(:first-child) .pf-card-image img {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
}

.pf-category-query .wp-block-post:not(:first-child) .wp-block-post-date {
    grid-area: date;
    margin: 0 0 4px;
    color: #788183;
    font-size: 0.68rem;
    line-height: 1.2;
}

.pf-category-query .wp-block-post:not(:first-child) .pf-card-title {
    grid-area: title;
    margin: 0;
    font-size: 0.93rem !important;
    line-height: 1.18;
}

.pf-category-query .wp-block-post:first-child .pf-card-image {
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 5px;
}

.pf-category-query .wp-block-post:first-child .wp-block-post-date {
    color: #788183;
    font-size: 0.72rem;
}

.pf-category-query .wp-block-post:first-child .pf-card-title {
    margin-top: 7px;
    font-size: 1.2rem !important;
    line-height: 1.18;
}

.pf-card-image img {
    aspect-ratio: 16 / 10;
    width: 100%;
    object-fit: cover;
}

.pf-card-title {
    margin-top: 8px;
    margin-bottom: 6px;
    line-height: 1.27;
}

.pf-explore-topics {
    margin-top: clamp(28px, 4vw, 42px);
    padding-top: 22px;
    border-top: 2px solid var(--pf-teal);
}

.pf-explore-topics h3 {
    margin: 0 0 16px;
    color: var(--pf-teal);
    font-family: var(--wp--preset--font-family--league-spartan), sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.pf-topic-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pf-topic-links a {
    padding: 9px 14px;
    border: 1px solid rgba(11, 61, 71, 0.22);
    border-radius: 999px;
    color: var(--pf-teal);
    background: #fff;
    font-family: var(--wp--preset--font-family--league-spartan), sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-decoration: none;
}

.pf-topic-links a:hover,
.pf-topic-links a:focus-visible {
    border-color: var(--pf-teal);
    color: #fff;
    background: var(--pf-teal);
}

.pf-newsletter {
    margin-top: clamp(58px, 8vw, 88px);
    border-top: 4px solid var(--pf-teal);
}

.pf-site-footer {
    margin-top: 0;
    font-family: "Roboto", Arial, sans-serif;
}

.pf-footer-columns {
    align-items: flex-start;
}

.pf-footer-brand-logo {
    display: inline-block;
    width: min(240px, 100%);
    margin-bottom: 1rem;
}

.pf-footer-brand-logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.pf-site-footer .wp-block-site-title,
.pf-site-footer .wp-block-site-title a {
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

.pf-site-footer h2,
.pf-site-footer h3 {
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    line-height: 1.5 !important;
}

.pf-site-footer p,
.pf-site-footer li,
.pf-site-footer li a,
.pf-footer-links a {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
}

.pf-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.pf-footer-links a:hover {
    color: #f5c423;
}

.pf-single-main {
    padding-top: clamp(40px, 6vw, 72px);
    padding-bottom: clamp(55px, 8vw, 90px);
}

.pf-single-header {
    width: 100%;
    max-width: 1180px;
}

.pf-single-header > * {
    width: 100%;
    max-width: 1180px !important;
}

.pf-single-title {
    font-size: clamp(2.25rem, 4.2vw, 3.5rem) !important;
    line-height: 1.07;
}

.pf-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.pf-updated-date {
    font-family: var(--wp--preset--font-family--league-spartan);
    font-size: 0.72rem;
    font-weight: 600;
}

.pf-single-image {
    display: block;
    width: 100%;
    max-width: 900px !important;
    aspect-ratio: 5 / 3;
    margin-right: auto !important;
    margin-left: auto !important;
    overflow: hidden;
    border-radius: 5px;
    background: transparent;
}

.pf-single-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-height: none;
    object-fit: cover !important;
    object-position: center top !important;
}

.pf-single-image--expandable {
    cursor: zoom-in;
}

.pf-single-image--expandable:focus-visible {
    outline: 3px solid var(--pf-gold);
    outline-offset: 4px;
}

body.pf-lightbox-open {
    overflow: hidden;
}

.pf-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(4, 17, 21, 0.94);
    cursor: zoom-out;
}

.pf-image-lightbox[hidden] {
    display: none;
}

.pf-image-lightbox__image {
    display: block;
    width: auto;
    height: auto;
    max-width: min(94vw, 1400px);
    max-height: 92vh;
    object-fit: contain;
    cursor: default;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.pf-image-lightbox__close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 1;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    background: rgba(11, 61, 71, 0.82);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.pf-image-lightbox__close:hover,
.pf-image-lightbox__close:focus-visible {
    color: var(--pf-teal);
    background: #fff;
    outline: none;
}

.pf-single-content {
    font-size: 1.08rem;
    line-height: 1.72;
}

.pf-single-content > * {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.pf-single-content > .alignwide {
    max-width: 1100px;
}

.pf-single-content > .alignfull {
    max-width: none;
}

.pf-archive-loop .wp-block-post {
    padding: 24px 0;
    border-bottom: 1px solid var(--pf-line);
}

.pf-author-profile {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    margin: 0 0 42px;
    padding: 32px;
    border-top: 5px solid var(--pf-gold);
    border-radius: 18px;
    background: var(--pf-cream);
}

.pf-author-profile__image {
    display: block;
    width: 160px;
    height: 160px;
    border: 5px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(11, 61, 71, 0.16);
}

.pf-author-profile__eyebrow {
    margin: 0 0 6px;
    color: var(--pf-mid-teal);
    font-family: "League Spartan", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pf-author-profile h1 {
    margin: 0 0 12px;
    color: var(--pf-teal);
    font-family: "Calistoga", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.05;
}

.pf-author-profile__bio,
.pf-author-profile__bio p {
    margin: 0;
    color: #39494c;
    font-size: 1.08rem;
    line-height: 1.65;
}

.pf-author-stories-title {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pf-teal);
    color: var(--pf-teal);
}

.pf-about {
    position: relative;
    left: 50%;
    width: min(1252px, calc(100vw - 48px));
    max-width: none;
    margin: 0;
    transform: translateX(-50%);
}

.pf-about__hero,
.pf-about__section,
.pf-about__contact {
    margin-bottom: 42px;
    padding: clamp(28px, 5vw, 64px);
    border-radius: 22px;
}

.pf-about__hero {
    border-top: 7px solid var(--pf-gold);
    background: var(--pf-teal);
    color: #fff;
}

.pf-about__eyebrow {
    margin: 0 0 10px;
    color: var(--pf-mid-teal);
    font-family: "League Spartan", sans-serif;
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pf-about__hero .pf-about__eyebrow {
    color: var(--pf-gold);
}

.pf-about h1,
.pf-about h2,
.pf-about h3 {
    font-family: "Calistoga", serif;
    font-weight: 400;
}

.pf-about__hero h1 {
    max-width: 900px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.06;
}

.pf-about__hero p {
    max-width: 880px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.pf-about__hero .pf-about__lede {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.pf-about__hero .pf-about__motto {
    margin-bottom: 0;
    color: var(--pf-gold);
    font-family: "League Spartan", sans-serif;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.pf-about__section {
    background: var(--pf-cream);
}

.pf-about__section > h2,
.pf-about__contact h2 {
    margin: 0 0 26px;
    color: var(--pf-teal);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.pf-about__staff-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.pf-about__staff-card {
    padding: 28px;
    border: 1px solid rgba(11, 61, 71, 0.12);
    border-radius: 18px;
    background: #fff;
}

.pf-about__staff-photo {
    display: block;
    width: 132px;
    margin-bottom: 20px;
}

.pf-about__staff-photo img {
    display: block;
    width: 132px;
    height: 132px;
    border: 5px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(11, 61, 71, 0.18);
}

.pf-about__staff-card h3 {
    margin: 0 0 4px;
    font-size: 1.65rem;
}

.pf-about__staff-card h3 a {
    color: var(--pf-teal);
    text-decoration: none;
}

.pf-about__staff-title {
    margin: 0 0 16px;
    color: var(--pf-mid-teal);
    font-family: "League Spartan", sans-serif;
    font-size: 0.88rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pf-about__staff-bio,
.pf-about__staff-bio p,
.pf-about__commitment p,
.pf-about__contact p {
    color: #39494c;
    line-height: 1.7;
}

.pf-about__profile-link {
    color: var(--pf-mid-teal);
    font-family: "League Spartan", sans-serif;
    font-weight: 600;
}

.pf-about__policy-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.pf-about__policy-links a {
    padding: 16px 18px;
    border: 2px solid var(--pf-teal);
    border-radius: 12px;
    color: var(--pf-teal);
    font-family: "League Spartan", sans-serif;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.pf-about__policy-links a:hover,
.pf-about__policy-links a:focus-visible {
    background: var(--pf-teal);
    color: #fff;
}

/* Newsroom policy pages */
.pf-policy {
	position: relative;
	left: 50%;
	width: min(1120px, calc(100vw - 48px));
	max-width: none;
	margin: 28px auto 64px;
	transform: translateX(-50%);
	color: #263b40;
}

.pf-policy-page .wp-block-post-title {
	display: none;
}

.pf-policy__header {
	padding: clamp(32px, 5vw, 64px);
	border-top: 6px solid #eea616;
	border-radius: 28px;
	background: #0b4650;
	color: #fff;
}

.pf-policy__eyebrow,
.pf-policy__date {
	margin: 0 0 12px;
	color: #f5b21d;
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.pf-policy__header h1 {
	max-width: 900px;
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(2.4rem, 5vw, 4.7rem);
	line-height: .98;
}

.pf-policy__date {
	margin-bottom: 24px;
	color: #d7e4e6;
	font-weight: 500;
}

.pf-policy__intro {
	max-width: 850px;
	margin: 0;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.65;
}

.pf-policy__body {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 24px;
}

.pf-policy__body section {
	padding: 28px 30px;
	border: 1px solid #d9dedf;
	border-radius: 18px;
	background: #fff;
}

.pf-policy__body h2 {
	margin: 0 0 14px;
	color: #0b4650;
	font-size: 1.65rem;
}

.pf-policy__body p {
	margin: 0 0 14px;
	font-size: 1.04rem;
	line-height: 1.7;
}

.pf-policy__body p:last-child { margin-bottom: 0; }
.pf-policy a { color: #087b8e; }

.pf-policy__contact {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 24px;
	padding: 24px 30px;
	border-bottom: 6px solid #eea616;
	border-radius: 18px;
	background: #f2ede4;
}

@media (max-width: 720px) {
	.pf-policy { width: min(100vw - 24px, 1120px); margin: 16px auto 40px; }
	.pf-policy__header { padding: 28px 22px; border-radius: 20px; }
	.pf-policy__body { grid-template-columns: 1fr; gap: 14px; }
	.pf-policy__body section { padding: 22px 20px; }
}

.pf-about__contact {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 7px solid var(--pf-gold);
    background: #fff;
    box-shadow: 0 12px 34px rgba(11, 61, 71, 0.1);
}

.pf-about__contact h2 {
    margin-bottom: 12px;
}

.pf-about__contact p {
    max-width: 700px;
    margin-bottom: 0;
}

.pf-about__email-button {
    flex: 0 0 auto;
    padding: 15px 20px;
    border-radius: 999px;
    background: var(--pf-orange);
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-weight: 650;
    text-decoration: none;
}

@media (max-width: 782px) {
    .admin-bar .pf-site-header {
        top: 46px;
    }
}

@media (max-width: 760px) {
	.pf-about {
		width: calc(100vw - 48px);
		margin-inline: 0 !important;
	}

	.pf-about__hero,
	.pf-about__section,
	.pf-about__contact {
		margin-bottom: 24px;
		padding: 24px 20px;
		border-radius: 16px;
	}

	.pf-about__hero h1 {
		font-size: 2.35rem;
	}

	.pf-about__staff-grid,
	.pf-about__policy-links {
		grid-template-columns: 1fr;
	}

	.pf-about__staff-card {
		padding: 22px;
	}

	.pf-about__staff-photo,
	.pf-about__staff-photo img {
		width: 108px;
		height: 108px;
	}

	.pf-about__contact {
		display: block;
	}

	.pf-about__email-button {
		display: inline-block;
		margin-top: 20px;
	}

	.pf-author-profile {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 30px;
		padding: 22px 18px;
		text-align: center;
	}

	.pf-author-profile__avatar {
		justify-self: center;
	}

	.pf-author-profile__image {
		width: 96px;
		height: 96px;
	}

	.pf-author-profile h1 {
		font-size: 1.75rem;
	}

	.pf-author-profile__bio,
	.pf-author-profile__bio p {
		font-size: 1rem;
	}

    .pf-site-header {
        position: sticky;
        min-height: 64px;
        padding: 8px 12px !important;
    }

    .pf-header-tools {
        display: none !important;
    }

    .pf-brand-row {
        min-height: 46px;
        padding-right: 132px;
    }

    .pf-brand-lockup {
        gap: 8px;
    }

    .pf-brand-logo-image {
        width: min(230px, 100%);
    }

    .pf-brand-plane {
        width: 54px;
        height: 42px;
        flex-basis: 54px;
        margin-left: -4px;
        transform: translateY(-2px);
    }

    .pf-brand-plane img {
        width: 34px;
        height: 34px;
    }

    .pf-brand-plane-tail {
        left: 0;
        top: 13px;
        width: 45px;
        height: 24px;
    }

    .pf-brand-wordmark {
        font-size: 1.35rem;
        line-height: 1;
    }

    .pf-tagline {
        display: none;
    }

    .pf-site-header > .wp-block-group.alignwide:last-of-type {
        position: absolute;
        top: 14px;
        right: 12px;
        width: auto !important;
        gap: 8px;
        margin: 0 !important;
        padding-bottom: 0 !important;
    }

    .pf-nav {
        width: auto !important;
        flex: 0 0 auto;
        padding: 0;
    }

    .pf-nav .wp-block-navigation__responsive-container-open {
        padding: 6px;
    }

    .pf-site-header .pf-donate .wp-block-button__link {
        padding: 7px 10px;
        font-size: 0.7rem;
    }

    .pf-lead-columns {
        gap: 34px;
    }

    .pf-secondary-grid {
        grid-template-columns: 1fr;
    }

    .pf-footer-columns {
        gap: 32px;
    }
}

@media (max-width: 1200px) {
    .pf-site-header > .wp-block-group.alignwide:last-of-type,
    .pf-nav .wp-block-navigation__container {
        flex-wrap: wrap !important;
    }
}

/* Mobile reading gutters and responsive editorial typography. */
@media (max-width: 760px) {
    .pf-main,
    .pf-single-main {
        box-sizing: border-box;
        width: calc(100% - 40px) !important;
        max-width: none !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .pf-single-main {
        padding-top: 30px;
    }

    .pf-single-header,
    .pf-single-header > *,
    .pf-single-image,
    .pf-single-content {
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
    }

    .pf-single-title {
        font-size: clamp(2.15rem, 10vw, 3rem) !important;
        line-height: 1.04;
        overflow-wrap: anywhere;
    }

    .pf-single-meta {
        gap: 8px 14px;
        font-size: 0.95rem;
    }

    .pf-single-image {
        aspect-ratio: 16 / 10;
    }

    .pf-single-content {
        font-size: 1rem;
        line-height: 1.65;
    }

    .pf-single-content > *,
    .pf-single-content > .alignwide,
    .pf-single-content > .alignfull {
        box-sizing: border-box;
        max-width: 100% !important;
    }

    .pf-policy {
        left: auto;
        width: 100%;
        margin: 20px auto 44px;
        transform: none;
    }

    .pf-policy__header {
        padding: 28px 22px;
    }

    .pf-policy__header h1 {
        font-size: clamp(2.15rem, 10vw, 3.15rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .pf-policy__intro {
        font-size: 1.05rem;
        line-height: 1.55;
    }

    .pf-donation-modal {
        padding: 16px;
    }

    .pf-donation-modal__card {
        box-sizing: border-box;
        width: calc(100vw - 32px);
        max-height: calc(100dvh - 32px);
        padding: 28px 20px;
    }

    .pf-donation-modal h2 {
        font-size: clamp(2rem, 9vw, 2.65rem);
        line-height: 1.05;
    }

    .pf-donation-modal__pricing,
    .pf-donation-modal__pricing > * {
        box-sizing: border-box;
        max-width: 100% !important;
    }

    .pf-nav .wp-block-navigation__responsive-container.is-menu-open {
        box-sizing: border-box;
        padding: 42px 24px 28px !important;
    }

    .pf-nav .wp-block-navigation__responsive-container-content {
        box-sizing: border-box;
        width: 100%;
    }

    .pf-nav .wp-block-navigation-item__content {
        white-space: normal;
        overflow-wrap: anywhere;
    }
}
