/* ==========================================================================
   Blood Bank – Donors Theme (production-ready, mobile-first)
   ========================================================================== */

:root {
    --red: #d91f35;
    --red-dark: #b01828;
    --red-light: #fef2f4;
    --dark: #111827;
    --dark-soft: #1f2937;
    --text: #111827;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #ffffff;
    --bg-soft: #f9fafb;
    --bg-muted: #f3f4f6;
    --border: #e5e7eb;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 4px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --font-heading: 'EB Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 72px;
    --section-y: clamp(3rem, 6vw, 5rem);
    --container-px: clamp(1rem, 4vw, 1.5rem);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    margin: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; }

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

.container {
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

/* ── Buttons ── */
.donors-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    text-align: center;
}

.donors-btn:active { transform: scale(0.98); }

.donors-btn--primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 4px 14px rgba(217, 31, 53, 0.35);
}

.donors-btn--primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(217, 31, 53, 0.4);
}

.donors-btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.donors-btn--outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.donors-btn--white {
    background: #fff;
    color: var(--red);
    border-color: #fff;
}

.donors-btn--white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}

.donors-btn--block { width: 100%; }

.donors-btn--lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* ── Section typography ── */
.donors-section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.donors-section-title {
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    margin-bottom: 0.75rem;
}

.donors-section-desc {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    color: var(--text-muted);
    max-width: 36rem;
    line-height: 1.7;
}

.donors-section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.donors-section-header .donors-section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ── Mobile info strip ── */
/* MOVED to donors-header.css */

/* ── Desktop top bar ── */
/* MOVED to donors-header.css */

/* ── Navbar ── */
/* MOVED to donors-header.css */

/* ── Hero ── */
.donors-hero {
    position: relative;
    background: var(--dark);
}

.donors-hero .carousel,
.donors-hero .carousel-inner {
    height: clamp(28rem, 70vh, 40rem);
}

.donors-hero .carousel-item {
    height: clamp(28rem, 70vh, 40rem);
    position: relative;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
}

.donors-hero .carousel-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.donors-hero .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(17, 24, 39, 0.92) 0%,
        rgba(17, 24, 39, 0.72) 45%,
        rgba(17, 24, 39, 0.35) 100%
    );
    z-index: 1;
}

.donors-hero .carousel-1 {
    background-image: url(../imgs/header1.jpg);
}

.donors-hero .carousel-item > .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.donors-hero__content {
    max-width: 38rem;
    padding: 2rem 0;
    color: #fff;
}

.donors-hero__badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.donors-hero h1 {
    font-size: clamp(1.875rem, 5vw, 3.25rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.donors-hero p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.donors-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.donors-hero .carousel-indicators {
    bottom: 1.25rem;
    margin-bottom: 0;
}

.donors-hero .carousel-indicators li {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    margin: 0 0.25rem;
    transition: background var(--transition), transform var(--transition);
}

.donors-hero .carousel-indicators li.active {
    background: var(--red);
    transform: scale(1.2);
}

@media (max-width: 575px) {
    .donors-hero__actions {
        flex-direction: column;
    }

    .donors-hero__actions .donors-btn {
        width: 100%;
    }
}

/* ── About strip ── */
/* ── Partner Support ── */
.donors-partners {
    position: relative;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
    background-color: #1a1212;
    background-image: var(--partners-bg, none);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.donors-partners__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 8, 8, 0.92) 0%,
        rgba(45, 12, 12, 0.88) 50%,
        rgba(20, 10, 10, 0.94) 100%
    );
    pointer-events: none;
}

.donors-partners__inner {
    position: relative;
    z-index: 1;
}

.donors-partners__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.donors-partners__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.donors-partners__line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.donors-partners__track {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.donors-partners__slide {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: max-content;
    padding: 0 clamp(1rem, 3vw, 2rem);
    animation: donors-partners-marquee 35s linear infinite;
}

.donors-partners__track:hover .donors-partners__slide {
    animation-play-state: paused;
}

.donors-partners__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(140px, 16vw, 200px);
    height: clamp(56px, 9vw, 76px);
}

.donors-partners__logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.donors-partners__logo-frame--transparent {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.donors-partners__logo-frame--transparent img {
    max-height: clamp(44px, 7vw, 56px);
    opacity: 0.98;
}

.donors-partners__logo-frame a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity var(--transition);
}

.donors-partners__logo-frame a:hover {
    opacity: 0.85;
}

