/**
 * petrovackacesta — običan CSS (bez Tailwind-a)
 */
:root {
    --navy: #0f2040;
    --navy-dark: #0a152a;
    --navy-hover: #1a2e55;
    --red: #ef4444;
    --red-hover: #dc2626;
    --red-soft: #f87171;
    --red-100: #fecaca;
    --white: #fff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.08);
    --radius: 0.75rem;
    --radius-full: 9999px;
    --max: 80rem;
    --font: "Figtree", ui-sans-serif, system-ui, sans-serif;
}

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

.site-body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    background: var(--slate-50);
    color: var(--slate-900);
}

.site-main {
    flex: 1 1 auto;
}

.site-container {
    width: 100%;
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .site-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .site-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Top bar */
.site-topbar {
    display: none;
    background: var(--slate-900);
    color: var(--slate-300);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .site-topbar {
        display: block;
    }
}

.site-topbar__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-topbar__contacts {
    display: flex;
    gap: 1.5rem;
}

.site-topbar__item {
    display: flex;
    align-items: center;
}

.site-icon {
    flex-shrink: 0;
}

.site-icon--sm {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.site-icon--md {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.site-icon--lg {
    width: 1.5rem;
    height: 1.5rem;
}

.site-icon--xl {
    width: 2rem;
    height: 2rem;
}

.site-topbar__socials {
    display: flex;
    gap: 1rem;
}

.site-topbar a {
    color: inherit;
    transition: color 0.15s;
}

.site-topbar a:hover {
    color: var(--white);
}

/* Header */
.site-header {
    background: var(--navy);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-lg);
}

.site-header__bar {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 5rem;
}

@media (min-width: 640px) {
    .site-header__bar {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .site-header__bar {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.site-logo__mark {
    background: var(--red);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    display: flex;
}

.site-logo__mark--sm {
    padding: 0.375rem;
}

.site-logo__text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.site-logo__accent {
    color: var(--red-soft);
}

.site-logo__heart {
    color: var(--white);
}

.site-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }
}

.site-nav__link {
    font-weight: 500;
    color: var(--slate-200);
    text-decoration: none;
    transition: color 0.15s;
}

.site-nav__link:hover {
    color: var(--red-soft);
}

.site-nav__link--active {
    color: var(--red-soft);
}

.site-btn-donate-nav {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.15s;
}

.site-btn-donate-nav:hover {
    background: var(--red-hover);
}

.site-mobile-only {
    display: flex;
}

@media (min-width: 768px) {
    .site-mobile-only {
        display: none;
    }
}

.site-menu-btn {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--slate-200);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-menu-btn__icon-open,
.site-menu-btn__icon-close {
    position: absolute;
    inset: 0;
    margin: auto;
}

.site-menu-btn:hover {
    color: var(--white);
}

.site-menu-btn:focus {
    outline: 2px solid var(--red-soft);
    outline-offset: 2px;
}

.site-menu-btn__icon-close {
    display: none;
}

.site-header--menu-open .site-menu-btn__icon-open {
    display: none;
}

.site-header--menu-open .site-menu-btn__icon-close {
    display: block;
}

/* Mobile panel */
.site-mobile-menu {
    display: none;
    background: var(--navy-dark);
    border-top: 1px solid var(--slate-700);
}

@media (max-width: 767px) {
    .site-mobile-menu.site-mobile-menu--open {
        display: block;
    }
}

.site-mobile-menu__inner {
    padding: 0.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-mobile-menu__link {
    display: block;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-200);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.site-mobile-menu__link:hover {
    background: var(--navy-hover);
    color: var(--white);
}

.site-mobile-menu__link--active {
    background: var(--navy-hover);
    color: var(--red-soft);
}

.site-mobile-menu__cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    background: var(--red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

.site-mobile-menu__cta:hover {
    background: var(--red-hover);
}

/* Footer */
.site-footer {
    background: var(--slate-900);
    color: var(--slate-300);
    padding: 4rem 0 2rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.site-footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 1.5rem;
}

.site-footer__text {
    color: var(--slate-400);
    line-height: 1.625;
    margin: 0;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.75rem;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}

.site-footer a:hover {
    color: var(--red-soft);
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.site-footer__contact li.site-footer__contact-row {
    align-items: center;
}

.site-footer__contact a {
    color: var(--slate-300);
    text-decoration: none;
    transition: color 0.15s;
}

.site-footer__contact a:hover {
    color: var(--red-soft);
}

.site-footer__bottom {
    border-top: 1px solid var(--slate-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site-footer__copy {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin: 0;
}

.site-footer__socials {
    display: flex;
    gap: 1rem;
}

.site-footer__socials a {
    color: var(--slate-500);
}

.site-footer__socials a:hover {
    color: var(--white);
}

.text-red-icon {
    color: var(--red-soft);
}

.site-icon--align-top {
    margin-top: 2px;
    flex-shrink: 0;
}

.site-text-navy {
    color: var(--navy);
}

.site-text-muted {
    color: var(--slate-500);
}

.site-footer .site-logo__text {
    color: var(--white);
}

/* Page: common */
.site-page {
    background: var(--slate-50);
    min-height: 60vh;
    padding: 3rem 0;
}

.site-page__intro {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.site-page__intro h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 1.5rem;
}

.site-page__intro p {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin: 0;
}

.site-back-link {
    display: inline-flex;
    align-items: center;
    color: var(--slate-500);
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.15s;
}

.site-back-link:hover {
    color: var(--navy);
}

/* Hero */
.site-hero {
    position: relative;
    background: var(--navy-dark);
    color: var(--white);
}

.site-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.site-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.site-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}

.site-hero__content {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    padding: 8rem 1rem;
}

@media (min-width: 640px) {
    .site-hero__content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .site-hero__content {
        padding-top: 12rem;
        padding-bottom: 12rem;
    }
}

@media (min-width: 1024px) {
    .site-hero__content {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.site-hero__inner {
    max-width: 42rem;
}

.site-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 1.5rem;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .site-hero h1 {
        font-size: 3.75rem;
    }
}

.site-hero__lead {
    font-size: 1.125rem;
    color: var(--slate-300);
    line-height: 1.625;
    margin: 0 0 2.5rem;
}

@media (min-width: 768px) {
    .site-hero__lead {
        font-size: 1.25rem;
    }
}

.site-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .site-hero__actions {
        flex-direction: row;
    }
}

.site-btn-primary {
    display: inline-block;
    text-align: center;
    background: var(--red);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: background 0.15s;
}

.site-btn-primary:hover {
    background: var(--red-hover);
}

.site-btn-ghost {
    display: inline-block;
    text-align: center;
    background: rgb(255 255 255 / 0.1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.15s;
}

.site-btn-ghost:hover {
    background: rgb(255 255 255 / 0.2);
}

/* Stats strip */
.site-stats {
    background: var(--red);
    padding: 3rem 0;
    color: var(--white);
}

.site-stats__grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .site-stats__grid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .site-stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-stats__grid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.site-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-stats__item svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.site-stats__num {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.site-stats__label {
    color: #fecaca;
    font-weight: 500;
}

/* Section */
.site-section {
    padding: 5rem 0;
}

.site-section--muted {
    background: var(--slate-50);
}

.site-section--white {
    background: var(--white);
}

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

.site-section-eyebrow--light {
    color: var(--red-soft);
}

/* O nama */
.site-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .site-about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.site-about__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.site-about__lead {
    font-size: 1.125rem;
    color: var(--slate-700);
    line-height: 1.65;
    margin: 0 0 1rem;
    font-weight: 500;
}

.site-about__body {
    color: var(--slate-600);
    line-height: 1.7;
    margin: 0 0 1.75rem;
}

.site-about__highlights {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.site-about__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--slate-700);
    font-weight: 500;
}

.site-about__check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: var(--radius-full);
    background: #fef2f2;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.site-about__check svg {
    width: 0.875rem;
    height: 0.875rem;
}

.site-btn-primary--compact {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.site-about__media {
    position: relative;
}

.site-about__frame {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    outline: 1px solid var(--slate-200);
}

.site-about__img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.site-about__badge {
    position: absolute;
    bottom: -1rem;
    left: -0.5rem;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 11rem;
}

@media (min-width: 640px) {
    .site-about__badge {
        left: -1.5rem;
        bottom: -1.5rem;
    }
}

.site-about__badge-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--red-soft);
}

.site-about__badge-text {
    font-size: 0.8125rem;
    line-height: 1.35;
    margin-top: 0.35rem;
    display: block;
    color: var(--slate-200);
}

/* Kontakt forma (iznad footera) */
.site-contact {
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-hover) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.site-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgb(239 68 68 / 0.15), transparent 45%);
    pointer-events: none;
}

.site-contact .site-container {
    position: relative;
    z-index: 1;
}

.site-contact__deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.site-contact__deco--1 {
    width: 18rem;
    height: 18rem;
    background: rgb(239 68 68 / 0.22);
    top: 10%;
    left: -4rem;
}

.site-contact__deco--2 {
    width: 14rem;
    height: 14rem;
    background: rgb(96 165 250 / 0.12);
    bottom: 5%;
    right: 35%;
}

.site-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .site-contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.site-contact__content {
    position: relative;
}

.site-contact__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-contact__lead {
    font-size: 1.125rem;
    color: var(--slate-200);
    line-height: 1.65;
    margin: 0 0 1rem;
    font-weight: 500;
}

.site-contact__body {
    color: var(--slate-300);
    line-height: 1.7;
    margin: 0 0 1.75rem;
}

.site-contact__highlights {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.site-contact__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--slate-200);
    font-weight: 500;
    font-size: 0.9375rem;
}

.site-contact__check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: var(--radius-full);
    background: rgb(239 68 68 / 0.25);
    color: var(--red-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.site-contact__check svg {
    width: 0.875rem;
    height: 0.875rem;
}

.site-contact__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
}

.site-contact__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-200);
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(255 255 255 / 0.14);
}

.site-contact__chip svg {
    width: 1rem;
    height: 1rem;
    color: var(--red-soft);
}

.site-contact__form-col {
    position: relative;
}

.site-contact__form-wrap {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgb(255 255 255 / 0.2);
}

@media (min-width: 640px) {
    .site-contact__form-wrap {
        padding: 2rem 2.25rem;
    }
}

@media (min-width: 992px) {
    .site-contact__form-wrap {
        transform: translateY(0);
    }

    .site-contact__form-col::before {
        content: "";
        position: absolute;
        inset: -0.5rem;
        border-radius: 1.5rem;
        border: 1px solid rgb(255 255 255 / 0.12);
        pointer-events: none;
    }
}

.site-contact__alert {
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.site-contact__alert--success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.site-contact__alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.site-contact__fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .site-contact__fields {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .site-contact__fields {
        grid-template-columns: 1fr;
    }
}

.site-contact__field--full {
    grid-column: 1 / -1;
}

.site-contact__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.site-contact__optional {
    font-weight: 400;
    color: var(--slate-500);
}

.site-contact__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--slate-900);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.site-contact__input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgb(15 32 64 / 0.12);
}

