:root {
    --asting-dark: #2c2734;
    --asting-text: #343434;
    --asting-muted: #88858e;
    --asting-orange: #ff6d12;
    --asting-orange-hover: #ff9d00;
    --asting-bg: #ffffff;
    --asting-soft: #f7f7f8;
    --asting-border: #eaeaea;
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.asting-body {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: var(--asting-text);
    background: var(--asting-bg);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.topbar {
    background: var(--asting-dark);
    color: #fff;
    font-size: 14px;
}
.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-contacts {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar-contacts i { margin-right: 8px; color: var(--asting-orange); }
.topbar-right, .topbar-social, .lang-switch {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lang-switch a {
    opacity: 0.7;
    font-size: 12px;
    font-weight: 600;
}
.lang-switch a.is-active,
.lang-switch a:hover { opacity: 1; color: var(--asting-orange); }
.topbar-social a:hover { color: var(--asting-orange); }

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--asting-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
.brand img { width: 138px; height: auto; }

.main-nav .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.main-nav .menu > .menu-item { position: relative; }
.main-nav .menu > .menu-item > a {
    display: block;
    padding: 10px 14px;
    color: var(--asting-muted);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    transition: color .2s ease;
}
.main-nav .menu > .menu-item:hover > a,
.main-nav .menu > .menu-item.active > a {
    color: var(--asting-dark);
}
.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--asting-border);
    box-shadow: 0 12px 30px rgba(44, 39, 52, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
    z-index: 20;
}
.main-nav .menu-item.has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .sub-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--asting-text);
    font-size: 15px;
}
.main-nav .sub-menu a:hover {
    background: var(--asting-orange-hover);
    color: #fff;
}

.btn-donate,
.btn-primary,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 30px;
    transition: .25s ease;
}
.btn-donate {
    background: var(--asting-orange);
    color: #fff;
}
.btn-donate:hover { background: var(--asting-orange-hover); }
.btn-primary {
    background: var(--asting-orange);
    color: #fff;
}
.btn-primary:hover { background: var(--asting-dark); }
.btn-light {
    background: #fff;
    color: var(--asting-dark);
}
.btn-light:hover { background: var(--asting-orange); color: #fff; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--asting-border);
    background: #fff;
    color: var(--asting-dark);
    font-size: 20px;
}

.hero-slider {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    background: var(--asting-dark);
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    display: grid;
    align-items: center;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(44,39,52,.78), rgba(44,39,52,.35));
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 80px 0;
    max-width: 680px;
}
.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--asting-orange);
    font-weight: 600;
    margin: 0 0 12px;
}
.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.85rem, 4vw, 3.1rem);
    line-height: 1.2;
    margin: 0 0 22px;
    font-weight: 600;
}
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}
.hero-dots button.is-active { background: var(--asting-orange); }

.section { padding: 64px 0; }
.section-eyebrow {
    color: var(--asting-orange);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    font-size: 0.78rem;
    margin: 0 0 8px;
}
.home-head {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    padding-bottom: 18px;
}
.home-head::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--asting-orange);
    border-radius: 2px;
}
.home-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    margin: 0;
    color: var(--asting-dark);
    font-weight: 600;
}
.home-head-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--asting-orange);
    font-weight: 600;
    font-size: 0.9rem;
}
.home-head-link:hover { color: var(--asting-dark); }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}
.section-head h2 {
    margin: 0;
    font-size: 1.2rem;
    font-family: "Playfair Display", serif;
    color: var(--asting-dark);
}
.section-head a { color: #8b1e2d; font-weight: 600; }
.about-grid h2,
.page-banner h1,
.cta-inner h2,
.volunteer-grid h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    margin: 0 0 10px;
    color: var(--asting-dark);
    font-weight: 600;
}

.feature-grid,
.cause-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.cause-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature-card,
.cause-card,
.content-card {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(44, 39, 52, 0.05);
}
.feature-card {
    padding: 24px 20px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(44, 39, 52, 0.1);
}
.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 109, 18, 0.12);
    color: var(--asting-orange);
    font-size: 22px;
}
.feature-card h3 { margin: 0 0 8px; color: var(--asting-dark); font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--asting-muted); font-size: 0.92rem; }
a.feature-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
a.feature-card-link:hover h3 { color: var(--asting-orange); }