.donors-partners__logo-frame img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@keyframes donors-partners-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .donors-partners__slide {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 2rem;
    }

    .donors-partners__track {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.donors-partners--single .donors-partners__track {
    mask-image: none;
    -webkit-mask-image: none;
}

.donors-partners--single .donors-partners__slide {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

/* ── Why Donate ── */
.donors-why-donate {
    padding: var(--section-y) 0;
    background: var(--bg);
}

.donors-why-donate__media {
    position: relative;
    height: 100%;
    min-height: clamp(18rem, 40vw, 28rem);
}

.donors-why-donate__img {
    width: 100%;
    height: 100%;
    min-height: clamp(18rem, 40vw, 28rem);
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-lg);
}

.donors-why-donate__img--placeholder {
    background: linear-gradient(135deg, var(--red-light) 0%, #fde8eb 100%);
    min-height: 18rem;
}

.donors-why-donate__card {
    position: absolute;
    right: clamp(0.5rem, 2vw, 0.75rem);
    bottom: clamp(0.5rem, 2vw, 0.75rem);
    left: clamp(0.5rem, 2vw, 0.75rem);
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.donors-why-donate__avatars {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
}

.donors-why-donate__avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: var(--shadow-xs);
    flex-shrink: 0;
}

.donors-why-donate__avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
    color: var(--text-light);
    font-size: 0.75rem;
}

.donors-why-donate__avatar + .donors-why-donate__avatar,
.donors-why-donate__avatar + .donors-why-donate__avatar--placeholder,
.donors-why-donate__avatar--placeholder + .donors-why-donate__avatar,
.donors-why-donate__avatar--placeholder + .donors-why-donate__avatar--placeholder {
    margin-left: -0.55rem;
}

.donors-why-donate__plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-left: 0.15rem;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(217, 31, 53, 0.35);
}

.donors-why-donate__card-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text);
}

.donors-why-donate__card-text strong {
    color: var(--red);
    font-weight: 700;
}

.donors-why-donate__content {
    padding-left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .donors-why-donate__content {
        padding-left: clamp(1.5rem, 3vw, 2.5rem);
    }
}

.donors-why-donate__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    max-width: none;
}

.donors-why-donate__desc {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: none;
    margin-bottom: 1.5rem;
}

.donors-why-donate__divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.donors-why-donate__features {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.donors-why-donate__feature {
    height: 100%;
    padding: 0 0.5rem;
}

.donors-why-donate__feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    color: var(--red);
    font-size: 1.35rem;
}

.donors-why-donate__feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.donors-why-donate__feature p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 767.98px) {
    .donors-why-donate__card {
        left: 1rem;
        right: 1rem;
    }

    .donors-why-donate__feature {
        text-align: center;
    }

    .donors-why-donate__feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── How It Works (dark steps) ── */
.donors-how-it-works {
    padding: var(--section-y) 0;
    background: #111111;
    color: #fff;
}

.donors-how-it-works__header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.donors-how-it-works__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.donors-how-it-works__title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 1rem;
}

.donors-how-it-works__desc {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.donors-how-it-works__steps {
    padding-left: clamp(1rem, 2vw, 1.75rem);
    padding-right: clamp(0.5rem, 2vw, 1rem);
}

.donors-step-card {
    position: relative;
    height: 100%;
    margin-left: 1.75rem;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 3vw, 2rem) clamp(2rem, 4vw, 2.75rem);
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    transition: border-color var(--transition);
}

.donors-step-card:hover {
    border-color: #444444;
}

.donors-step-card__number {
    position: absolute;
    left: -1.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(217, 31, 53, 0.45);
    z-index: 1;
}

.donors-step-card__body h4 {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.625rem;
    line-height: 1.35;
}

.donors-step-card__body p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

@media (max-width: 991.98px) {
    .donors-step-card {
        margin-left: 1.5rem;
    }

    .donors-step-card__number {
        left: -1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .donors-how-it-works__steps {
        padding-left: 1.25rem;
    }

    .donors-step-card {
        margin-left: 1.25rem;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .donors-step-card__number {
        left: -1.25rem;
        top: 1.75rem;
        transform: none;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 0.9375rem;
    }
}

/* ── Stats ── */
.donors-stats {
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    background: var(--red);
    color: #fff;
}

.donors-stat {
    text-align: center;
    padding: 1rem 0.5rem;
}

.donors-stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.donors-stat__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.92;
}

/* ── Upcoming Events ── */
.donors-events {
    padding: var(--section-y) 0;
    background: #fdf6f7;
}

.donors-events__header {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.donors-events__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.donors-events__title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin: 0;
    max-width: 22ch;
}

.donors-events__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.donors-event-card {
    display: flex;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    padding: clamp(1rem, 2.5vw, 1.25rem);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.donors-event-card:hover {
    box-shadow: var(--shadow-md);
}

.donors-event-card__thumb {
    flex-shrink: 0;
    width: clamp(5.5rem, 14vw, 7.5rem);
    height: clamp(5.5rem, 14vw, 7.5rem);
    border-radius: var(--radius);
    overflow: hidden;
}

.donors-event-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donors-event-card__body {
    flex: 1;
    min-width: 0;
}

.donors-event-card__title {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.donors-event-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.donors-event-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--red);
}

.donors-event-card__meta i {
    font-size: 0.875rem;
    opacity: 0.9;
}

.donors-event-card__divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0.875rem 0;
}