.site-contact__input--error {
    border-color: var(--red);
}

.site-contact__textarea {
    resize: vertical;
    min-height: 8rem;
}

.site-contact__error {
    margin: 0.375rem 0 0;
    font-size: 0.8125rem;
    color: var(--red);
    font-weight: 500;
}

.site-contact__submit {
    margin-top: 1.5rem;
}

.site-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-section__head h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1rem;
}

.site-section__head p {
    color: var(--slate-600);
    max-width: 42rem;
    margin: 0;
}

.site-link-arrow {
    display: none;
    align-items: center;
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}

.site-link-arrow:hover {
    color: var(--red-hover);
}

@media (min-width: 768px) {
    .site-link-arrow {
        display: inline-flex;
    }
}

.site-link-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

.site-link-arrow--mobile-only {
    display: inline-flex;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .site-link-arrow--mobile-only {
        display: none;
    }
}

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

/* Grid cards */
.site-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.site-grid-news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-grid-news {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-grid-news {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Campaign / news card */
.site-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    border: 1px solid var(--slate-100);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

a.site-card:hover {
    box-shadow: var(--shadow-lg);
}

.site-card__media {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.site-card__media--tall {
    height: 16rem;
}

.site-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.site-card:hover .site-card__media img,
a.site-card:hover .site-card__media img {
    transform: scale(1.05);
}

.site-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgb(255 255 255 / 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
}

.site-card__badge--date {
    top: 1rem;
    left: 1rem;
    right: auto;
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow);
}

.site-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.site-card__cta {
    margin-top: auto;
}

.site-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.75rem;
}

a.site-card .site-card__title {
    transition: color 0.15s;
}

a.site-card:hover .site-card__title {
    color: var(--red);
}

.site-card__excerpt {
    color: var(--slate-600);
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
    flex: 1 1 auto;
}

.site-card__excerpt--tight {
    margin-bottom: 0;
}

.site-line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site-line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site-card__progress-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.site-card__progress-bar {
    width: 100%;
    height: 0.625rem;
    background: var(--slate-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.site-card__progress-bar--lg {
    height: 0.75rem;
    margin-bottom: 0.5rem;
}

.site-card__progress-fill {
    height: 100%;
    background: var(--red);
    border-radius: var(--radius-full);
    transition: width 0.3s;
}

.site-btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

.site-btn-block:hover {
    background: var(--navy-hover);
}

.site-card__footer-link {
    margin-top: 1.5rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.site-card__footer-link span {
    margin-left: 0.5rem;
    transition: transform 0.15s;
}

a.site-card:hover .site-card__footer-link span {
    transform: translateX(0.25rem);
}

/* News teaser on home */
.site-news-teaser {
    display: block;
    text-decoration: none;
    color: inherit;
}

.site-news-teaser__img-wrap {
    position: relative;
    height: 16rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.site-news-teaser__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.site-news-teaser:hover .site-news-teaser__img-wrap img {
    transform: scale(1.05);
}

.site-news-teaser__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 0.6), transparent);
}

.site-news-teaser__date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: var(--white);
}

.site-news-teaser__date span {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--red);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-news-teaser h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
    transition: color 0.15s;
}

