body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    font-size: 17px;
}

:root {
    --pp-fixed-vh: 1vh;
    --pp-font-hero-service-line: 0.8rem;
    --pp-font-hero-title-mobile: 3rem;
    --pp-font-hero-title-desktop: 7rem;
    --pp-font-section-title: 4.5rem;
    --pp-font-body-size: 1.25rem;
    --pp-font-button-size: 1rem;
}

.font-dm-sans {
    font-family: 'DM Sans', sans-serif;
}

.pp-font-hero-title {
    font-size: clamp(var(--pp-font-hero-title-mobile), 8vw, var(--pp-font-hero-title-desktop));
    line-height: 1.05;
}

.pp-font-section-title {
    font-size: clamp(2.4rem, 5vw, var(--pp-font-section-title));
    line-height: 1.05;
}

.pp-font-section-lead {
    font-size: clamp(2rem, 4vw, calc(var(--pp-font-section-title) * 0.78));
    line-height: 1.15;
}

.pp-font-body {
    font-size: var(--pp-font-body-size);
    line-height: 1.7;
}

.pp-font-button {
    font-size: var(--pp-font-button-size);
}

/* Hero visuals tuned for smooth rendering */
.hero-gradient {
    background:
        radial-gradient(circle at 18% 20%, rgba(87, 149, 198, 0.1), transparent 26%),
        radial-gradient(circle at 78% 18%, rgba(96, 165, 250, 0.08), transparent 22%),
        linear-gradient(135deg, #101a27 0%, #13263a 46%, #18324b 100%);
}

.protectplus-fixed-hero {
    min-height: 100vh;
}

.hero-image-panel {
    z-index: 0;
    opacity: 0.28;
    transform: scale(1.04);
    transform-origin: center center;
    object-position: center top;
}

.hero-aura {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-aura-layer,
.hero-glow {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

.hero-aura-layer {
    opacity: 0.28;
    animation: heroAuraDrift 18s ease-in-out infinite;
}

.hero-aura-layer-one {
    left: -14%;
    top: 9%;
    width: clamp(18rem, 34vw, 30rem);
    height: clamp(18rem, 34vw, 30rem);
    background: radial-gradient(circle, rgba(242, 240, 235, 0.16) 0%, rgba(87, 149, 198, 0.18) 28%, rgba(87, 149, 198, 0.08) 48%, transparent 70%);
}

.hero-aura-layer-two {
    right: -10%;
    top: 20%;
    width: clamp(16rem, 30vw, 28rem);
    height: clamp(16rem, 30vw, 28rem);
    opacity: 0.24;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.16) 0%, rgba(59, 130, 246, 0.1) 34%, rgba(255, 255, 255, 0.04) 55%, transparent 74%);
    animation-duration: 22s;
    animation-delay: -7s;
}

.hero-glow {
    left: 56%;
    top: 48%;
    width: clamp(12rem, 18vw, 18rem);
    height: clamp(12rem, 18vw, 18rem);
    opacity: 0.32;
    transform: translate3d(-50%, -50%, 0);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(219, 234, 254, 0.1) 26%, rgba(96, 165, 250, 0.08) 48%, transparent 72%);
    animation: heroGlowPulse 9s ease-in-out infinite;
}

@keyframes heroAuraDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -14px, 0) scale(1.05);
    }
}

@keyframes heroGlowPulse {
    0%, 100% {
        transform: translate3d(-50%, -50%, 0) scale(0.94);
        opacity: 0.5;
    }
    50% {
        transform: translate3d(-50%, -50%, 0) scale(1.04);
        opacity: 0.74;
    }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.34;
    z-index: 2;
}

.hero-main-title {
    text-wrap: balance;
}

.hero-service-line {
    font-size: var(--pp-font-hero-service-line);
    letter-spacing: 0.08em;
}

.hero-service-line-rule {
    flex: 0 0 auto;
}

.profile-section-shell {
    max-width: 1320px;
    margin: 0 auto;
}