.about-strip { background: var(--asting-soft); }
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.check-list { margin: 20px 0 28px; }
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--asting-muted);
}
.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--asting-orange);
}
.about-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.cause-card { overflow: hidden; }
.cause-cover {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #1d1824;
}
.cause-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.cause-card:hover .cause-cover img { transform: scale(1.04); }
.cause-cover-fallback {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c2734, #ff6d12);
}
.cause-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cause-body h3 { margin: 0; color: var(--asting-dark); font-size: 1.08rem; line-height: 1.35; }
.cause-body p { color: var(--asting-muted); margin: 0; font-size: 0.92rem; line-height: 1.6; }
.cause-body .link-more { margin-top: 4px; }
.cause-progress { display: grid; gap: 8px; margin-top: 4px; }
.cause-progress-bar {
    height: 8px;
    background: rgba(20, 24, 36, 0.08);
    border-radius: 999px;
    overflow: hidden;
}
.cause-progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #8b1e2d, #c45a3a);
    border-radius: inherit;
}
.cause-progress-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 0.82rem;
    color: var(--asting-muted);
}
.cause-progress-meta strong { color: #8b1e2d; }

.home-faq {
    background:
        linear-gradient(180deg, rgba(247, 245, 248, 0.95), #fff 70%),
        radial-gradient(circle at 12% 20%, rgba(255, 109, 18, 0.08), transparent 42%);
    border-top: 1px solid rgba(20, 24, 36, 0.06);
    border-bottom: 1px solid rgba(20, 24, 36, 0.06);
}
.faq-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 32px;
    align-items: stretch;
}
.faq-intro {
    background: #fff;
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(44, 39, 52, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.faq-intro-visual {
    aspect-ratio: 16 / 10;
    background: #1d1824;
    overflow: hidden;
}
.faq-intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.faq-intro-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.faq-intro .section-eyebrow { margin-bottom: 10px; }
.faq-intro h2 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    color: var(--asting-dark);
}
.faq-intro-body > p {
    color: var(--asting-muted);
    line-height: 1.7;
    margin: 0 0 18px;
}
.faq-tips {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 10px;
}
.faq-tips li {
    position: relative;
    padding-left: 26px;
    color: var(--asting-dark);
    font-size: 0.92rem;
    line-height: 1.45;
}
.faq-tips li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--asting-orange);
    font-size: 0.85rem;
}
.faq-intro-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}
.faq-secondary-link {
    color: #8b1e2d;
    font-weight: 600;
    font-size: 0.92rem;
}
.faq-secondary-link:hover { color: var(--asting-orange); }
.faq-list { display: grid; gap: 12px; align-content: start; }
.faq-item {
    background: #fff;
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(44, 39, 52, 0.04);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--asting-dark);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: #8b1e2d;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: #8b1e2d; }
.faq-answer {
    padding: 0 20px 18px;
    color: var(--asting-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.home-testimonials {
    background: #f7f4f0;
    padding: 48px 0;
}
.home-testimonials .home-head { margin-bottom: 22px; }
.testimonial-slider { position: relative; }
.testimonial-slider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.testimonial-slider-track::-webkit-scrollbar { display: none; }
.testimonial-slide {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
    min-width: 0;
}
.testimonial-card {
    background: #fff;
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 12px;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(44, 39, 52, 0.04);
    height: 100%;
}
.testimonial-slider .album-slider-btn { top: 42%; }
.testimonial-quote {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--asting-dark);
    flex: 1;
}
.testimonial-quote::before {
    content: "“";
    color: #8b1e2d;
    opacity: 0.45;
    font-size: 1.35rem;
    font-weight: 700;
    margin-right: 4px;
    line-height: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(20, 24, 36, 0.06);
}
.testimonial-author img,
.testimonial-avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-avatar-fallback {
    display: grid;
    place-items: center;
    background: rgba(139, 30, 45, 0.1);
    color: #8b1e2d;
    font-size: 0.85rem;
}
.testimonial-author strong {
    display: block;
    color: var(--asting-dark);
    font-size: 0.9rem;
}
.testimonial-author span {
    color: var(--asting-muted);
    font-size: 0.8rem;
}

.newsletter-band {
    background:
        linear-gradient(120deg, rgba(31, 61, 91, 0.94), rgba(139, 30, 45, 0.88)),
        url('../img/slide3.jpg') center/cover;
    color: #fff;
    padding: 56px 0;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.newsletter-band .section-eyebrow { color: rgba(255, 255, 255, 0.75); }
.newsletter-band h2 { margin: 8px 0 10px; color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.newsletter-band p { margin: 0; color: rgba(255, 255, 255, 0.82); line-height: 1.65; max-width: 40ch; }
.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
    position: relative;
}
.newsletter-form .form-field { margin: 0; }
.newsletter-form input[type="email"] {
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 14px 16px;
    font: inherit;
}
.newsletter-form .btn-primary {
    white-space: nowrap;
    border: 0;
}
.newsletter-msg {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.92rem;
    color: #fff;
}
.newsletter-msg.is-error { color: #ffd0d0; }
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}
.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;
}
.link-more {
    color: var(--asting-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.link-more:hover { color: var(--asting-dark); }

.stats-strip {
    background: var(--asting-dark);
    color: #fff;
    padding: 36px 0;
}
.stats-grid-home {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
}
.stat-item strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 6px;
    color: #fff;
}
.stat-item span {
    color: rgba(255,255,255,.72);
    font-size: 0.88rem;
}

.donate-campaign-pick {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}
.donate-campaign-pick-card {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(20, 24, 36, 0.1);
    border-radius: 10px;
    background: #fff;
    color: var(--asting-dark);
    transition: border-color .2s ease, transform .2s ease;
}
.donate-campaign-pick-card:hover {
    border-color: var(--asting-orange);
    transform: translateY(-1px);
}
.donate-campaign-pick-card strong { font-size: 1rem; }
.donate-campaign-pick-card span {
    color: var(--asting-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}
.donate-campaign-pick-card em {
    font-style: normal;
    color: #8b1e2d;
    font-weight: 600;
    font-size: 0.9rem;
}
.donate-side-title {
    margin: 18px 0 10px;
    font-size: 1.05rem;
    color: var(--asting-dark);
}

.volunteer-strip { background: var(--asting-soft); }
.volunteer-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}
.volunteer-grid.has-visual {
    grid-template-columns: 0.95fr 0.85fr 1.15fr;
    gap: 28px;
    align-items: center;
}
.volunteer-visual {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(44, 39, 52, 0.12);
    background: #1d1824;
}
.volunteer-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 420px;
    object-fit: cover;
}
.volunteer-copy p { color: var(--asting-muted); margin: 0; max-width: 36ch; }
.volunteer-form { margin: 0; }

.features { background: #fff; }
.causes { background: #fff; }
.home-news { background: var(--asting-soft); }
.home-gallery { background: #fff; }

.cta-band {
    background:
        linear-gradient(120deg, rgba(44,39,52,.88), rgba(255,109,18,.75)),
        url("../img/slide3.jpg") center/cover;
    color: #fff;
    padding: 52px 0;
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; margin: 0; }

.page-banner {
    background:
        linear-gradient(120deg, rgba(44,39,52,.9), rgba(44,39,52,.65)),
        url("../img/slide1.png") center/cover;
    color: #fff;
    padding: 70px 0 60px;
}
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.breadcrumb {
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: 14px;
}
.breadcrumb a:hover { color: var(--asting-orange); }
.content-card { padding: 28px 30px; }
.rich-text h1, .rich-text h2, .rich-text h3 { color: var(--asting-dark); }
.rich-text p { color: #555; }
.rich-text img { border-radius: 6px; margin: 12px 0; }
.rich-text .kv-box {
    border: 1px solid var(--asting-border);
    border-left: 4px solid var(--asting-dark);
    background: var(--asting-soft);
    padding: 14px 16px;
    margin: 18px 0;
    border-radius: 6px;
}
.rich-text .kv-box-info { border-left-color: #2563eb; background: #eff6ff; }
.rich-text .kv-box-warn { border-left-color: #d97706; background: #fffbeb; }
.rich-text .kv-box-success { border-left-color: #16a34a; background: #f0fdf4; }
.rich-text .kv-quote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 4px solid var(--asting-orange);
    background: #fff7f2;
    font-style: italic;
    color: #444;
}
.rich-text .kv-quote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--asting-muted);
}
.rich-text .kv-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 20px 0;
}
.rich-text .kv-cta {
    margin: 24px 0;
    padding: 28px 22px;
    border-radius: 8px;
    background: linear-gradient(120deg, #2c2734, #1f3d5b);
    color: #fff;
    text-align: center;
}
.rich-text .kv-cta h3,
.rich-text .kv-cta p { color: #fff; margin: 0 0 10px; }
.rich-text .kv-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--asting-orange);
    color: #fff;
    font-weight: 600;
}
.rich-text .kv-btn:hover { color: #fff; background: var(--asting-orange-hover); }
.rich-text .kv-btn-outline {
    background: transparent;
    border: 1px solid var(--asting-dark);
    color: var(--asting-dark);
}
.rich-text .kv-btn-outline:hover { background: var(--asting-dark); color: #fff; }
.rich-text .kv-lead {
    font-size: 1.08rem;
    color: #3a4450;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}
.rich-text .kv-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rich-text .kv-col {
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 8px;
    padding: 16px 18px;
    background: #fff;
}
.rich-text .kv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}
.rich-text .kv-cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rich-text .kv-card {
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 8px;
    padding: 18px;
    background: #fff;
}
.rich-text .kv-card-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 109, 18, 0.12);
    color: var(--asting-orange);
    font-weight: 700;
    margin-bottom: 10px;
}
.rich-text .kv-card h3 { margin: 0 0 8px; }
.rich-text .kv-card p { margin: 0; }
.rich-text .kv-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}
.rich-text .kv-steps-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rich-text .kv-step {
    text-align: center;
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 8px;
    padding: 18px 14px;
    background: var(--asting-soft);
}
.rich-text .kv-step-num {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--asting-dark);
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}
.rich-text .kv-step h3 { margin: 0 0 6px; font-size: 1.02rem; }
.rich-text .kv-step p { margin: 0; font-size: 0.92rem; }
.rich-text .kv-checklist {
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 8px;
    padding: 16px 18px;
    margin: 18px 0;
    background: #fff;
}
.rich-text .kv-checklist h3 { margin: 0 0 8px; }
.rich-text .kv-checklist ul { margin: 0; padding-left: 1.2em; }
.rich-text .kv-checklist li { margin: 0.4em 0; }
.rich-text .kv-people {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 0;
}
.rich-text .kv-person {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    margin: 12px 0;
}
.rich-text .kv-person-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--asting-dark);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}
.rich-text .kv-person h3 { margin: 0 0 4px; }
.rich-text .kv-person-role {
    color: var(--asting-muted);
    font-size: 0.9rem;
    margin: 0 0 6px;
}
.rich-text .kv-person p:last-child { margin: 0; }
.rich-text .kv-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
    padding: 18px 14px;
    border-radius: 8px;
    background: var(--asting-soft);
    text-align: center;
}
.rich-text .kv-stats strong {
    display: block;
    font-size: 1.4rem;
    color: #8b1e2d;
    margin-bottom: 4px;
}
.rich-text .kv-stats span {
    color: var(--asting-muted);
    font-size: 0.86rem;
}
.rich-text .kv-contact {
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 8px;
    padding: 18px 20px;
    margin: 18px 0;
    background: var(--asting-soft);
}
.rich-text .kv-contact h3 { margin: 0 0 10px; }
.rich-text .kv-contact p { margin: 0 0 8px; }
.rich-text .kv-contact p:last-child { margin-bottom: 0; }
.rich-text .kv-divider {
    border: 0;
    border-top: 1px solid rgba(20, 24, 36, 0.1);
    margin: 28px 0;
}
.kv-embed-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 8px;
}
.kv-embed-gallery figure { margin: 0; overflow: hidden; border-radius: 6px; }
.kv-embed-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0;
}
.kv-embed-more { margin: 0 0 18px; font-weight: 600; }
.kv-embed-more a { color: var(--asting-orange); }
.kv-note { color: var(--asting-muted); font-size: 0.92rem; }

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
}
.page-layout .page-aside { order: 2; }
.page-layout .page-main { order: 1; }
.page-aside {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 16px;
}
.page-aside-card {
    background: #fff;
    border: 1px solid var(--asting-border);
    padding: 16px 14px;
}
.page-aside-card h2 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: var(--asting-dark);
}
.page-side-nav { display: grid; gap: 2px; list-style: none; margin: 0; padding: 0; }
.page-side-nav a {
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--asting-muted);
    font-size: 0.9rem;
}
.page-side-nav a:hover,
.page-side-nav a.is-active {
    background: rgba(255, 109, 18, 0.1);
    color: var(--asting-orange);
}
.page-aside-actions { display: grid; gap: 6px; }
.page-aside-link {
    display: block;
    padding: 9px 11px;
    border-radius: 6px;
    background: var(--asting-soft);
    color: var(--asting-dark);
    font-size: 0.88rem;
    font-weight: 600;
}
.page-aside-link:hover {
    background: rgba(255, 109, 18, 0.12);
    color: var(--asting-orange);
}
.page-aside-contact .page-contact-line {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 0 0 8px;
    color: var(--asting-muted);
    font-size: 0.88rem;
    line-height: 1.4;
}
.page-aside-contact a.page-contact-line:hover { color: var(--asting-orange); }
.page-aside-contact i { margin-top: 3px; color: var(--asting-orange); width: 14px; }