.site-news-teaser:hover h3 {
    color: var(--red);
}

.site-news-teaser p {
    color: var(--slate-600);
    margin: 0;
}

/* Campaign detail */
.site-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .site-detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.site-article-panel {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    border: 1px solid var(--slate-100);
    overflow: hidden;
}

.site-article-panel__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.site-article-panel__body {
    padding: 2rem;
}

.site-article-panel__body h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
    .site-article-panel__body h1 {
        font-size: 2.25rem;
    }
}

.site-prose {
    font-size: 1.125rem;
}

.site-prose p {
    color: var(--slate-700);
    line-height: 1.625;
    margin: 0;
    white-space: pre-line;
}

/* Sidebar donation */
.site-donation-box {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .site-donation-box {
        position: sticky;
        top: 7rem;
    }
}

.site-donation-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-100);
}

.site-donation-box__notice {
    margin: 0 0 1.25rem;
    padding: 0.75rem 1rem;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
    border-radius: var(--radius);
    font-size: 0.875rem;
    line-height: 1.45;
}

.site-donation-box__controls {
    border: 0;
    margin: 0;
    padding: 0;
    min-inline-size: 0;
}

.site-donation-box__controls:disabled .donation-preset,
.site-donation-box__controls:disabled .site-input,
.site-donation-box__controls:disabled .site-btn-donate-full,
.site-donation-box__controls:disabled .site-btn-text {
    cursor: not-allowed;
    opacity: 0.65;
}