.donors-event-card__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.donors-events-cta {
    position: relative;
    min-height: clamp(22rem, 50vw, 28rem);
    height: 100%;
    border-radius: var(--radius-lg);
    background-color: var(--dark-soft);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.donors-events-cta__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin: clamp(1rem, 3vw, 1.75rem);
    background: rgba(17, 24, 39, 0.82);
    border-radius: var(--radius);
}

.donors-events-cta__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--red);
    font-size: 2rem;
}

.donors-events-cta__title {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #fff;
    margin: 0 0 0.875rem;
}

.donors-events-cta__text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 1.5rem;
    max-width: 22rem;
}

.donors-events-cta .donors-btn {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.75rem;
}

@media (max-width: 991.98px) {
    .donors-events__title {
        max-width: none;
    }

    .donors-events-cta {
        min-height: 20rem;
    }
}

@media (max-width: 575.98px) {
    .donors-event-card {
        flex-direction: column;
    }

    .donors-event-card__thumb {
        width: 100%;
        height: 10rem;
    }

    .donors-event-card__meta {
        flex-direction: column;
        gap: 0.375rem;
    }
}

/* ── Articles carousel ── */
.donors-articles {
    padding: var(--section-y) 0;
    background: #111111;
    color: #fff;
    overflow: hidden;
}

.donors-articles .donors-section-title {
    color: #fff;
}

.donors-articles .donors-section-desc {
    color: rgba(255, 255, 255, 0.72);
}

.donors-articles .owl-carousel {
    position: relative;
}

.donors-articles .owl-stage-outer {
    overflow: visible;
    padding: 0.5rem 0 1rem;
}

.donors-article-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.donors-article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.donors-article-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bg-muted);
}

.donors-article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.donors-article-card:hover .donors-article-card__img img {
    transform: scale(1.04);
}

.donors-article-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(217, 31, 53, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.donors-article-card:hover .donors-article-card__overlay,
.donors-article-card:focus-within .donors-article-card__overlay {
    opacity: 1;
}

.donors-article-card__overlay a {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border: 2px solid #fff;
    border-radius: var(--radius-full);
}

.donors-article-card__fav {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    width: 2.25rem;
    height: 2.25rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: none;
    padding: 0;
    transition: transform var(--transition);
}

.donors-article-card__fav:active { transform: scale(0.92); }

.donors-article-card__fav i {
    color: var(--red);
    font-size: 0.9375rem;
    pointer-events: none;
}

.donors-article-card__body {
    padding: 1.25rem 1.375rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.donors-article-card__body h5 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.donors-article-card__body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Owl nav */
.donors-articles .owl-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.donors-articles .owl-nav button.owl-prev,
.donors-articles .owl-nav button.owl-next {
    width: 2.75rem !important;
    height: 2.75rem !important;
    border-radius: 50% !important;
    background: var(--red) !important;
    color: #fff !important;
    font-size: 1.125rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    transition: background var(--transition), transform var(--transition);
}

.donors-articles .owl-nav button.owl-prev:hover,
.donors-articles .owl-nav button.owl-next:hover {
    background: var(--red-dark) !important;
}

.donors-articles .owl-nav button.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Touch: show overlay link always on small screens */
@media (max-width: 767px) {
    .donors-article-card__overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(17, 24, 39, 0.75) 0%, transparent 60%);
        align-items: flex-end;
        justify-content: flex-start;
        padding: 1rem;
    }

    .donors-article-card__overlay a {
        border: none;
        padding: 0;
        font-size: 0.8125rem;
        text-decoration: underline;
    }
}

/* ── Donation requests ── */
.donors-requests {
    padding: var(--section-y) 0;
}