.page-related { background: var(--asting-soft); }
.page-related .section-head { margin-bottom: 22px; }
.page-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.page-related-card {
    display: grid;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--asting-border);
    padding: 18px 16px;
    transition: border-color .15s ease, transform .15s ease;
}
.page-related-card strong {
    color: var(--asting-dark);
    font-size: 1rem;
}
.page-related-card span {
    color: var(--asting-orange);
    font-size: 0.85rem;
    font-weight: 600;
}
.page-related-card:hover {
    border-color: rgba(255, 109, 18, 0.45);
    transform: translateY(-2px);
    color: inherit;
}
.page-cta { margin-top: 0; }
.page-cta p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.85);
    max-width: 420px;
}
.page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.container-wide {
    width: min(1320px, calc(100% - 40px));
    margin-inline: auto;
}
.rich-text-full {
    background: #fff;
    border: 1px solid var(--asting-border);
    padding: 28px 32px;
}
.page-content.template-full { padding-top: 40px; }

@media (max-width: 900px) {
    .page-layout { grid-template-columns: 1fr; }
    .page-aside { position: static; order: 1; }
    .page-layout .page-main { order: 2; }
    .page-related-grid { grid-template-columns: 1fr 1fr; }
    .rich-text .kv-cols { grid-template-columns: 1fr; }
    .kv-embed-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .page-related-grid { grid-template-columns: 1fr; }
}