.site-donation-box__controls:disabled .donation-preset:hover {
    border-color: var(--slate-200);
}

.site-donation-box__controls:disabled .site-btn-donate-full:hover {
    background: var(--red);
}

.site-donation-box__totals {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.site-donation-box__raised {
    font-size: 1.5rem;
    color: var(--navy);
}

.site-donation-box__goal {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.site-donation-box__hint {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
    margin: 0 0 1.5rem;
}

.site-donation-box__label {
    font-weight: 600;
    color: var(--slate-700);
    margin: 0 0 1rem;
}

.site-donation-presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.donation-preset {
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    border: 2px solid var(--slate-200);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.donation-preset:hover {
    border-color: var(--navy);
}

.donation-preset--selected {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.site-input-wrap {
    position: relative;
    margin-top: 1rem;
}

.site-input-wrap__prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--slate-500);
    pointer-events: none;
}

.site-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius);
    font-weight: 500;
    font-family: inherit;
    transition: border-color 0.15s;
}

.site-input:focus {
    outline: none;
    border-color: var(--navy);
}

.site-btn-donate-full {
    width: 100%;
    margin-top: 1.5rem;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    transition: background 0.15s;
}

.site-btn-donate-full:hover {
    background: var(--red-hover);
}

.site-donation-box__share {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-100);
}