.donors-filter {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.donors-filter .form-control {
    height: 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    background: var(--bg-soft);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.donors-filter .form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(217, 31, 53, 0.12);
    background: var(--bg);
    outline: none;
}

.donors-filter__search {
    width: 100%;
    height: 3rem;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 1.125rem;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donors-filter__search:hover { background: var(--red-dark); }

.donors-request-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 0.875rem;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.donors-request-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.donors-request-card__blood {
    align-self: stretch;
    min-width: 5.5rem;
    padding: 1.25rem 1rem;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donors-request-card__blood h2 {
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.donors-request-card__info {
    list-style: none;
    padding: 1rem 1.25rem;
    margin: 0;
    min-width: 0;
}

.donors-request-card__info li {
    font-size: 0.9375rem;
    padding: 0.25rem 0;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.donors-request-card__info li span {
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 0.375rem;
}

.donors-request-card__action {
    padding: 1rem 1.25rem;
    flex-shrink: 0;
}

.donors-request-card__action a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: color var(--transition);
}

.donors-request-card__action a:hover { color: var(--red-dark); }

.donors-request-card--emergency {
    border-color: #dc3545;
    box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.15);
}

.donors-request-card--emergency .donors-request-card__blood {
    background: linear-gradient(160deg, #c82333 0%, #dc3545 100%);
    flex-direction: column;
    gap: 0.5rem;
}

.donors-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    line-height: 1.2;
}

.donors-badge--emergency {
    background: #fff;
    color: #c82333;
}

.donors-filter__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text);
    margin: 0;
    min-height: 2.5rem;
}

.donors-emergency-toggle__label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.125rem;
    border: 1px solid #f1c0c4;
    border-radius: var(--radius-lg);
    background: #fff5f5;
    cursor: pointer;
    margin: 0;
}

.donors-emergency-toggle__label input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.donors-emergency-toggle__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.donors-emergency-toggle__text strong {
    color: #c82333;
}

.donors-emergency-toggle__text small {
    color: var(--text-muted);
    line-height: 1.4;
}

.donors-emergency-fields {
    padding: 0 0.125rem;
}

.donors-donation-detail--emergency {
    border: 1px solid #f1c0c4;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.donors-donation-detail__emergency-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #fff5f5;
    border-bottom: 1px solid #f1c0c4;
    color: #c82333;
    font-weight: 600;
}

.donors-donation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
}

.donors-donation-responses,
.donors-donation-offer-form,
.donors-donation-viewer-response {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
}

.donors-donation-responses h5,
.donors-donation-offer-form h5,
.donors-donation-viewer-response h5 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.donors-response-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    margin-bottom: 0.75rem;
    background: var(--bg-soft);
}

.donors-response-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.donors-response-card__role,
.donors-response-card__status {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.donors-response-card__status {
    margin-left: auto;
    font-weight: 600;
}

.donors-response-card__message,
.donors-response-card__contact {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.donors-response-card__actions {
    display: flex;
    gap: 0.5rem;
}

.donors-btn--sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
}

.donors-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border);
}

@media (max-width: 767px) {
    .donors-request-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .donors-request-card__blood {
        min-width: 0;
        padding: 0.875rem;
    }

    .donors-request-card__info li {
        white-space: normal;
    }

    .donors-request-card__action {
        padding: 0 1.25rem 1.125rem;
        border-top: 1px solid var(--border);
        padding-top: 0.875rem;
        margin: 0 1.25rem 1rem;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ── App section ── */
.donors-app {
    padding: var(--section-y) 0;
    background: var(--bg-soft);
}

.donors-app h3 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.donors-app p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.donors-app__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.donors-app__stores img {
    height: 2.75rem;
    width: auto;
}

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

.donors-app__screens img {
    max-height: clamp(16rem, 40vw, 26rem);
    margin: 0 auto;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

@media (max-width: 767px) {
    .donors-app__screens {
        margin-top: 2rem;
    }
}

/* ── Page header ── */
.donors-page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--red-dark) 100%);
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    text-align: center;
}

.donors-page-header h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.625rem);
    color: #fff;
    margin-bottom: 0.75rem;
}

.donors-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.donors-breadcrumb .breadcrumb-item,
.donors-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
}

