/* ==============================================
   RRIPPL.com - Styles
   Color Palette:
     Deep background:    #0b1622 (Abyssal Ink)
     Primary surface:    #132d46 (Midnight Current)
     Secondary surface:  #1a4a6e (Shoal Blue)
     Primary accent:     #5ce1e6 (Caustic Bright)
     Secondary accent:   #38ef7d (Bioluminescent)
     Warm accent:        #f7a828 (Sunset Refraction)
     Text primary:       #e8f0f2 (Foam White)
     Text secondary:     #8eaab5 (Mist Gray)
   Fonts:
     Display:  Playfair Display
     Body:     Commissioner
     Accent:   Overpass Mono
   ============================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: #0b1622;
    color: #e8f0f2;
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.svg-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ---- Typography ---- */
.logotype {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 10rem);
    letter-spacing: 0.08em;
    color: #e8f0f2;
    filter: url(#turbulence-filter);
    opacity: 0;
    transition: opacity 1.5s ease, filter 3s ease;
    position: relative;
    z-index: 5;
}

.logotype.revealed {
    opacity: 1;
}

.logotype.settled {
    filter: none;
}

.tagline {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8eaab5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease 0.5s, transform 1.2s ease 0.5s;
    position: relative;
    z-index: 5;
}

.tagline.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.15;
    color: #e8f0f2;
    margin-bottom: 1rem;
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: #5ce1e6;
    margin-bottom: 0.75rem;
}

.overline {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f7a828;
    display: block;
    margin-bottom: 0.75rem;
}

.body-text {
    font-family: 'Commissioner', sans-serif;
    font-weight: 350;
    font-size: 1.1rem;
    line-height: 1.75;
    color: #e8f0f2;
    max-width: 540px;
}