.site-btn-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--slate-600);
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.15s;
}

.site-btn-text:hover {
    color: var(--navy);
}

/* News article */
.site-narrow {
    max-width: 56rem;
    margin: 0 auto;
}

.site-news-article__hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .site-news-article__hero {
        height: 500px;
    }
}

.site-news-article__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-news-article__content {
    padding: 2rem;
}

@media (min-width: 768px) {
    .site-news-article__content {
        padding: 3rem;
    }
}

.site-news-meta {
    display: flex;
    align-items: center;
    color: var(--red);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.site-news-article__content h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 2rem;
}

@media (min-width: 768px) {
    .site-news-article__content h1 {
        font-size: 3rem;
    }
}

.site-lead {
    font-size: 1.25rem;
    color: var(--slate-600);
    font-weight: 500;
    line-height: 1.625;
    margin: 0 0 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--red);
}

.site-share-row {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-share-row span {
    color: var(--slate-500);
    font-weight: 500;
}

.site-btn-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--slate-100);
    color: var(--navy);
    font-weight: 600;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
}

.site-btn-share:hover {
    color: var(--red);
    background: #fef2f2;
}

.site-footer .site-logo {
    margin-bottom: 1.5rem;
}

/* Sadržaj iz HTML editora (kampanje, novosti) */
.site-prose-html {
    font-size: 1.125rem;
    color: var(--slate-700);
    line-height: 1.65;
}

.site-prose-html > *:first-child {
    margin-top: 0;
}

.site-prose-html p {
    margin: 0 0 1rem;
}

.site-prose-html h2,
.site-prose-html h3 {
    color: var(--navy);
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
}

.site-prose-html ul,
.site-prose-html ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.site-prose-html a {
    color: var(--red);
    text-decoration: underline;
}

.site-prose-html a:hover {
    color: var(--red-hover);
}

.site-prose-html img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.site-prose-html table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.site-prose-html th,
.site-prose-html td {
    border: 1px solid var(--slate-200);
    padding: 0.5rem 0.75rem;
    text-align: left;
}

/* -------------------------------------------------------------------------- */
/* Laravel admin (Breeze) — usklađeno sa PomoziSad                             */
/* -------------------------------------------------------------------------- */

.admin-shell {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: var(--slate-50);
    color: var(--slate-900);
    -webkit-font-smoothing: antialiased;
}

.admin-shell__inner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-nav-mobile-drawer {
    background: var(--navy-dark);
}

.admin-page-header {
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.admin-page-header__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1rem;
}

@media (min-width: 640px) {
    .admin-page-header__inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.admin-main {
    flex: 1 1 auto;
}

.admin-guest-body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 42%, var(--slate-100) 42%);
    -webkit-font-smoothing: antialiased;
}

.admin-guest-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem 2rem;
}

.admin-guest-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.admin-guest-brand .site-logo {
    justify-content: center;
}

.admin-guest-tagline {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-300);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-guest-card {
    width: 100%;
    max-width: 28rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    border: 1px solid var(--slate-200);
}

a.admin-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    border: 1px solid transparent;
    line-height: 1.25;
}

a.admin-btn-sm--primary {
    background: var(--red);
    color: var(--white);
}

a.admin-btn-sm--primary:hover {
    background: var(--red-hover);
    color: var(--white);
}

a.admin-btn-sm--navy {
    background: var(--navy);
    color: var(--white);
}

a.admin-btn-sm--navy:hover {
    background: var(--navy-hover);
    color: var(--white);
}

a.admin-btn-sm--outline {
    background: var(--white);
    color: var(--slate-700);
    border-color: var(--slate-300);
}

a.admin-btn-sm--outline:hover {
    background: var(--slate-50);
    border-color: var(--slate-400);
    color: var(--navy);
}