.donors-breadcrumb .breadcrumb-item a:hover { color: #fff; }

.donors-breadcrumb .breadcrumb-item.active { color: #fff; }

.donors-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

/* ── Page content ── */
.donors-page-content {
    padding: clamp(2rem, 5vw, 3.75rem) 0 clamp(2.5rem, 6vw, 5rem);
}

/* ── Auth ── */
.donors-auth {
    padding: clamp(2rem, 5vw, 3.75rem) 0 clamp(2.5rem, 6vw, 5rem);
    background: var(--bg-muted);
}

.donors-auth-card,
.donors-register-card {
    max-width: 30rem;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
}

.donors-register-card { max-width: 36rem; }

.donors-auth-card .logo,
.donors-register-card .logo {
    text-align: center;
    margin-bottom: 1.75rem;
}

.donors-auth-card .logo img { height: 3.5rem; margin: 0 auto; }

.donors-auth-card .form-control {
    height: 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.875rem;
    padding: 0 1rem;
    font-size: 0.9375rem;
    background: var(--bg-soft);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.donors-auth-card .form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(217, 31, 53, 0.12);
    background: var(--bg);
    outline: none;
}

.donors-auth-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.donors-auth-options a { color: var(--red); }

.donors-auth-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

@media (min-width: 480px) {
    .donors-auth-actions { grid-template-columns: 1fr 1fr; }
}

/* Register form fields */
.client-register-page .account-form form.reg-form { padding: 0; margin: 0; max-width: none; }

.client-register-page .account-form form.reg-form input:not([type="checkbox"]):not([type="radio"]),
.client-register-page .account-form form.reg-form select,
.client-register-page .account-form form.reg-form .reg-field:not(.reg-multi-trigger) {
    display: block;
    width: 100%;
    height: 3rem;
    margin: 0 0 0.875rem !important;
    padding: 0 1rem;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--bg-soft) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.client-register-page .account-form form.reg-form select.reg-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    padding-right: 2.5rem !important;
    cursor: pointer;
}

.client-register-page .account-form form.reg-form .reg-field:focus,
.client-register-page .account-form form.reg-form select.reg-field:focus {
    outline: none;
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(217, 31, 53, 0.12);
    background: var(--bg) !important;
}

.client-register-page .account-form form.reg-form .reg-textarea {
    height: auto;
    min-height: 5.5rem;
    padding: 0.75rem 1rem;
    resize: vertical;
    line-height: 1.5;
}

.client-register-page .reg-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 576px) {
    .client-register-page .reg-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.875rem;
    }

    .client-register-page .reg-row .reg-field { margin-bottom: 0 !important; }
}

.client-register-page .reg-hint {
    margin: -0.25rem 0 0.875rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.client-register-page .reg-city {
    position: relative;
    margin-bottom: 0.875rem;
}

.client-register-page .reg-city-trigger {
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.client-register-page .reg-city-trigger:disabled { opacity: 0.55; cursor: not-allowed; }

.client-register-page .reg-city-trigger.is-open {
    border-color: var(--red) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: 0 0 0 3px rgba(217, 31, 53, 0.12);
}

.client-register-page .reg-city-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-light);
}

.client-register-page .reg-city-value.has-value { color: var(--text); }

.client-register-page .reg-city-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.client-register-page .reg-city-trigger.is-open .reg-city-arrow { transform: rotate(180deg); }

.client-register-page .reg-city-dropdown {
    display: none;
    position: absolute;
    z-index: 200;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border: 1px solid var(--red);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.client-register-page .reg-city-dropdown.is-open { display: block; }

.client-register-page .reg-city-search {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}

.client-register-page .reg-city-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    outline: none;
}

.client-register-page .reg-city-options {
    list-style: none;
    max-height: 15rem;
    overflow-y: auto;
}

.client-register-page .reg-city-options li {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    cursor: pointer;
    border-bottom: 1px solid var(--bg-muted);
}

.client-register-page .reg-city-options li:hover,
.client-register-page .reg-city-options li.is-active {
    background: var(--red);
    color: #fff;
}

.client-register-page .reg-city-options li.is-muted {
    cursor: default;
    color: var(--text-muted);
    font-size: 0.75rem;
    background: var(--bg-soft);
}

.client-register-page .reg-city-options li.is-muted:hover {
    background: var(--bg-soft);
    color: var(--text-muted);
}

.client-register-page .reg-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.client-register-page .reg-submit-btn {
    min-width: 12.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--red);
    border: 2px solid var(--red);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(217, 31, 53, 0.3);
}

.client-register-page .reg-submit-btn:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

/* ── Contact page ── */
.donors-contact-info,
.donors-contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    height: 100%;
}

.donors-contact-info .logo img {
    height: 3.25rem;
    margin-bottom: 1.5rem;
}

.donors-contact-info ul {
    list-style: none;
    margin-bottom: 1.75rem;
}

.donors-contact-info ul li {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
}

.donors-contact-info ul li span {
    color: var(--red);
    font-weight: 600;
    margin-right: 0.5rem;
}

.donors-contact-form h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.donors-contact-form .form-control {
    height: 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.875rem;
    background: var(--bg-soft);
    font-size: 0.9375rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.donors-contact-form .form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(217, 31, 53, 0.12);
    background: var(--bg);
    outline: none;
}

.donors-contact-form textarea.form-control {
    height: auto;
    min-height: 8.75rem;
    padding: 0.75rem 1rem;
    resize: vertical;
}