.site-footer {
    background: var(--asting-dark);
    color: #d7d3dc;
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
    gap: 28px;
    padding-bottom: 40px;
}
.footer-logo {
    width: 150px;
    margin-bottom: 16px;
    background: #fff;
    padding: 8px 10px;
}
.site-footer h4 {
    color: #fff;
    margin: 0 0 16px;
    font-size: 18px;
}
.footer-links li,
.footer-contacts li { margin-bottom: 10px; }
.footer-contacts a { color: inherit; }
.footer-contacts a:hover { color: var(--asting-orange); }
.footer-links a:hover { color: var(--asting-orange); }
.footer-contacts i {
    width: 18px;
    margin-right: 8px;
    color: var(--asting-orange);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    font-size: 14px;
}
.flash {
    margin: 16px auto;
    padding: 12px 14px;
    border-radius: 6px;
}
.flash-success { background: #ecfdf5; color: #166534; }
.flash-danger { background: #fef2f2; color: #991b1b; }
.flash-warning { background: #fffbeb; color: #92400e; }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 90;
}
.mobile-overlay.is-open { display: block; }

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.filter-chips .chip {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--asting-border);
    color: var(--asting-muted);
    background: #fff;
}
.filter-chips .chip.is-active,
.filter-chips .chip:hover {
    background: var(--asting-orange);
    border-color: var(--asting-orange);
    color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.album-slider {
    position: relative;
}
.album-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 4px 16px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.album-slider-track::-webkit-scrollbar { display: none; }
.album-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    min-width: 0;
}
.album-slider-btn {
    position: absolute;
    top: 38%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--asting-dark);
    box-shadow: 0 8px 22px rgba(20, 24, 36, 0.14);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.album-slider-btn:hover {
    background: var(--asting-orange);
    color: #fff;
    transform: scale(1.04);
}
.album-slider-prev { left: -8px; }
.album-slider-next { right: -8px; }
.album-slider-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
    background: #fff;
    color: var(--asting-muted);
}
.blog-card,
.album-card {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(44, 39, 52, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover,
.album-card:hover {
    transform: translateY(-4px);
    border-color: #d4d4d8;
    box-shadow: 0 16px 36px rgba(44, 39, 52, 0.1);
}
.blog-cover,
.album-cover {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: #1d1824;
    flex-shrink: 0;
}
.blog-cover img,
.album-cover img,
.blog-cover-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-cover-fallback {
    background: linear-gradient(135deg, #2c2734, #ff6d12);
}
.blog-body,
.album-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 22px 24px;
    flex: 1;
}
.blog-meta {
    display: flex;
    gap: 14px;
    color: var(--asting-muted);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    margin: 0;
}
.blog-body h3,
.album-body h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.4;
    color: var(--asting-dark);
    font-weight: 600;
}
.blog-body p,
.album-body p {
    margin: 0;
    color: var(--asting-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}
.blog-body .link-more {
    margin-top: auto;
    padding-top: 6px;
}
.album-count {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0,0,0,.65);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}
.blog-detail { max-width: 860px; }
.blog-detail-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}
.blog-lead {
    font-size: 1.15rem;
    color: var(--asting-muted);
    margin-bottom: 20px;
}
.album-intro {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
    color: var(--asting-muted);
}