.body-text-center {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* ---- Caustic Background ---- */
.caustic-bg {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(92, 225, 230, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 70% 60%, rgba(56, 239, 125, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 800px 300px at 50% 80%, rgba(92, 225, 230, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 400px 600px at 80% 20%, rgba(247, 168, 40, 0.2) 0%, transparent 50%);
    animation: causticShift 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.caustic-bg-intense {
    opacity: 0.12;
}

@keyframes causticShift {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%;
    }
    50% {
        background-position: 20% 10%, 80% 80%, 30% 70%, 60% 40%;
    }
    100% {
        background-position: 10% 20%, 90% 70%, 60% 30%, 40% 60%;
    }
}

/* ---- Particles ---- */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #38ef7d;
    opacity: 0;
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: var(--p-opacity, 0.3);
    }
    90% {
        opacity: var(--p-opacity, 0.3);
    }
    100% {
        transform: translate(var(--drift-x, 100px), var(--drift-y, -80px));
        opacity: 0;
    }
}

/* ---- SECTION: Hero ---- */
.section-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0b1622;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

/* Impact point center */
.impact-point {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-center {
    width: 10px;
    height: 10px;
    margin-bottom: 2rem;
}

.ring {
    position: absolute;
    border: 1.5px solid #5ce1e6;
    border-radius: 50%;
    animation: ringExpand 3.2s ease-out infinite;
    pointer-events: none;
}

.ring-1 {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ring-2 {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.8s;
}

.ring-3 {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.6s;
}

.ring-4 {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2.4s;
}

@keyframes ringExpand {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0.9;
        border-color: #5ce1e6;
    }
    50% {
        border-color: rgba(92, 225, 230, 0.5);
    }
    100% {
        width: min(40vw, 500px);
        height: min(40vw, 500px);
        opacity: 0;
        border-color: rgba(92, 225, 230, 0);
    }
}

/* Ripple field (mouse-reactive) */
.ripple-field {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(92, 225, 230, 0.06) 0%, transparent 40%),
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(56, 239, 125, 0.03) 0%, transparent 60%);
    transition: background 0.3s ease;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-ring {
    width: 28px;
    height: 28px;
    border: 1.5px solid #8eaab5;
    border-radius: 50%;
    position: relative;
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-ring::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: #8eaab5;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes scrollDot {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(4px); opacity: 1; }
}

.scroll-text {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8eaab5;
}

/* ---- SECTION: Impact Navigation ---- */
.section-nav {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: #0b1622;
    overflow: hidden;
}

.nav-impact-field {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.impact-nav-point {
    position: absolute;
    left: var(--ix);
    top: var(--iy);
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-ring {
    position: absolute;
    border: 1px solid #5ce1e6;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.nav-ring-1 {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    animation: navRingPulse1 3s ease-in-out infinite;
}

.nav-ring-2 {
    width: 60px;
    height: 60px;
    opacity: 0.4;
    animation: navRingPulse2 3s ease-in-out infinite;
}

.nav-ring-3 {
    width: 110px;
    height: 110px;
    opacity: 0.15;
    animation: navRingPulse3 3s ease-in-out infinite;
}

@keyframes navRingPulse1 {
    0%, 100% { width: 16px; height: 16px; opacity: 0.8; border-color: #5ce1e6; }
    50% { width: 24px; height: 24px; opacity: 1; border-color: #5ce1e6; }
}

@keyframes navRingPulse2 {
    0%, 100% { width: 50px; height: 50px; opacity: 0.3; }
    50% { width: 70px; height: 70px; opacity: 0.5; }
}

@keyframes navRingPulse3 {
    0%, 100% { width: 100px; height: 100px; opacity: 0.1; }
    50% { width: 120px; height: 120px; opacity: 0.2; }
}

.impact-nav-point:hover .nav-ring-1 {
    border-color: #f7a828;
    animation: navRingHover1 0.8s ease-in-out infinite;
}

.impact-nav-point:hover .nav-ring-2 {
    border-color: #f7a828;
    animation: navRingHover2 1s ease-in-out infinite;
}

.impact-nav-point:hover .nav-ring-3 {
    border-color: rgba(247, 168, 40, 0.5);
    animation: navRingHover3 1.2s ease-in-out infinite;
}

@keyframes navRingHover1 {
    0%, 100% { width: 20px; height: 20px; opacity: 1; }
    50% { width: 30px; height: 30px; opacity: 1; }
}

@keyframes navRingHover2 {
    0%, 100% { width: 55px; height: 55px; opacity: 0.7; }
    50% { width: 80px; height: 80px; opacity: 0.8; }
}

@keyframes navRingHover3 {
    0%, 100% { width: 100px; height: 100px; opacity: 0.3; }
    50% { width: 140px; height: 140px; opacity: 0.5; }
}

.nav-label-svg {
    position: absolute;
    width: 160px;
    height: 160px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-label-svg text {
    font-family: 'Overpass Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    fill: #e8f0f2;
}

.impact-nav-point:hover .nav-label-svg {
    opacity: 1;
}

/* ---- Wave Dividers ---- */
.wave-divider-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 4;
    clip-path: url(#wave-top);
    background: #0b1622;
}

.wave-divider-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 4;
    clip-path: url(#wave-bottom);
    background: #0b1622;
}

/* ---- SECTION: Content sections ---- */
.section-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
}

.section-about {
    background: #132d46;
}

.section-propagation {
    background: #1a4a6e;
}

.section-reach {
    background: #132d46;
}

.section-resonance {
    background: #0b1622;
}

.section-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Content radial layout */
.content-radial {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.content-radial-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.radial-origin {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.radial-origin-large {
    width: 500px;
    height: 500px;
    top: -80px;
}

.section-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid rgba(92, 225, 230, 0.1);
    border-radius: 50%;
    animation: sectionRingPulse 6s ease-in-out infinite;
}

.section-ring-2 {
    width: 70%;
    height: 70%;
    animation-delay: 1s;
}

.section-ring-3 {
    width: 130%;
    height: 130%;
    animation-delay: 2s;
}

@keyframes sectionRingPulse {
    0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.05); }
}

.content-block {
    flex: 0 1 480px;
    position: relative;
    z-index: 2;
    padding: 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.6s ease;
    border: 1px solid transparent;
    border-radius: 4px;
}

.content-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-block.wave-glow {
    border-color: rgba(92, 225, 230, 0.4);
    box-shadow: 0 0 30px rgba(92, 225, 230, 0.08);
}

.content-block-left {
    transform: translateY(40px) translateX(-30px);
}

.content-block-left.visible {
    transform: translateY(0) translateX(0);
}

.content-block-right {
    transform: translateY(40px) translateX(30px);
}

.content-block-right.visible {
    transform: translateY(0) translateX(0);
}

.content-block-center {
    text-align: center;
    max-width: 700px;
}

/* ---- Stats Row ---- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    padding: 2rem 0;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stats-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #5ce1e6;
    line-height: 1;
    display: inline;
}

.stat-unit {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #5ce1e6;
    opacity: 0.7;
    margin-left: 2px;
}

.stat-label {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8eaab5;
    margin-top: 0.5rem;
}

/* ---- SECTION: Horizontal Scroll ---- */
.section-horizontal {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 0 80px;
    background: #0b1622;
    overflow: hidden;
}

.horizontal-header {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.horizontal-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.horizontal-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 3;
    padding: 2rem 0;
    scrollbar-width: thin;
    scrollbar-color: #1a4a6e #0b1622;
}

.horizontal-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
    background: #0b1622;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
    background: #1a4a6e;
    border-radius: 3px;
}

.horizontal-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 4vw;
    width: max-content;
}

.float-card {
    flex: 0 0 320px;
    min-height: 380px;
    background: #132d46;
    border: 1px solid rgba(92, 225, 230, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    animation: cardBob 4s ease-in-out infinite;
    animation-delay: var(--bob-delay, 0s);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.float-card:hover {
    border-color: rgba(247, 168, 40, 0.5);
    box-shadow: 0 0 40px rgba(247, 168, 40, 0.1);
}

@keyframes cardBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.card-wave-top {
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, #1a4a6e 0%, #132d46 100%);
    clip-path: polygon(
        0% 0%, 5% 20%, 10% 35%, 15% 45%, 20% 50%,
        25% 48%, 30% 40%, 35% 30%, 40% 25%, 45% 28%,
        50% 38%, 55% 50%, 60% 55%, 65% 50%, 70% 40%,
        75% 30%, 80% 25%, 85% 30%, 90% 40%, 95% 35%, 100% 20%,
        100% 100%, 0% 100%
    );
}

.card-content {
    padding: 1.5rem 2rem 2rem;
}

.card-label {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f7a828;
    display: block;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #5ce1e6;
    margin-bottom: 1rem;
}

.card-text {
    font-family: 'Commissioner', sans-serif;
    font-weight: 350;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #8eaab5;
}

/* ---- Resonance Title ---- */
.resonance-title {
    background: linear-gradient(135deg, #5ce1e6, #38ef7d, #f7a828);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---- Interference Overlay ---- */
.interference-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.interference-ring {
    position: absolute;
    border: 1px solid rgba(92, 225, 230, 0.12);
    border-radius: 50%;
    animation: interferenceExpand linear infinite;
}

@keyframes interferenceExpand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.2;
    }
    100% {
        width: 120vw;
        height: 120vw;
        opacity: 0;
    }
}

/* ---- Footer ---- */
.site-footer {
    position: relative;
    width: 100%;
    padding: 100px 2rem 60px;
    background: #0b1622;
    text-align: center;
    overflow: hidden;
}

.footer-ripple {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.footer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid rgba(92, 225, 230, 0.08);
    border-radius: 50%;
    animation: footerRingPulse 8s ease-in-out infinite;
}

.footer-ring-2 {
    width: 350px;
    height: 350px;
    animation-delay: 2s;
}

@keyframes footerRingPulse {
    0%, 100% { opacity: 0.04; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.08); }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #e8f0f2;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-text {
    font-family: 'Commissioner', sans-serif;
    font-style: italic;
    font-size: 1rem;
    color: #8eaab5;
    margin-bottom: 2rem;
}

.footer-coords {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: #8eaab5;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.coord-sep {
    color: #1a4a6e;
}

/* ---- Click Ripple Effect ---- */
.click-ripple {
    position: fixed;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 225, 230, 0.5), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.click-ripple.active {
    animation: clickRippleExpand 0.6s ease-out forwards;
}

@keyframes clickRippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* ---- Appear on Scroll ---- */
.appear-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.appear-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .content-radial {
        flex-direction: column;
        align-items: center;
    }

    .content-block {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .content-block-left,
    .content-block-right {
        transform: translateY(40px) translateX(0);
    }

    .content-block-left.visible,
    .content-block-right.visible {
        transform: translateY(0) translateX(0);
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .impact-nav-point {
        width: 120px;
        height: 120px;
    }

    .nav-label-svg {
        width: 120px;
        height: 120px;
    }

    .float-card {
        flex: 0 0 280px;
        min-height: 340px;
    }

    .section-content {
        padding: 80px 0;
    }

    .footer-coords {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logotype {
        font-size: clamp(2.5rem, 14vw, 5rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .section-inner {
        padding: 0 1rem;
    }

    .content-block {
        padding: 1.5rem 1rem;
    }
}