.donors-contact-form button[type="submit"] {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background var(--transition);
    width: 100%;
}

@media (min-width: 576px) {
    .donors-contact-form button[type="submit"] { width: auto; }
}

.donors-contact-form button[type="submit"]:hover { background: var(--red-dark); }

.donors-donation-form-wrap {
    max-width: 42rem;
    margin: 0 auto;
}

.donors-donation-form .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.donors-donation-form .row > [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.donors-address-location {
    cursor: pointer;
}

.donors-address-location.is-locating {
    background-image: linear-gradient(90deg, rgba(217, 31, 53, 0.06) 0%, rgba(217, 31, 53, 0.12) 50%, rgba(217, 31, 53, 0.06) 100%);
    background-size: 200% 100%;
    animation: donors-location-pulse 1.2s ease-in-out infinite;
}

@keyframes donors-location-pulse {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.donors-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.donors-contact-social a {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-muted);
    transition: background var(--transition), transform var(--transition);
}

.donors-contact-social a:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}

.donors-contact-social img { width: 1.125rem; height: 1.125rem; }

/* ── About content ── */
.donors-about-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.donors-about-content .logo img {
    height: 4rem;
    margin: 0 auto 1.75rem;
}

.donors-about-content p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.9;
    color: var(--text-muted);
}

/* ── Our Story (About page) ── */
.donors-our-story {
    padding: var(--section-y) 0;
    background: var(--bg);
}

.donors-our-story__stats {
    background: #fdf6f7;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1rem, 3vw, 2rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.donors-our-story__stat {
    text-align: center;
    padding: 0.75rem 0.5rem;
}

.donors-our-story__stat-number {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.donors-our-story__stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--red);
}

.donors-our-story__why {
    background: var(--red);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.25rem;
}

.donors-our-story__why h3 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
}

.donors-our-story__why-line {
    display: block;
    width: 2.5rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.donors-our-story__why p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.donors-our-story__photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.donors-our-story__photo img {
    width: 100%;
    height: 100%;
    min-height: clamp(14rem, 35vw, 18rem);
    object-fit: cover;
    display: block;
}

.donors-our-story__photo-placeholder {
    min-height: clamp(14rem, 35vw, 18rem);
    background: linear-gradient(135deg, var(--red-light) 0%, #fde8eb 100%);
}

.donors-our-story__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.donors-our-story__title {
    font-family: var(--font-body);
    font-size: clamp(1.65rem, 4vw, 2.375rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin: 0 0 1rem;
    max-width: 22ch;
}

.donors-our-story__desc {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
    max-width: 40rem;
}

.donors-our-story__panel {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.donors-our-story__question h4 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.625rem;
}

.donors-our-story__question p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
}

.donors-our-story__call {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.donors-our-story__call-icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1rem;
}

.donors-our-story__call-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.donors-our-story__call-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.donors-our-story__call-number:hover {
    color: var(--red);
}

.donors-our-story__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.donors-our-story__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 0.625rem;
}

.donors-our-story__list li:last-child {
    margin-bottom: 0;
}

.donors-our-story__list i {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--red);
    font-size: 0.75rem;
}

.donors-our-story__btn {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
}