.gallery-masonry {
    columns: 3 280px;
    column-gap: 18px;
}
.gallery-item {
    break-inside: avoid;
    margin: 0 0 18px;
    background: #fff;
    border: 1px solid var(--asting-border);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    display: block;
}
.gallery-item figcaption {
    padding: 12px 14px;
    display: grid;
    gap: 4px;
}
.gallery-item figcaption strong { color: var(--asting-dark); }
.gallery-item figcaption span { color: var(--asting-muted); font-size: 0.92rem; }
.video-thumb,
.play-badge {
    display: grid;
    place-items: center;
    color: #fff;
}
.video-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #2c2734, #564d63);
    font-size: 48px;
}
.play-badge {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    font-size: 34px;
}

.lightbox[hidden] { display: none !important; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 8, 14, 0.9);
    display: grid;
    place-items: center;
    padding: 24px;
}
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
}
.lightbox-inner {
    width: min(960px, 100%);
    color: #fff;
}
.lightbox-media img,
.lightbox-media video,
.lightbox-media iframe {
    width: 100%;
    max-height: 70vh;
    background: #000;
    border: 0;
}
.lightbox-media iframe { aspect-ratio: 16/9; height: auto; min-height: 360px; }
.lightbox-caption { margin-top: 14px; }
.lightbox-caption h3 { margin: 0 0 6px; }
.lightbox-caption p { margin: 0; color: rgba(255,255,255,.8); }

