:root {
    --primary: #0f172a;
    --primary-dark: #020617;
    --secondary: #334155;
    --gold: #C5A059;
    --gold-light: #dcc188;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #f1f5f9;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans SC', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.bg-light {
    background-color: var(--bg-light);
}

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

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Client Logos Section */
.client-logos-section {
    padding: 3rem 0;
    background-color: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.client-logos-section .section-title-small {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Fade masks for smooth edge transition */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

.logo-track .slide {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo-track .slide img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-track .slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
        /* Adjust based on track content duplication logic */
    }
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    /* Slight zoom for parallax feel effect */
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.7) 60%,
            rgba(15, 23, 42, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin-top: 60px;
    /* Offset for navbar */
    position: relative;
    z-index: 10;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.1rem, 1.4rem + 2vw, 3.25rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    color: var(--white);
}

.hero p {
    font-size: clamp(0.95rem, 0.88rem + 0.25vw, 1.1rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.25rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Sections General */
.section {
    scroll-margin-top: 100px;
    /* Offset for fixed navbar */
    padding: 8rem 0;
    /* More breathing room */
}

.section-header {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 4px;
    /* Premium wide tracking */
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title {
    font-size: clamp(1.75rem, 1.3rem + 1.4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.section-title.text-white {
    color: var(--white);
}

/* Add a faint 'watermark' text behind the title for depth (optional, keeping clean for now) */

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    /* Wider thin line effect */
    height: 1px;
    background: rgba(197, 160, 89, 0.3);
    z-index: -1;
}

/* About Section */
/* About Section */
.about-section {
    position: relative;
    width: 100%;
    /* 
       Standard UI Practice: 
       Set min-height relative to viewport width (vw) to match the image's native aspect ratio (approx 16:9).
       This ensures the container is tall enough to show the full background image without cropping on desktops.
    */
    min-height: 55vw;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('images/about_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Visual Separation from Hero */
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Optimized overlay: clear enough to see image, dark enough for text */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-title {
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
}

.about-text strong {
    color: var(--gold);
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Advantages Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.advantage-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.advantage-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Services Wrapper */
.bg-dark-pattern {
    background-color: #0f172a;
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
    position: relative;
    overflow: hidden;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service-card {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: #0f172a;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(219, 168, 24, 0.15);
    /* Gold glow */
}

.service-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img-bg {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.2) 0%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 0.95) 100%);
    z-index: 2;
    transition: background 0.5s;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.1) 0%,
            rgba(15, 23, 42, 0.7) 50%,
            rgba(15, 23, 42, 0.98) 100%);
}

.service-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.service-coverage {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.45);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    backdrop-filter: blur(4px);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.5s;
}

.service-card:hover .service-content p {
    transform: translateY(0);
    opacity: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s 0.1s;
    /* Delayed transition */
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Grid Layout */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    right: 1rem;
    bottom: -0.5rem;
    line-height: 1;
    transition: all 0.3s;
}

.process-card:hover .step-number {
    color: rgba(197, 160, 89, 0.2);
    transform: scale(1.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-dark);
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.process-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (min-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    padding: 3rem;
    background: var(--bg-light);
}

.contact-info .section-header {
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-item p {
    color: var(--text-gray);
    font-size: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-link {
    color: inherit;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.copy-btn {
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.copy-btn:hover {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
}

.copy-btn.copied {
    color: #10b981;
    /* Success green */
}

.qr-box {
    text-align: center;
    width: fit-content;
}

.qr-box img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.qr-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-map {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.map-frame {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
}

.footer a:hover {
    color: var(--gold);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu hidden by default */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        margin-top: 2rem;
    }
}

/* Footer Extras */
.footer-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Hero eyebrow (semantic non-heading) */
.hero-eyebrow {
    display: block;
    font-size: clamp(0.78rem, 0.7rem + 0.25vw, 0.95rem);
    color: var(--gold);
    margin-bottom: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    .hero-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* ============================================================
   Navbar contrast on non-hero pages (news listing + article detail)
   The default navbar is transparent (designed to overlay dark hero).
   On pages without a dark hero, force solid background so white nav text stays readable.
   ============================================================ */
body.news-page .navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   Homepage "最新资讯" entry section
   Section between 服务流程 and 联系我们 to surface latest articles.
   ============================================================ */
.news-entry-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.news-entry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.news-entry-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-entry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-entry-card a {
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-entry-cover {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.news-entry-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-entry-card:hover .news-entry-cover img {
    transform: scale(1.05);
}

.news-entry-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0) 50%, rgba(15,23,42,0.35) 100%);
    pointer-events: none;
}

.news-entry-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-entry-badge {
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.news-entry-title {
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.news-entry-excerpt {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-entry-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-gray);
}

.news-entry-meta .read-more {
    color: var(--gold);
    font-weight: 600;
}

.news-entry-cta {
    text-align: center;
    margin-top: 3rem;
}

.news-entry-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.news-entry-cta a:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .news-entry-section { padding: 4rem 0; }
    .news-entry-grid { gap: 1.25rem; margin-top: 2rem; }
    .news-entry-cta { margin-top: 2rem; }
}

/* Process card descriptions */
.process-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0.75rem 0 0;
    position: relative;
    z-index: 1;
}

/* Footer NAP block */
.footer-nap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.footer-nap-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nap-item i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-nap-item strong {
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-brand {
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-tagline {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-nap-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-nap-item a:hover {
    color: var(--gold);
}

@media (max-width: 600px) {
    .footer-nap {
        text-align: center;
    }
    .footer-nap-item {
        justify-content: center;
    }
}

.admin-link {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    transition: var(--transition);
}

.admin-link:hover {
    color: var(--gold);
}