@media (max-width: 991.98px) {
    .donors-our-story__title {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .donors-our-story__stat {
        margin-bottom: 0.5rem;
    }

    .donors-our-story__stat:last-child {
        margin-bottom: 0;
    }
}

/* ── Donation detail ── */
.donors-donation-detail {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.donors-donation-detail__row {
    display: grid;
    grid-template-columns: minmax(8rem, 35%) 1fr;
    border-bottom: 1px solid var(--border);
}

.donors-donation-detail__row:last-of-type { border-bottom: none; }

.donors-donation-detail__label {
    background: var(--bg-soft);
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
    border-right: 1px solid var(--border);
}

.donors-donation-detail__value {
    padding: 1rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    word-break: break-word;
}

.donors-donation-detail__text {
    padding: clamp(1.25rem, 3vw, 2rem);
    line-height: 1.85;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.donors-donation-detail__map {
    padding: 0 clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
}

.donors-donation-detail__map iframe {
    width: 100%;
    height: clamp(14rem, 40vw, 25rem);
    border-radius: var(--radius);
    border: none;
}

@media (max-width: 575px) {
    .donors-donation-detail__row {
        grid-template-columns: 1fr;
    }

    .donors-donation-detail__label {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.5rem;
    }

    .donors-donation-detail__value {
        padding-top: 0.5rem;
    }
}

/* ── Post detail ── */
.donors-post-hero img {
    width: 100%;
    max-height: clamp(14rem, 45vw, 30rem);
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1.75rem;
}

.donors-post-title {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.donors-post-title h1 {
    font-size: clamp(1.375rem, 4vw, 2.25rem);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.donors-post-fav {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: transparent;
    color: var(--red);
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.donors-post-fav:hover,
.donors-post-fav .fas.fa-heart {
    background: var(--red);
    color: #fff;
}

.donors-post-content {
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.donors-articles--inline {
    padding: 0;
    background: transparent;
    overflow: visible;
}

/* ── Footer ── */
.donors-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.78);
    padding-top: clamp(2.5rem, 6vw, 4rem);
}

.donors-footer__brand img {
    height: 3rem;
    margin-bottom: 1rem;
}

.donors-footer__brand h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}

.donors-footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.donors-footer__social {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.donors-footer__social a {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    transition: background var(--transition), color var(--transition);
}

.donors-footer__social a:hover {
    background: var(--red);
    color: #fff;
}

.donors-footer__title {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.625rem;
    position: relative;
}

.donors-footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.25rem;
    height: 2px;
    background: var(--red);
    border-radius: 1px;
}

.donors-footer__links {
    list-style: none;
}

.donors-footer__links li { margin-bottom: 0.625rem; }

.donors-footer__links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.donors-footer__links a:hover { color: var(--red); }

.donors-footer__stores-label {
    color: var(--red);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
}

.donors-footer__stores img {
    height: 2.625rem;
    width: auto;
    margin-bottom: 0.625rem;
    display: block;
    border-radius: var(--radius-sm);
}

.donors-footer__widget-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1rem;
}

.donors-footer__iframe {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.donors-footer__iframe iframe {
    display: block;
    width: 100%;
    min-height: 10rem;
    border: 0;
}

.donors-footer__copyright {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.donors-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.donors-footer__bottom-text {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
}

.donors-footer__bottom-text a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.donors-footer__bottom-text a:hover {
    color: var(--red);
}

.donors-footer__bottom .rights {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin: 0;
}

.donors-footer__bottom .rights span { color: var(--red); }

@media (min-width: 768px) {
    .donors-footer__bottom .rights { text-align: right; }
}

/* ── Alerts ── */
.alert {
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

/* ── Utility ── */
.text-center-mt { text-align: center; margin-top: 1.5rem; }

/* ── Profile ── */
.donors-profile-wrap {
    max-width: 42rem;
    margin: 0 auto;
}

.donors-profile-badge {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.donors-profile-form h4 {
    margin-bottom: 1rem;
}

.donors-phone-visibility {
    padding: 0.875rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.donors-phone-visibility .form-check-input {
    margin-top: 0.2rem;
}

.donors-phone-visibility .form-check-label {
    font-weight: 500;
}

/* ── Blood availability ── */
.donors-blood-availability .donors-filter .location-city-picker {
    margin-bottom: 0;
}

.donors-blood-bank-list {
    display: grid;
    gap: 1rem;
}

.donors-blood-bank-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.donors-blood-bank-card__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.donors-blood-bank-card__info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.donors-blood-bank-card__info p {
    margin-bottom: 0.35rem;
    font-size: 0.9375rem;
    color: var(--text-muted, #6b7280);
}

.donors-blood-bank-card__meta {
    min-width: 10rem;
    text-align: right;
}

.donors-blood-bank-card__type {
    display: inline-block;
    background: rgba(217, 31, 53, 0.1);
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.donors-blood-bank-card__type--donor {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
}

.donors-blood-bank-card__type--patient {
    background: rgba(234, 88, 12, 0.12);
    color: #c2410c;
}

.donors-blood-bank-card__type--blood_bank {
    background: rgba(217, 31, 53, 0.1);
    color: var(--red);
}

.donors-blood-bank-card__units {
    font-size: 0.9375rem;
    color: #166534;
}

.donors-stock-toggle {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--border);
    background: #ecfdf3;
    color: #166534;
    font-weight: 600;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.donors-stock-toggle:hover,
.donors-stock-toggle.is-open {
    background: #d1fae5;
}

.donors-stock-panel {
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem 1.25rem;
    background: #f8fafc;
    overflow-x: auto;
}

.donors-stock-table th,
.donors-stock-table td {
    vertical-align: middle;
    font-size: 0.875rem;
    white-space: nowrap;
}

.donors-stock-input {
    max-width: 7rem;
}

.donors-stock-status {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.2rem 0.625rem;
    border-radius: var(--radius-full);
}

.donors-stock-status--available {
    background: #ecfdf3;
    color: #166534;
}

.donors-stock-status--out {
    background: #fef2f2;
    color: #b91c1c;
}

.donors-stock-qty {
    font-weight: 700;
    color: #166534;
}

.donors-stock-dash {
    color: #9ca3af;
}

@media (max-width: 767px) {
    .donors-blood-bank-card__meta {
        text-align: left;
        width: 100%;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Testimonials (dark slider) ── */
.donors-testimonials {
    padding: var(--section-y) 0;
    background: #111111;
    color: #fff;
}

.donors-testimonials__header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.donors-testimonials__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: var(--red);
    font-size: 1.75rem;
}

.donors-testimonials__title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.donors-testimonials__subtitle {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.donors-testimonial-card {
    height: 100%;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    text-align: center;
}

.donors-testimonial-card__avatar {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217, 31, 53, 0.15);
    color: var(--red);
    font-size: 1.5rem;
}

.donors-testimonial-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
}

.donors-testimonial-card__role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1rem;
}

.donors-testimonial-card__quote {
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: italic;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 1rem;
    min-height: 4.5rem;
}

.donors-testimonial-card__stars {
    color: var(--red);
    font-size: 0.875rem;
}

.donors-testimonial-card__star--empty {
    opacity: 0.25;
}

.testimonials-carousel .owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50% !important;
    background: rgba(217, 31, 53, 0.15) !important;
    color: var(--red) !important;
}

.testimonials-carousel .owl-dots {
    margin-top: 1.5rem;
}

.testimonials-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.35) !important;
}

.testimonials-carousel .owl-dot.active span {
    background: var(--red) !important;
}

.donors-star-rating {
    display: inline-flex;
    gap: 0.35rem;
}

.donors-star-rating__star {
    border: 0;
    background: transparent;
    padding: 0;
    color: #d1d5db;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.donors-star-rating__star.is-active {
    color: var(--red);
}

.donors-rating-label {
    font-weight: 600;
    font-size: 0.9375rem;
}

.donors-profile-report {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Advertisement slots */
.donors-ad-slot {
    padding: 1.5rem 0;
}

.donors-ad-slot--banner {
    padding: 2rem 0;
    background: #f9fafb;
    border-top: 1px solid #eef0f2;
    border-bottom: 1px solid #eef0f2;
}

.donors-ad-slot--banner .donors-ad-slot__container {
    max-width: 1200px;
}

.donors-ad-slot--small {
    padding: 1.25rem 0;
}

.donors-ad-slot--small .donors-ad-slot__container {
    max-width: 720px;
}

.donors-ad {
    width: 100%;
}

.donors-ad--banner .donors-ad__link--banner,
.donors-ad--banner > .donors-ad__image {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.donors-ad--banner .donors-ad__image {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.donors-ad--small .donors-ad__link--small,
.donors-ad--small > .donors-ad__image {
    display: block;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donors-ad--small .donors-ad__image {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.donors-ad__link {
    line-height: 0;
}

.donors-ad__embed {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.donors-ad__embed--banner {
    max-width: 1200px;
    margin: 0 auto;
}

.donors-ad__embed--small {
    max-width: 600px;
    margin: 0 auto;
}

.donors-ad__embed iframe,
.donors-ad__embed ins {
    max-width: 100%;
}

/* ── Legal pages (Privacy, Terms) ── */
.donors-legal-page__body {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body, #444);
}

.donors-legal-page__body h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--heading-color, #1a1212);
}

.donors-legal-page__body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--heading-color, #1a1212);
}

.donors-legal-page__body p,
.donors-legal-page__body ul {
    margin-bottom: 1rem;
}

.donors-legal-page__body ul {
    padding-left: 1.25rem;
}

.donors-legal-page__body a {
    color: var(--primary, #c41e3a);
    text-decoration: underline;
}

.donors-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.donors-footer__legal a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.donors-footer__legal a:hover {
    color: #fff;
    text-decoration: underline;
}

.donors-footer__legal-sep {
    color: rgba(255, 255, 255, 0.45);
}

.donors-rich-content,
.donors-post-content.donors-rich-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-body, #444);
}

.donors-rich-content h2,
.donors-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
}

.donors-rich-content h3,
.donors-post-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
}

.donors-rich-content p,
.donors-rich-content ul,
.donors-rich-content ol,
.donors-post-content p,
.donors-post-content ul,
.donors-post-content ol {
    margin-bottom: 1rem;
}

.donors-rich-content ul,
.donors-rich-content ol,
.donors-post-content ul,
.donors-post-content ol {
    padding-left: 1.25rem;
}

.donors-rich-content a,
.donors-post-content a {
    color: var(--primary, #c41e3a);
    text-decoration: underline;
}

.donors-rich-content img,
.donors-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
