/* ==========================================================================
   二猫云 (Ermao Cloud) Custom Stylesheet - Modern High-End Minimalist
   ========================================================================== */

/* Import premium sans-serif fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;                 /* Soft slate-50 */
    --bg-card: #ffffff;
    --bg-nav: rgba(255, 255, 255, 0.8);
    
    --color-primary: #0f172a;          /* Slate 900 (High-End Dark Charcoal) */
    --color-primary-rgb: 15, 23, 42;
    --color-accent: #4f46e5;           /* Indigo 600 (Clean Accent Color) */
    --color-accent-hover: #4338ca;
    
    --text-main: #0f172a;              /* Slate 900 */
    --text-muted: #475569;             /* Slate 600 */
    --text-light: #94a3b8;             /* Slate 400 */

    --border-color: #e2e8f0;           /* Slate 200 */
    --border-hover: #cbd5e1;           /* Slate 300 */

    --font-sans: 'Plus Jakarta Sans', 'Inter', sans-serif;
    
    /* Elegant Subtle Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* --- Typography & Headings --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.25rem);
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reusable Components & Utilities --- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 8rem 0; /* Generous whitespace (留白) */
}

/* Minimalist Card Style */
.minimal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.minimal-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-main);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-alt);
    border-color: var(--border-hover);
}

/* Accent badge */
.minimal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.minimal-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-nav);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    gap: 0.5rem;
    color: var(--color-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

/* CSS Checkbox Hack for Mobile Menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--color-accent);
}

/* --- Hero Section --- */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 72px; /* Offset header */
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.03) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Abstract Wireframe Visual on Hero Right */
.hero-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Floating Node Badges */
.node-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: border-color 0.25s ease;
}

.node-badge:hover {
    border-color: var(--color-accent);
}

.node-badge span {
    font-weight: 500;
    color: var(--text-light);
    margin-left: 0.1rem;
}

/* Pulsing Emerald Dot */
.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #10b981;
    animation: ping-status 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-status {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* Individual Placements & Floating Spacers */
.node-hk {
    top: 10%;
    left: -20px;
    animation: float-node-1 6s ease-in-out infinite alternate;
}

.node-jp {
    top: 25%;
    right: -30px;
    animation: float-node-2 7s ease-in-out infinite alternate;
}

.node-sg {
    bottom: 22%;
    left: -35px;
    animation: float-node-3 6.5s ease-in-out infinite alternate;
}

.node-us {
    bottom: 8%;
    right: -20px;
    animation: float-node-4 7.5s ease-in-out infinite alternate;
}

@keyframes float-node-1 {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-6px) translateX(2px); }
}
@keyframes float-node-2 {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(6px) translateX(-3px); }
}
@keyframes float-node-3 {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(5px) translateX(4px); }
}
@keyframes float-node-4 {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-5px) translateX(-4px); }
}

.minimal-grid-box {
    width: 100%;
    max-width: 440px;
    height: 380px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.grid-line-art {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--border-color) 1px, transparent 1px),
        radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    opacity: 0.6;
}

.glow-orb {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    animation: orb-float 8s ease-in-out infinite alternate;
}

.svg-flow-lines {
    width: 80%;
    height: auto;
    color: var(--color-accent);
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.15));
}

.rotating-earth {
    transform-origin: 100px 100px;
    animation: rotate-earth-anim 30s linear infinite;
}

.rotating-nodes {
    transform-origin: 100px 100px;
    animation: rotate-nodes-anim 15s linear infinite;
}

.node-glow {
    transform-origin: center;
    animation: node-pulse-anim 2s ease-in-out infinite alternate;
}

@keyframes rotate-earth-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-nodes-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes node-pulse-anim {
    0% { r: 3.5px; fill-opacity: 0.7; }
    100% { r: 5.5px; fill-opacity: 1; }
}

@keyframes orb-float {
    0% { transform: translate(-30px, -20px) scale(0.9); }
    100% { transform: translate(30px, 20px) scale(1.1); }
}

/* --- Core Advantages --- */
.advantages {
    background-color: var(--bg-alt);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(79, 70, 229, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.advantage-card p {
    font-size: 0.95rem;
}

/* --- Streaming & AI Support --- */
.streaming-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.streaming-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.streaming-desc {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.service-brands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.brand-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.25s ease;
}

.brand-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.brand-icon {
    font-size: 1.75rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* --- Pricing Section --- */
.pricing {
    background-color: var(--bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border: 2px solid var(--color-primary);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background-color: var(--color-primary);
    color: var(--bg-main);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: baseline;
}

.plan-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    margin-left: 0.2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.pricing-card.popular .pricing-features li svg {
    color: var(--color-primary);
}

.pricing-cta {
    width: 100%;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.user-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* --- FAQ Section --- */
.faq {
    background-color: var(--bg-alt);
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.faq-item details[open] summary .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--bg-alt);
}

/* --- Footer --- */
footer {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 3.5rem 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
}

.footer-nav {
    display: flex;
    gap: 3.5rem;
    justify-content: center;
}

.footer-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
}

.footer-link:hover {
    color: var(--color-accent);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Sub-page Details Styles --- */
.sub-hero {
    padding: 7rem 0 4rem 0;
    text-align: center;
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--border-color);
}

.sub-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.5rem;
}

.sub-hero p {
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 600;
}

.sub-content-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.rich-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.rich-text h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.rich-text h2::after {
    display: none;
}

.rich-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.rich-text p {
    margin-bottom: 1.5rem;
}

.rich-text ul, .rich-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

.rich-text li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.info-note {
    background-color: var(--bg-alt);
    border-left: 3px solid var(--color-accent);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.info-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.back-to-home {
    margin-top: 4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-accent);
}

.back-to-home:hover {
    color: var(--color-accent-hover);
    transform: translateX(-4px);
}

/* --- Responsive Media Queries --- */

@media (max-width: 968px) {
    .section-padding {
        padding: 6rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .streaming-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .streaming-text h2 {
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .node-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
    .node-hk { left: -10px; top: 12%; }
    .node-jp { right: -15px; top: 25%; }
    .node-sg { left: -15px; bottom: 22%; }
    .node-us { right: -10px; bottom: 8%; }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 4rem;
        gap: 2.5rem;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid var(--border-color);
        z-index: 99;
    }

    /* Open menu checkbox action */
    .menu-toggle:checked ~ .nav-menu {
        left: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .service-brands {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-nav {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .service-brands {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }

    .node-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.65rem;
        gap: 0.4rem;
    }
    .node-hk { left: -5px; top: 5%; }
    .node-jp { right: -5px; top: 20%; }
    .node-sg { left: -5px; bottom: 18%; }
    .node-us { right: -5px; bottom: 5%; }
}

/* --- Blog / Article Section --- */
.blog-section {
    background-color: var(--bg-main);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-cover {
    width: 100%;
    height: 160px;
    background-color: var(--bg-alt);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    transition: all 0.25s ease;
}

.blog-card:hover .blog-cover {
    border-color: var(--color-accent);
    background-color: rgba(79, 70, 229, 0.02);
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-summary {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-readmore {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-readmore:hover {
    color: var(--color-accent-hover);
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
        gap: 2rem;
    }
}
