:root {
    --leaf: #198c3a;
    --leaf-dark: #0f5f2d;
    --leaf-deep: #073f22;
    --leaf-soft: #e8f6ed;
    --mint: #f4fbf6;
    --ink: #17231b;
    --muted: #5e6d63;
    --line: #dbe6df;
    --white: #ffffff;
    --gold: #c79b35;
    --shadow: 0 22px 60px rgba(9, 42, 22, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 106px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}

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

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 20;
    background: var(--leaf-dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    text-decoration: none;
}

.brand img {
    width: 52px;
    height: 60px;
    object-fit: contain;
}

.brand strong {
    display: block;
    font-size: 15px;
    line-height: 1.15;
    color: var(--leaf-dark);
}

.brand small {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.nav-toggle,
.nav-toggle-button,
.mobile-nav-cta {
    display: none;
}

.main-nav a,
.nav-services-link {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 6px;
    color: #2f4235;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown.active .nav-services-link,
.nav-dropdown:hover .nav-services-link,
.nav-dropdown:focus-within .nav-services-link {
    background: var(--leaf-soft);
    color: var(--leaf-dark);
}

.nav-dropdown {
    position: relative;
    flex: 0 0 auto;
}

.nav-services-link {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-services-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
}

.nav-dropdown:hover .nav-services-link::after,
.nav-dropdown:focus-within .nav-services-link::after {
    transform: rotate(225deg) translateY(-1px);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: min(440px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(219, 230, 223, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 52px rgba(9, 42, 22, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-left: 1px solid rgba(219, 230, 223, 0.95);
    border-top: 1px solid rgba(219, 230, 223, 0.95);
    background: var(--white);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    min-height: 72px;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #fbfdfb;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    border-color: rgba(25, 140, 58, 0.22);
    background: var(--leaf-soft);
}

.dropdown-menu span {
    display: block;
    color: var(--leaf-deep);
    font-size: 14px;
    line-height: 1.25;
}

.dropdown-menu small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

.header-cta {
    margin-left: auto;
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--leaf);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.home-hero,
.service-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero {
    color: var(--white);
    background: var(--leaf-deep);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 44, 22, 0.92), rgba(5, 44, 22, 0.58) 52%, rgba(5, 44, 22, 0.25));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 86px 0 112px;
}

.hero-content h1,
.service-copy h1 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-content p:not(.eyebrow),
.lead {
    max-width: 680px;
    font-size: 20px;
    margin: 22px 0 0;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 850;
    text-decoration: none;
}

.btn.primary {
    background: var(--leaf);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(25, 140, 58, 0.24);
}

.btn.secondary {
    background: var(--white);
    color: var(--leaf-dark);
    border-color: var(--line);
}

.btn.secondary.on-dark {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.42);
}

.btn.light {
    background: var(--white);
    color: var(--leaf-dark);
}

.section {
    padding: 88px 0;
}

.section.soft {
    background: var(--mint);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-heading {
    max-width: 740px;
    margin-bottom: 34px;
}

.mission-section p,
.proof-section p,
.service-copy p,
.two-column p {
    color: var(--muted);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.stats-row div,
.step,
.feature-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.stats-row div {
    padding: 18px;
}

.stats-row strong {
    display: block;
    color: var(--leaf-dark);
    font-size: 20px;
}

.stats-row span {
    color: var(--muted);
    font-size: 14px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(12, 44, 24, 0.07);
}

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

.service-card div {
    padding: 20px 20px 6px;
}

.service-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.18;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.service-card a {
    margin-top: auto;
    padding: 18px 20px 20px;
    color: var(--leaf-dark);
    font-weight: 900;
    text-decoration: none;
}

.proof-grid,
.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
    gap: 54px;
    align-items: center;
}

.proof-grid figure,
.hero-photo {
    margin: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 6px;
    pointer-events: none;
}

.proof-grid img,
.hero-photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.service-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(199, 155, 53, 0.14), transparent 30%),
        linear-gradient(135deg, var(--mint), #ffffff);
    min-height: auto;
    padding: 86px 0;
}

.service-copy {
    position: relative;
    padding-left: 26px;
}

.service-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 112px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--leaf), var(--gold));
}