@media (max-width: 1100px) {
    .feature-grid, .cause-grid, .footer-grid, .blog-grid, .album-grid { grid-template-columns: 1fr 1fr; }
    .album-slide { flex-basis: calc((100% - 24px) / 2); }
    .testimonial-slide { flex-basis: calc((100% - 16px) / 2); }
    .about-grid, .faq-layout, .newsletter-inner { grid-template-columns: 1fr; }
    .volunteer-grid,
    .volunteer-grid.has-visual { grid-template-columns: 1fr 1fr; }
    .volunteer-visual { grid-column: 1 / -1; }
    .volunteer-visual img { min-height: 220px; max-height: 280px; }
    .stats-grid-home { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .rich-text .kv-cols-3,
    .rich-text .kv-cards-3,
    .rich-text .kv-steps,
    .rich-text .kv-steps-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
    .topbar { display: none; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 110;
        padding: 70px 20px 20px;
        box-shadow: -10px 0 30px rgba(0,0,0,.12);
        transition: right .25s ease;
        overflow-y: auto;
    }
    .main-nav.is-open { right: 0; }
    .main-nav .menu {
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        display: none;
        padding-left: 12px;
    }
    .main-nav .menu-item.open > .sub-menu { display: block; }
    .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
    .btn-donate { display: none; }
    .btn-donate-icon {
        display: inline-grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--asting-orange);
        color: #fff;
    }
}
.btn-donate-icon { display: none; }
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-search-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--asting-dark);
    background: rgba(44, 39, 52, 0.06);
    transition: background .2s ease, color .2s ease;
}
.btn-search-icon:hover {
    background: rgba(255, 109, 18, 0.14);
    color: var(--asting-orange);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    padding: 14px 0;
    background: rgba(28, 25, 34, 0.96);
    color: #f4f4f5;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-banner-inner p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 720px;
}
.cookie-banner-inner a {
    color: #ffb07a;
    text-decoration: underline;
}
.btn-cookie-accept {
    border: 0;
    border-radius: 8px;
    padding: 10px 18px;
    background: var(--asting-orange);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.btn-cookie-accept:hover { background: var(--asting-orange-hover); }

.search-page-form {
    display: grid;
    gap: 14px;
}

@media (max-width: 640px) {
    .feature-grid, .cause-grid, .footer-grid, .blog-grid, .album-grid { grid-template-columns: 1fr; }
    .album-slide { flex-basis: 85%; }
    .testimonial-slide { flex-basis: 85%; }
    .album-slider-prev { left: 4px; }
    .album-slider-next { right: 4px; }
    .stats-grid-home { grid-template-columns: 1fr 1fr; }
    .section { padding: 40px 0; }
    .hero-slider { min-height: 62vh; }
    .about-visual img { height: 220px; }
    .volunteer-grid,
    .volunteer-grid.has-visual { grid-template-columns: 1fr; }
    .volunteer-visual { grid-column: auto; }
    .volunteer-visual img { min-height: 200px; max-height: 240px; }
    .gallery-masonry { columns: 1; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .content-form { padding: 20px; }
    .newsletter-form { grid-template-columns: 1fr; }
    .newsletter-band { padding: 40px 0; }
    .rich-text .kv-cols,
    .rich-text .kv-cols-3,
    .rich-text .kv-cards,
    .rich-text .kv-cards-3,
    .rich-text .kv-steps,
    .rich-text .kv-steps-4,
    .rich-text .kv-people,
    .rich-text .kv-stats { grid-template-columns: 1fr; }
}

.bank-accounts {
    display: grid;
    gap: 14px;
    margin: 18px 0;
}
.bank-account-card {
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-radius: 8px;
    padding: 16px 18px;
    background: #fff;
}
.bank-account-card h3 {
    margin: 0 0 10px;
    color: var(--asting-dark);
    font-size: 1.05rem;
}
.bank-account-card ul {
    margin: 0;
    padding-left: 1.1em;
    color: #3a4450;
    line-height: 1.7;
}
.bank-account-card .bank-iban {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.95em;
    background: #f4f6f8;
    padding: 2px 6px;
    border-radius: 4px;
}
.donate-bank-accounts { margin-top: 16px; }

.donate-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: start;
}
.donate-points {
    margin: 18px 0 0;
    padding-left: 1.1em;
    color: #5b6470;
    line-height: 1.7;
}
.donate-points li { margin: 0.35em 0; }
.donate-layout .kv-box {
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-left: 4px solid #1f3d5b;
    background: #f8fafc;
    padding: 14px 16px;
    margin: 16px 0;
    border-radius: 6px;
}
.donate-layout .kv-box-info { border-left-color: #2563eb; background: #eff6ff; }
.donate-layout .kv-box-warn { border-left-color: #d97706; background: #fffbeb; }
.donate-layout .kv-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--asting-orange);
    color: #fff;
    font-weight: 600;
}
.donate-result-meta {
    list-style: none;
    margin: 18px 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.donate-result-meta li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(20, 24, 36, 0.08);
}
.donate-result-meta span { color: #5b6470; }
.donate-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.donate-result .kv-box {
    border: 1px solid rgba(20, 24, 36, 0.08);
    border-left: 4px solid #16a34a;
    background: #f0fdf4;
    padding: 14px 16px;
    border-radius: 6px;
}
.donate-result.is-fail .kv-box {
    border-left-color: #d97706;
    background: #fffbeb;
}
@media (max-width: 900px) {
    .donate-layout { grid-template-columns: 1fr; }
}

.container.narrow { max-width: 760px; }
.section-lead { color: #5b6470; line-height: 1.7; margin: 0 0 24px; }
.content-form {
    display: grid;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(20, 24, 36, 0.08);
    padding: 28px;
}
.content-form .form-field { display: grid; gap: 6px; }
.content-form .form-field span { font-size: 0.92rem; color: #5b6470; }
.content-form input,
.content-form select,
.content-form textarea {
    width: 100%;
    border: 1px solid rgba(20, 24, 36, 0.14);
    padding: 12px 14px;
    font: inherit;
    background: #fff;
    color: #1c2430;
}
.content-form input:focus,
.content-form select:focus,
.content-form textarea:focus {
    outline: 2px solid rgba(139, 30, 45, 0.18);
    border-color: #8b1e2d;
}
.form-grid.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.btn-primary-block {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    background: #8b1e2d;
    color: #fff;
    padding: 14px 22px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.btn-primary-block:hover { background: #6f1724; }
.form-foot { margin: 4px 0 0; color: #5b6470; }
.form-foot a { color: #8b1e2d; font-weight: 600; }
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}
.contact-info { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-info li { display: flex; gap: 10px; align-items: flex-start; color: #2a3340; }
.contact-info i { color: #8b1e2d; margin-top: 3px; }
.contact-social { display: flex; gap: 14px; margin-top: 22px; font-size: 1.35rem; }
.contact-social a { color: #1f3d5b; }
.member-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(20, 24, 36, 0.08);
}
.member-nav { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; }
.member-nav a { color: #5b6470; font-weight: 500; }
.member-nav a.is-active { color: #8b1e2d; }
.member-nav .link-btn {
    border: 0;
    background: transparent;
    color: #8b1e2d;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}
.member-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.list-cards { display: grid; gap: 14px; }
.list-card {
    background: #fff;
    border: 1px solid rgba(20, 24, 36, 0.08);
    padding: 18px 20px;
}
.list-card time { display: block; color: #8b1e2d; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; }
.list-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.list-card p { margin: 0; color: #5b6470; line-height: 1.6; }
.list-card .rich-text { margin-top: 10px; color: #2a3340; line-height: 1.7; }
.inline-form { display: inline; }
@media (max-width: 900px) {
    .form-grid.two,
    .contact-layout,
    .member-grid { grid-template-columns: 1fr; }
}

/* ===== 010 İçerik modülleri (kampanya, program, ortak, rapor, hikâye) ===== */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.campaign-card {
    background: var(--asting-bg);
    border: 1px solid var(--asting-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.campaign-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(44,39,52,.12); }
.campaign-cover { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--asting-soft); }
.campaign-cover img { width: 100%; height: 100%; object-fit: cover; }
.campaign-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.campaign-body h3 { margin: 0; font-size: 20px; }
.campaign-body p { margin: 0; color: var(--asting-muted); }
.campaign-body .btn-primary { margin-top: auto; align-self: flex-start; }
.campaign-actions { margin-top: auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.campaign-progress { margin: 4px 0; }
.campaign-progress-bar {
    height: 10px;
    border-radius: 999px;
    background: var(--asting-border);
    overflow: hidden;
}
.campaign-progress-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--asting-orange), var(--asting-orange-hover));
}
.campaign-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-top: 8px;
    font-size: 13px;
    color: var(--asting-muted);
}
.campaign-progress-meta strong { color: var(--asting-orange); font-size: 16px; }
.campaign-progress-lg .campaign-progress-bar { height: 14px; }
.campaign-progress-lg .campaign-progress-meta { font-size: 15px; }

.campaign-cta-band {
    margin-top: 32px;
    padding: 28px;
    border-radius: 14px;
    background: var(--asting-soft);
    border: 1px solid var(--asting-border);
    text-align: center;
}
.campaign-cta-band h3 { margin: 0 0 14px; }

.donate-campaign-note p { margin: 4px 0; }

/* Program detay bölümleri */
.program-section { margin-top: 28px; }
.program-section h2 { margin-bottom: 10px; }
.program-block p { color: var(--asting-text); }
.program-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}
.program-col {
    background: var(--asting-soft);
    border: 1px solid var(--asting-border);
    border-radius: 14px;
    padding: 24px;
}
.program-col h3 { margin: 0 0 10px; }
.program-col .btn-primary { margin-top: 14px; }

.story-person { font-weight: 600; color: var(--asting-dark); margin: 0; }

/* İş ortakları — kompakt iki kolon şerit */
.partners-band {
    padding: 40px 0;
    border-top: 1px solid rgba(20, 24, 36, 0.08);
    border-bottom: 1px solid rgba(20, 24, 36, 0.08);
    background: #fff;
}
.partners-band-inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) 1.3fr;
    gap: 36px 48px;
    align-items: center;
}
.partners-copy .section-eyebrow { margin-bottom: 8px; }
.partners-copy h2 {
    margin: 0 0 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    color: var(--asting-dark);
}
.partners-copy > p {
    margin: 0 0 16px;
    color: var(--asting-muted);
    font-size: 0.94rem;
    line-height: 1.55;
    max-width: 34ch;
}
.partners-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b1e2d;
    font-weight: 600;
    font-size: 0.92rem;
}
.partners-link:hover { color: var(--asting-orange); }
.partners-link i { font-size: 0.78rem; transition: transform .2s ease; }
.partners-link:hover i { transform: translateX(3px); }
.partners-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(20, 24, 36, 0.08);
}
.partners-list li {
    flex: 1 1 140px;
    min-width: 140px;
    border-right: 1px solid rgba(20, 24, 36, 0.08);
}
.partners-list li:last-child { border-right: 0; }
.partner-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 18px 16px;
    text-align: center;
    color: var(--asting-dark);
    background: #faf9f8;
    transition: background .2s ease, color .2s ease;
}
.partner-mark span {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.partner-mark.has-logo {
    background: #fff;
}
.partner-mark img {
    max-height: 40px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter .2s ease, opacity .2s ease;
}
a.partner-mark:hover {
    background: #fff;
    color: var(--asting-orange);
}
a.partner-mark:hover img {
    filter: grayscale(0);
    opacity: 1;
}
@media (max-width: 900px) {
    .partners-band-inner { grid-template-columns: 1fr; gap: 22px; }
    .partners-copy > p { max-width: none; }
    .partners-list li { border-right: 0; border-bottom: 1px solid rgba(20, 24, 36, 0.08); flex-basis: 50%; }
    .partners-list li:last-child { border-bottom: 0; }
}
@media (max-width: 520px) {
    .partners-list li { flex-basis: 100%; }
}

/* Şeffaflık raporları listesi */
.report-list { display: flex; flex-direction: column; gap: 16px; }
.report-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--asting-bg);
    border: 1px solid var(--asting-border);
    border-radius: 12px;
}
.report-icon { font-size: 32px; color: var(--asting-orange); }
.report-info { flex: 1; }
.report-info h3 { margin: 0 0 6px; font-size: 18px; }
.report-meta { display: flex; gap: 12px; font-size: 13px; color: var(--asting-muted); margin-bottom: 6px; }
.report-info p { margin: 0; color: var(--asting-muted); }
.report-download { white-space: nowrap; }

.press-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 8px; }

/* Footer yasal linkler */
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: inherit; opacity: .85; font-size: 13px; }
.footer-legal a:hover { opacity: 1; color: var(--asting-orange); }

@media (max-width: 900px) {
    .campaign-grid { grid-template-columns: 1fr; }
    .program-columns { grid-template-columns: 1fr; }
    .report-item { flex-wrap: wrap; }
}