.profile-section-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.profile-media-column,
.profile-copy-column {
    width: 100%;
}

.profile-media-column {
    max-width: 480px;
}

.profile-media-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 1.75rem;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.62), 0 0 60px rgba(56, 120, 160, 0.08);
}

.profile-copy-column {
    max-width: 760px;
}

.profile-highlight {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.25rem 1.35rem;
}

.profile-highlight p {
    margin: 0.35rem 0 0;
}

.profile-proof-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-proof-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.profile-proof-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

@media (min-width: 1024px) {
    .profile-section-grid {
        grid-template-columns: minmax(320px, 460px) minmax(0, 720px);
        justify-content: space-between;
        gap: clamp(2.5rem, 4vw, 5rem);
    }

    .profile-copy-column {
        padding-top: 1.25rem;
    }
}

/* Pulse ring animation for CTA */
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 2px solid currentColor;
    animation: pulseRing 2s ease-out infinite;
}

/* Animation Keyframes */
@keyframes revealFlow {
    0% {
        opacity: 0;
        transform: translate3d(0, 32px, 0) scale(0.985);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-60px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(60px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes scaleUp {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Base class for elements to be revealed */
.reveal-item {
    opacity: 0;
    will-change: transform, opacity;
}
.reveal-active {
    animation: revealFlow 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
.reveal-left {
    animation: slideInLeft 1s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
.reveal-right {
    animation: slideInRight 1s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
.reveal-scale {
    animation: scaleUp 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}

/* Stagger Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }

@media (max-width: 1023px) {
    .hero-aura-layer,
    .hero-glow {
        animation: none;
    }

    .hero-aura-layer-two {
        opacity: 0.2;
    }

    .hero-image-panel {
        opacity: 0.2;
        transform: scale(1.02);
    }
}

@media (max-width: 767px) {
    .protectplus-fixed-hero {
        height: calc(var(--pp-fixed-vh) * 100);
        min-height: calc(var(--pp-fixed-vh) * 100);
        max-height: calc(var(--pp-fixed-vh) * 100);
    }

    .hero-main-title {
        font-size: var(--pp-font-hero-title-mobile);
        line-height: 1.05;
    }

    .hero-aura {
        opacity: 0.8;
    }

    .hero-aura-layer-one {
        left: -28%;
        top: 12%;
        width: 20rem;
        height: 20rem;
    }

    .hero-aura-layer-two {
        right: -26%;
        top: 24%;
        width: 18rem;
        height: 18rem;
    }

    .hero-glow {
        left: 58%;
        top: 42%;
        width: 10rem;
        height: 10rem;
        opacity: 0.24;
    }

    .hero-image-panel {
        opacity: 0.16;
        transform: scale(1.01);
    }

    .hero-service-line {
        font-size: clamp(0.58rem, 2.8vw, var(--pp-font-hero-service-line));
        letter-spacing: 0.005em;
    }

    .hero-service-line-rule {
        width: 1.5rem;
    }

    .profile-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-aura-layer,
    .hero-glow {
        animation: none !important;
    }

    .reveal-item {
        opacity: 1;
        will-change: auto;
    }

    .reveal-active,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .hero-image-panel {
        transform: none !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Geometric pattern overlay */
.geo-pattern {
    background-image:
        linear-gradient(30deg, rgba(255,255,255,0.02) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.02) 87.5%, rgba(255,255,255,0.02)),
        linear-gradient(150deg, rgba(255,255,255,0.02) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.02) 87.5%, rgba(255,255,255,0.02)),
        linear-gradient(30deg, rgba(255,255,255,0.02) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.02) 87.5%, rgba(255,255,255,0.02)),
        linear-gradient(150deg, rgba(255,255,255,0.02) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.02) 87.5%, rgba(255,255,255,0.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
}
.faq-item.active .faq-content {
    max-height: 500px;
    padding-top: 1rem;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-icon {
    transition: transform 0.3s ease;
}

/* WordPress menu styles */
.protectplus-desktop-menu,
.protectplus-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.protectplus-desktop-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.protectplus-desktop-menu > li > a {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.protectplus-desktop-menu > li > a:hover,
.protectplus-desktop-menu > li.current-menu-item > a,
.protectplus-desktop-menu > li.current_page_item > a {
    color: #ffffff;
}

.protectplus-desktop-menu > li::before,
.protectplus-desktop-menu > li::after,
.protectplus-mobile-menu-list > li::before,
.protectplus-mobile-menu-list > li::after,
.protectplus-mobile-menu-list > li > a::before,
.protectplus-mobile-menu-list > li > a::after {
    content: none !important;
    display: none !important;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
}

#mobile-menu-close {
    background: transparent;
    border: 0;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-close:hover,
#mobile-menu-close:focus,
#mobile-menu-close:active,
#mobile-menu-close:focus-visible,
#mobile-menu-close * {
    outline: none !important;
    box-shadow: none !important;
}

#mobile-menu-close::-moz-focus-inner {
    border: 0;
}

#mobile-menu-btn {
    background: transparent;
    border: 0;
    outline: none !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

#mobile-menu-btn:hover,
#mobile-menu-btn:focus,
#mobile-menu-btn:active,
#mobile-menu-btn:focus-visible,
#mobile-menu-btn * {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

#mobile-menu-btn::-moz-focus-inner {
    border: 0;
}

.protectplus-mobile-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.protectplus-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease;
}

.protectplus-mobile-menu-panel {
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.protectplus-mobile-menu.is-open .protectplus-mobile-menu-panel {
    transform: translateY(0);
    opacity: 1;
}

.protectplus-mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.protectplus-mobile-menu-list > li > a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.protectplus-mobile-menu-list > li > a:hover,
.protectplus-mobile-menu-list > li.current-menu-item > a,
.protectplus-mobile-menu-list > li.current_page_item > a {
    color: #ffffff;
}

/* Admin bar fix */
body.admin-bar .hero-gradient {
    min-height: calc(100vh - 32px);
}

/* Blog templates */
.blog-shell {
    min-height: 100vh;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 52%, #0f3460 100%);
}

.blog-wrap,
.article-wrap {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.blog-hero {
    position: relative;
    overflow: hidden;
}

.blog-hero.hero-gradient {
    min-height: auto;
}

body.admin-bar .blog-hero.hero-gradient {
    min-height: auto;
}

.blog-hero .blog-wrap {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(1rem, 2.6vw, 2rem);
}

.blog-kicker {
    margin: 0 0 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: rgba(242, 240, 235, 0.72);
}

.blog-headline {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.1rem, 6vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #f2f0eb;
}

.blog-subhead {
    margin: 1.1rem 0 0;
    max-width: 56ch;
    color: rgba(242, 240, 235, 0.82);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.5;
}

.blog-main {
    position: relative;
    z-index: 20;
    margin-top: 0;
    padding: 1.1rem 0 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

.blog-card {
    background: rgba(246, 244, 239, 0.98);
    border: 1px solid rgba(216, 222, 238, 0.26);
    border-radius: 1.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 30px rgba(19, 25, 40, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(19, 25, 40, 0.1);
}

.blog-card-media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.03);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, #1a1a2e, #0f3460);
    color: rgba(242, 240, 235, 0.9);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.03em;
}

.blog-card-content {
    padding: 1.15rem 1.2rem 1.3rem;
}

.blog-meta {
    margin: 0 0 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
}

.blog-title {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-title a {
    color: #111827;
    text-decoration: none;
}

.blog-title a:hover {
    color: #0f3460;
}

.blog-excerpt {
    margin: 0.72rem 0 0;
    color: #4b5563;
    line-height: 1.56;
}

.blog-read {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #0f3460;
    font-weight: 600;
    text-decoration: none;
}

.blog-read:hover {
    color: #16213e;
}

.blog-pagination {
    margin-top: 1.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.blog-pagination .page-numbers {
    min-width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(28, 38, 60, 0.16);
    background: #f6f4ef;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    padding: 0 0.75rem;
}

.blog-pagination .page-numbers.current {
    border-color: #0f3460;
    background: #0f3460;
    color: #fff;
}

.blog-pagination .page-numbers:hover {
    border-color: #0f3460;
}

.blog-empty {
    border-radius: 1.1rem;
    background: #f6f4ef;
    border: 1px solid rgba(28, 38, 60, 0.12);
    padding: 2rem;
}

.blog-empty h2 {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.blog-empty p {
    margin: 0.7rem 0 0;
    color: #4b5563;
}

.blog-footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
}

.blog-footer-inner {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-footer-brand {
    color: #d1d5db;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.97rem;
}

.blog-footer-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.92rem;
}

.blog-footer-links a:hover {
    color: #f2f0eb;
}

.article-main {
    padding: 2.4rem 0 4.6rem;
}

.article-card {
    background: #f6f4ef;
    border: 1px solid rgba(28, 38, 60, 0.1);
    border-radius: 1.3rem;
    padding: clamp(1.1rem, 2.8vw, 2rem);
    box-shadow: 0 18px 36px rgba(20, 26, 40, 0.06);
}

.article-back {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: #0f3460;
    text-decoration: none;
    font-size: 0.95rem;
}

.article-back:hover {
    color: #16213e;
}

.article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.95rem;
}

.article-chip {
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 52, 96, 0.24);
    color: #0f3460;
}

.article-chip:hover {
    border-color: #0f3460;
}

.article-title {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 4.8vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #111827;
}

.article-meta {
    margin: 0.95rem 0 0;
    display: inline-flex;
    gap: 0.45rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
}

.article-featured {
    margin: 1.5rem 0 1.7rem;
    border-radius: 1rem;
    overflow: hidden;
}

.article-featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.protectplus-prose {
    color: #1f2937;
    line-height: 1.72;
}

.protectplus-prose h2,
.protectplus-prose h3,
.protectplus-prose h4 {
    font-family: 'DM Sans', sans-serif;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-top: 1.7em;
    margin-bottom: 0.55em;
}

.protectplus-prose p,
.protectplus-prose ul,
.protectplus-prose ol,
.protectplus-prose blockquote {
    margin-top: 0;
    margin-bottom: 1.05rem;
}

.protectplus-prose a {
    color: #0f3460;
}

.protectplus-prose img {
    border-radius: 0.8rem;
    max-width: 100%;
    height: auto;
}

.protectplus-prose blockquote {
    border-left: 3px solid rgba(15, 52, 96, 0.4);
    padding-left: 1rem;
    color: #334155;
}

.article-tags {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tag {
    text-decoration: none;
    font-size: 0.82rem;
    padding: 0.26rem 0.55rem;
    border-radius: 0.55rem;
    color: #334155;
    background: rgba(15, 52, 96, 0.08);
}

.article-tag:hover {
    color: #0f3460;
}

.article-nav {
    margin-top: 1.35rem;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
}

.article-nav-item {
    text-decoration: none;
    border: 1px solid rgba(28, 38, 60, 0.14);
    border-radius: 0.9rem;
    background: #f6f4ef;
    padding: 0.9rem 1rem;
    color: #1f2937;
}

.article-nav-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    display: block;
}

.article-nav-title {
    margin-top: 0.28rem;
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.02rem;
    line-height: 1.24;
}

.article-nav-item:hover {
    border-color: rgba(15, 52, 96, 0.35);
    color: #0f3460;
}

@media (min-width: 768px) {
    .blog-main {
        margin-top: 0;
        padding-top: 1.3rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.6rem;
    }

    .article-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-nav-item-next {
        text-align: right;
    }
}

@media (min-width: 1200px) {
    .blog-main {
        margin-top: 0;
        padding-top: 1.5rem;
    }

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

.pp-shader-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
    mix-blend-mode: screen;
    opacity: var(--pp-hero-shader-opacity, 0.3);
    pointer-events: none;
}