.service-copy h1 {
    max-width: 720px;
    color: var(--leaf-deep);
    font-size: clamp(30px, 4.1vw, 52px);
    line-height: 1.08;
    text-wrap: balance;
}

.service-copy .lead {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.72;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    padding: 18px;
}

.feature-item span {
    width: 12px;
    height: 12px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--leaf);
}

.feature-item p {
    margin: 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.step {
    padding: 24px;
}

.step strong {
    display: block;
    color: var(--leaf);
    font-size: 28px;
    line-height: 1;
}

.step p {
    margin: 18px 0 0;
    color: var(--muted);
}

.contact-band {
    background: var(--leaf-deep);
    color: var(--white);
    padding: 54px 0;
}

.contact-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.contact-band h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.contact-band p:not(.eyebrow) {
    max-width: 640px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer {
    background: #071f12;
    color: rgba(255, 255, 255, 0.78);
    padding: 58px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 76px;
    height: auto;
    margin-bottom: 14px;
}

.site-footer h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 18px;
}

.site-footer a {
    display: block;
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

.donation-toggle {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

.donation-float {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
    min-height: 56px;
    padding: 12px 18px 12px 12px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
    color: var(--white);
    box-shadow: 0 18px 46px rgba(7, 31, 18, 0.32);
    cursor: pointer;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.donation-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 58px rgba(7, 31, 18, 0.38);
}

.donation-float span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: #1c1607;
    font-size: 18px;
    line-height: 1;
}

.donation-float strong {
    line-height: 1;
}

.donation-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(7, 31, 18, 0.66);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.donation-panel {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1002;
    width: min(430px, calc(100vw - 32px));
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(7, 31, 18, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -46%) scale(0.97);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.donation-toggle:checked ~ .donation-overlay,
.donation-toggle:checked ~ .donation-panel {
    opacity: 1;
    pointer-events: auto;
}

.donation-toggle:checked ~ .donation-panel {
    transform: translate(-50%, -50%) scale(1);
}

.donation-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--leaf-soft);
    color: var(--leaf-dark);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.donation-panel h2 {
    padding-right: 34px;
    font-size: 30px;
}

.donation-intro {
    margin: 10px 0 0;
    color: var(--muted);
}

.donation-details {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.donation-details div {
    padding: 14px;
    border-radius: 7px;
    background: var(--mint);
}

.donation-details dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.donation-details dd {
    margin: 4px 0 0;
    color: var(--leaf-deep);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.service-detail-list {
    display: grid;
    gap: 18px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(12, 44, 24, 0.07);
}

.service-detail-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    border-radius: 7px;
}

.service-detail-card h3 {
    margin: 0;
    color: var(--leaf-deep);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
}

.service-detail-card p {
    color: var(--muted);
}

.service-detail-card ul {
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

@media (max-width: 980px) {
    .header-inner {
        min-height: 74px;
        flex-wrap: wrap;
        gap: 10px;
        padding: 8px 0;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand img {
        width: 46px;
        height: 52px;
    }

    .nav-toggle-button {
        display: inline-flex;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        cursor: pointer;
    }

    .nav-toggle-button span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: var(--leaf-dark);
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        order: 3;
        width: 100%;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 10px 0 4px;
    }

    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }

    .main-nav > a,
    .nav-services-link,
    .mobile-nav-cta {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        border: 1px solid var(--line);
        background: var(--white);
        white-space: normal;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        transform: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-services-link::after {
        display: none;
    }

    .mobile-nav-cta {
        justify-content: center;
        background: var(--leaf);
        color: var(--white);
        border-color: var(--leaf);
        font-weight: 900;
    }

    .two-column,
    .proof-grid,
    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .steps,
    .footer-grid,
    .service-detail-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-hero-grid {
        gap: 32px;
    }

    .service-copy h1 {
        max-width: 820px;
        font-size: clamp(30px, 6vw, 46px);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .brand strong {
        font-size: 12px;
    }

    .brand small {
        font-size: 10px;
    }

    .main-nav {
        gap: 7px;
    }

    .main-nav > a,
    .nav-services-link,
    .mobile-nav-cta {
        padding: 10px 11px;
        font-size: 12px;
    }

    .dropdown-menu {
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        transform: none;
    }

    .dropdown-menu a {
        min-height: auto;
    }

    .home-hero {
        min-height: 590px;
    }

    .hero-content h1,
    .service-copy h1 {
        font-size: 34px;
    }

    .service-copy {
        padding-left: 18px;
    }

    .service-copy::before {
        width: 4px;
        height: 88px;
    }

    .service-copy .lead {
        font-size: 16px;
    }

    .section,
    .service-hero {
        padding: 42px 0;
    }

    .service-grid,
    .steps,
    .stats-row,
    .footer-grid,
    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card img {
        height: 210px;
        min-height: 0;
    }

    .service-detail-actions .btn {
        width: 100%;
    }

    .proof-grid img,
    .hero-photo img {
        height: 240px;
    }

    .contact-band-inner {
        display: block;
    }

    .contact-band .btn {
        width: 100%;
        margin-top: 22px;
    }

    .donation-float {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        min-height: 48px;
        padding: 10px 14px 10px 10px;
    }

    .donation-float span {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .donation-panel {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 28px - env(safe-area-inset-bottom));
        padding: 22px;
    }

    .donation-panel h2 {
        font-size: 26px;
    }
}

/* Blog and recent activity pages */
.compact-hero {
    min-height: 360px;
    display: grid;
    align-items: center;
    background: linear-gradient(120deg, rgba(7, 63, 34, 0.92), rgba(25, 140, 58, 0.86)), url('../../image/55.jpeg') center/cover;
    color: #ffffff;
}

.compact-hero h1,
.compact-hero p {
    color: #ffffff;
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

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

.blog-card {
    display: grid;
    grid-template-rows: 220px 1fr;
    overflow: hidden;
    border: 1px solid rgba(23, 35, 27, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 63, 34, 0.08);
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card div {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.blog-card span {
    color: #198c3a;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
    margin: 0;
    color: #073f22;
    font-size: clamp(1.05rem, 1rem + 0.35vw, 1.35rem);
    line-height: 1.3;
}

.blog-card p {
    margin: 0;
}

.blog-card a {
    color: #126c31;
    font-weight: 900;
    text-decoration: none;
}

.empty-state {
    border: 1px solid rgba(25, 140, 58, 0.18);
    border-radius: 8px;
    background: #ffffff;
    padding: 34px;
    text-align: center;
}

.empty-state.compact {
    padding: 24px;
    text-align: left;
}

.blog-detail-hero {
    padding: 110px 0 70px;
    background: #073f22;
    color: #ffffff;
}

.blog-detail-hero h1,
.blog-detail-hero p {
    color: #ffffff;
}

.blog-detail-body {
    display: grid;
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 74px;
}

.blog-detail-body > img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
}

.rich-text {
    max-width: 820px;
    color: #263a2d;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-heading {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        grid-template-rows: 190px 1fr;
    }

    .compact-hero {
        min-height: 310px;
    }
}

.video-evidence-section {
    background: linear-gradient(180deg, #ffffff, var(--mint));
    border-top: 1px solid rgba(219, 230, 223, 0.72);
}

.evidence-note {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.video-evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.video-evidence-card {
    overflow: hidden;
    border: 1px solid rgba(219, 230, 223, 0.95);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(12, 44, 24, 0.07);
}

.video-evidence-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #071f12;
    object-fit: cover;
}

.video-evidence-card p {
    margin: 0;
    padding: 14px 16px 16px;
    color: var(--leaf-deep);
    font-size: 14px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .video-evidence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .video-evidence-grid {
        grid-template-columns: 1fr;
    }
}