/* /Components/Layout/MainLayout.razor.rz.scp.css */
.site-wrapper[b-cf6tzy9sna] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #205481;
    color: #243027;
}

.container[b-cf6tzy9sna] {
    width: min(1360px, calc(100% - 2rem));
    margin-inline: auto;
}

.site-header[b-cf6tzy9sna] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #205481;
    border-bottom: 1px solid rgba(201, 166, 87, 0.35);
    backdrop-filter: blur(12px);
}

.header-inner[b-cf6tzy9sna] {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand[b-cf6tzy9sna] {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    text-decoration: none;
}

.brand-mark[b-cf6tzy9sna] {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid #c9a657;
    border-radius: 50%;
    color: #c9a657;
    font-family: Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
}

.brand-text[b-cf6tzy9sna] {
    display: flex;
    flex-direction: column;
}

    .brand-text strong[b-cf6tzy9sna] {
        font-family: Georgia, serif;
        font-size: 1.25rem;
        letter-spacing: .04em;
    }

    .brand-text small[b-cf6tzy9sna] {
        margin-top: .15rem;
        color: rgba(255,255,255,.7);
        font-size: .72rem;
        letter-spacing: .05em;
    }

.site-main[b-cf6tzy9sna] {
    flex: 1;
    background: #205481;
}

.site-footer[b-cf6tzy9sna] {
    margin-top: auto;
    background: #205481;
    color: rgba(255,255,255,.76);
    border-top: 3px solid #c9a657;
}

.footer-inner[b-cf6tzy9sna] {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-block: 2.5rem;
}

    .footer-inner strong[b-cf6tzy9sna] {
        color: #fff;
        font-family: Georgia, serif;
        font-size: 1.15rem;
    }

    .footer-inner p[b-cf6tzy9sna] {
        margin: .45rem 0 0;
    }

.footer-author[b-cf6tzy9sna] {
    text-align: right;
}

    .footer-author a[b-cf6tzy9sna] {
        display: inline-block;
        margin-top: .55rem;
        color: #d8bb73;
        text-decoration: none;
    }

        .footer-author a:hover[b-cf6tzy9sna] {
            color: #fff;
        }

.footer-bottom[b-cf6tzy9sna] {
    padding: .85rem 1rem;
    text-align: center;
    background: #205481;
    color: rgba(255,255,255,.55);
    font-size: .85rem;
}

.intro[b-cf6tzy9sna],
.cards[b-cf6tzy9sna] {
    background: #205481;
    color: rgba(255,255,255,.76);
}

/* ===========================
   MOBITEL
=========================== */

@media (max-width:850px) {

    html[b-cf6tzy9sna] {
        font-size: 13px;
    }

    body[b-cf6tzy9sna] {
        overflow-x: hidden;
    }

    .site-wrapper[b-cf6tzy9sna] {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container[b-cf6tzy9sna] {
        width: calc(100% - .5rem);
        max-width: 100%;
    }

    .header-inner[b-cf6tzy9sna] {
        min-height: auto;
        padding: .5rem 0;
        gap: .5rem;
        align-items: center;
    }

    .brand[b-cf6tzy9sna] {
        flex-shrink: 0;
    }

    .brand-mark[b-cf6tzy9sna] {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .brand-text strong[b-cf6tzy9sna] {
        font-size: .95rem;
    }

    .brand-text small[b-cf6tzy9sna] {
        font-size: .62rem;
    }

    .footer-inner[b-cf6tzy9sna] {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-author[b-cf6tzy9sna] {
        text-align: left;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.main-nav[b-wd48nkssnn] {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.65rem, 1vw, 1.15rem);
}

    .main-nav a[b-wd48nkssnn] {
        position: relative;
        flex: 0 0 auto;
        padding: 0.5rem 0;
        color: #f5f5f5;
        font-size: clamp(0.82rem, 0.85vw, 0.94rem);
        font-weight: 500;
        line-height: 1.2;
        text-decoration: none;
        white-space: nowrap;
        transition: color 180ms ease, transform 180ms ease;
    }

        .main-nav a:hover[b-wd48nkssnn] {
            color: #d8bb73;
            transform: translateY(-1px);
        }

        .main-nav a[b-wd48nkssnn]::after {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 2px;
            background: #d8bb73;
            content: "";
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 180ms ease;
        }

        .main-nav a:hover[b-wd48nkssnn]::after {
            transform: scaleX(1);
        }

        .main-nav a:focus-visible[b-wd48nkssnn] {
            border-radius: 4px;
            outline: 2px solid #d8bb73;
            outline-offset: 3px;
        }

/* Tablet */

@media (max-width: 1050px) {
    .main-nav[b-wd48nkssnn] {
        gap: 0.55rem;
    }

        .main-nav a[b-wd48nkssnn] {
            font-size: 0.76rem;
        }
}

/* Telefon:
   navigacija ostaje horizontalna,
   a pomjera se samo meni, ne cijela stranica */

@media (max-width: 850px) {
    .main-nav[b-wd48nkssnn] {
        width: 100%;
        min-width: 0;
        flex: 1 1 100%;
        justify-content: flex-start;
        gap: 0.45rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.35rem 0.15rem 0.6rem;
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: rgba(216, 187, 115, 0.75) rgba(255, 255, 255, 0.08);
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

        .main-nav[b-wd48nkssnn]::-webkit-scrollbar {
            height: 5px;
        }

        .main-nav[b-wd48nkssnn]::-webkit-scrollbar-track {
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
        }

        .main-nav[b-wd48nkssnn]::-webkit-scrollbar-thumb {
            border-radius: 999px;
            background: rgba(216, 187, 115, 0.75);
        }

        .main-nav a[b-wd48nkssnn] {
            flex: 0 0 auto;
            padding: 0.3rem 0.2rem;
            font-size: 0.72rem;
            white-space: nowrap;
        }
}

/* Vrlo mali telefoni */

@media (max-width: 480px) {
    .main-nav[b-wd48nkssnn] {
        gap: 0.32rem;
        padding-bottom: 0.5rem;
    }

        .main-nav a[b-wd48nkssnn] {
            padding-inline: 0.12rem;
            font-size: 0.67rem;
        }
}

@media (prefers-reduced-motion: reduce) {
    .main-nav[b-wd48nkssnn],
    .main-nav a[b-wd48nkssnn],
    .main-nav a[b-wd48nkssnn]::after {
        scroll-behavior: auto;
        transition: none;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-qnkb51a5kc],
.components-reconnect-repeated-attempt-visible[b-qnkb51a5kc],
.components-reconnect-failed-visible[b-qnkb51a5kc],
.components-pause-visible[b-qnkb51a5kc],
.components-resume-failed-visible[b-qnkb51a5kc],
.components-rejoining-animation[b-qnkb51a5kc] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-qnkb51a5kc],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-qnkb51a5kc],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-qnkb51a5kc],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-qnkb51a5kc],
#components-reconnect-modal.components-reconnect-retrying[b-qnkb51a5kc],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-qnkb51a5kc],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-qnkb51a5kc],
#components-reconnect-modal.components-reconnect-failed[b-qnkb51a5kc],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-qnkb51a5kc] {
    display: block;
}


#components-reconnect-modal[b-qnkb51a5kc] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-qnkb51a5kc 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-qnkb51a5kc 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-qnkb51a5kc 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-qnkb51a5kc]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-qnkb51a5kc 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-qnkb51a5kc {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-qnkb51a5kc {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-qnkb51a5kc {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-qnkb51a5kc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-qnkb51a5kc] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-qnkb51a5kc] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-qnkb51a5kc] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-qnkb51a5kc] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-qnkb51a5kc] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-qnkb51a5kc] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-qnkb51a5kc 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-qnkb51a5kc] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-qnkb51a5kc {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
.about-hero[b-vr04rnfzic] {
    position: relative;
    padding: 7rem 1rem 6rem;
    background: radial-gradient( circle at 82% 30%, rgba(201, 166, 87, 0.14), transparent 34% ), #123c30;
    color: #ffffff;
    overflow: hidden;
}

    .about-hero[b-vr04rnfzic]::after {
        content: "";
        position: absolute;
        right: 8%;
        bottom: -130px;
        width: 330px;
        height: 330px;
        border: 1px solid rgba(201, 166, 87, 0.22);
        border-radius: 50%;
    }

    .about-hero .container[b-vr04rnfzic] {
        position: relative;
        z-index: 1;
    }

.eyebrow[b-vr04rnfzic],
.section-label[b-vr04rnfzic] {
    display: block;
    margin-bottom: 1rem;
    color: #d5b565;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.about-hero h1[b-vr04rnfzic] {
    margin: 0 0 1.25rem;
    font-family: Georgia, serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
}

.about-hero p[b-vr04rnfzic] {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-content[b-vr04rnfzic] {
    padding: 6.5rem 1rem;
    background: #f5f2e9;
    color: #304139;
}

.about-grid[b-vr04rnfzic] {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: 5rem;
    align-items: start;
}

.about-main[b-vr04rnfzic] {
    max-width: 760px;
}

    .about-main h2[b-vr04rnfzic] {
        max-width: 680px;
        margin: 0 0 2rem;
        color: #153c30;
        font-family: Georgia, serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 500;
        line-height: 1.25;
    }

    .about-main p[b-vr04rnfzic] {
        margin: 0 0 1.4rem;
        color: #4a5b52;
        font-size: 1.06rem;
        line-height: 1.9;
    }

    .about-main strong[b-vr04rnfzic] {
        color: #173c31;
    }

    .about-main blockquote[b-vr04rnfzic] {
        position: relative;
        margin: 2.8rem 0 0;
        padding: 1.7rem 2rem 1.7rem 2.4rem;
        border-left: 4px solid #c9a657;
        background: rgba(255, 255, 255, 0.65);
        color: #26483c;
        font-family: Georgia, serif;
        font-size: 1.2rem;
        font-style: italic;
        line-height: 1.75;
    }

.about-card[b-vr04rnfzic] {
    position: sticky;
    top: 120px;
    padding: 2.5rem;
    border: 1px solid rgba(22, 60, 48, 0.12);
    border-top: 4px solid #c9a657;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(21, 55, 44, 0.09);
}

.card-mark[b-vr04rnfzic] {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 1.7rem;
    border: 1px solid #c9a657;
    border-radius: 50%;
    color: #b1872d;
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.about-card h2[b-vr04rnfzic] {
    margin: 0 0 1.2rem;
    color: #173c31;
    font-family: Georgia, serif;
    font-size: 1.8rem;
}

.about-card p[b-vr04rnfzic] {
    margin: 0;
    color: #58675f;
    line-height: 1.8;
}

.author-link[b-vr04rnfzic] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
    color: #98701f;
    font-weight: 700;
    text-decoration: none;
}

    .author-link span[b-vr04rnfzic] {
        transition: transform 0.2s ease;
    }

    .author-link:hover[b-vr04rnfzic] {
        color: #173c31;
    }

        .author-link:hover span[b-vr04rnfzic] {
            transform: translateX(4px);
        }

.project-values[b-vr04rnfzic] {
    padding: 5rem 1rem;
    background: #ffffff;
}

.values-grid[b-vr04rnfzic] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-item[b-vr04rnfzic] {
    padding: 2rem 2.2rem;
    border-left: 1px solid rgba(22, 60, 48, 0.16);
}

    .value-item span[b-vr04rnfzic] {
        display: block;
        margin-bottom: 1.2rem;
        color: #c19b48;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.15rem;
    }

    .value-item h3[b-vr04rnfzic] {
        margin: 0 0 0.8rem;
        color: #173c31;
        font-family: Georgia, serif;
        font-size: 1.5rem;
    }

    .value-item p[b-vr04rnfzic] {
        margin: 0;
        color: #5d6a63;
        line-height: 1.75;
    }

@media (max-width: 900px) {
    .about-hero[b-vr04rnfzic] {
        padding-block: 5rem;
    }

    .about-grid[b-vr04rnfzic] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-card[b-vr04rnfzic] {
        position: static;
    }

    .values-grid[b-vr04rnfzic] {
        grid-template-columns: 1fr;
    }

    .value-item[b-vr04rnfzic] {
        border-left: none;
        border-top: 1px solid rgba(22, 60, 48, 0.16);
    }
}

@media (max-width: 560px) {
    .about-content[b-vr04rnfzic],
    .project-values[b-vr04rnfzic] {
        padding-block: 4rem;
    }

    .about-card[b-vr04rnfzic] {
        padding: 2rem;
    }

    .about-main blockquote[b-vr04rnfzic] {
        padding: 1.4rem 1.5rem;
    }
}
/* /Components/Pages/Archive.razor.rz.scp.css */
.archive-hero[b-3ace5puh0t] {
    position: relative;
    overflow: hidden;
    padding: 7rem 1rem 6rem;
    color: #ffffff;
    background: radial-gradient( circle at 82% 35%, rgba(201, 166, 87, 0.14), transparent 32% ), #123c30;
}

    .archive-hero[b-3ace5puh0t]::after {
        position: absolute;
        right: 9%;
        bottom: -135px;
        width: 340px;
        height: 340px;
        border: 1px solid rgba(201, 166, 87, 0.22);
        border-radius: 50%;
        content: "";
    }

    .archive-hero .container[b-3ace5puh0t] {
        position: relative;
        z-index: 1;
    }

.eyebrow[b-3ace5puh0t],
.section-label[b-3ace5puh0t] {
    display: block;
    margin-bottom: 1rem;
    color: #d5b565;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.archive-hero h1[b-3ace5puh0t] {
    margin: 0 0 1.25rem;
    font-family: Georgia, serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
}

.archive-hero p[b-3ace5puh0t] {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Kartica genetike */

.archive-feature[b-3ace5puh0t] {
    padding: 3rem 1rem;
    background: #f5f2e9;
}


.archive-card--genetics:hover[b-3ace5puh0t] {
    color: #24312d;
    border-color: #a77a39;
    box-shadow: 0 16px 36px rgba(38, 48, 44, 0.12);
    transform: translateY(-3px);
}

.archive-card--genetics:focus-visible[b-3ace5puh0t] {
    outline: 3px solid rgba(181, 139, 50, 0.45);
    outline-offset: 4px;
}



.archive-card__body h2[b-3ace5puh0t] {
    margin: 0.35rem 0 0.6rem;
    color: #153f36;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.archive-card__body p[b-3ace5puh0t] {
    max-width: 760px;
    margin: 0 0 1rem;
    color: #66716d;
    line-height: 1.6;
}

.archive-card__link span[b-3ace5puh0t] {
    display: inline-block;
    margin-left: 0.25rem;
    transition: transform 180ms ease;
}

.archive-card--genetics:hover .archive-card__link span[b-3ace5puh0t] {
    transform: translateX(4px);
}

/* Uvod */

.archive-intro[b-3ace5puh0t] {
    padding: 6rem 1rem;
    background: #f5f2e9;
}

.archive-intro-grid[b-3ace5puh0t] {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
    align-items: start;
    gap: 5rem;
}

.archive-intro h2[b-3ace5puh0t],
.section-heading h2[b-3ace5puh0t],
.featured-document h2[b-3ace5puh0t] {
    margin: 0 0 1.7rem;
    color: #173c31;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.25;
}

.archive-intro p[b-3ace5puh0t] {
    max-width: 760px;
    margin: 0 0 1.3rem;
    color: #4e5e55;
    font-size: 1.05rem;
    line-height: 1.9;
}

.archive-note[b-3ace5puh0t] {
    padding: 2.3rem;
    border-top: 4px solid #c9a657;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(20, 55, 44, 0.08);
}

    .archive-note h3[b-3ace5puh0t] {
        margin: 0 0 1rem;
        color: #173c31;
        font-family: Georgia, serif;
        font-size: 1.55rem;
    }

    .archive-note p[b-3ace5puh0t] {
        margin: 0;
        color: #5a6861;
        line-height: 1.8;
    }

/* Kategorije */

.archive-categories[b-3ace5puh0t] {
    padding: 6rem 1rem;
    background: #ffffff;
}

.section-heading[b-3ace5puh0t] {
    margin-bottom: 3rem;
}

.category-grid[b-3ace5puh0t] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.7rem;
}

.category-card[b-3ace5puh0t] {
    position: relative;
    min-height: 260px;
    padding: 2.5rem;
    border: 1px solid rgba(22, 60, 48, 0.13);
    border-radius: 12px;
    background: #faf9f5;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .category-card:hover[b-3ace5puh0t] {
        box-shadow: 0 18px 45px rgba(21, 55, 44, 0.1);
        transform: translateY(-5px);
    }

.category-number[b-3ace5puh0t] {
    display: block;
    margin-bottom: 2rem;
    color: #b58b32;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
}

.category-card h3[b-3ace5puh0t] {
    margin: 0 0 1rem;
    color: #173c31;
    font-family: Georgia, serif;
    font-size: 1.65rem;
}

.category-card p[b-3ace5puh0t] {
    max-width: 480px;
    margin: 0 0 1.8rem;
    color: #5b6861;
    line-height: 1.8;
}

.category-card a[b-3ace5puh0t] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #98701f;
    font-weight: 700;
    text-decoration: none;
}

    .category-card a span[b-3ace5puh0t] {
        transition: transform 0.2s ease;
    }

    .category-card a:hover[b-3ace5puh0t] {
        color: #173c31;
    }

        .category-card a:hover span[b-3ace5puh0t] {
            transform: translateX(4px);
        }

.status[b-3ace5puh0t] {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    color: #87631d;
    background: rgba(201, 166, 87, 0.14);
    font-size: 0.82rem;
    font-weight: 700;
}

/* Istaknuti dokument */

.featured-document[b-3ace5puh0t] {
    padding: 6rem 1rem;
    background: #f5f2e9;
}

.featured-grid[b-3ace5puh0t] {
    display: grid;
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.4fr);
    align-items: center;
    gap: 5rem;
}

.document-preview[b-3ace5puh0t] {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    border: 1px solid rgba(22, 60, 48, 0.15);
    border-radius: 12px;
    background: rgba(18, 60, 48, 0.94);
    box-shadow: 0 22px 55px rgba(20, 55, 44, 0.13);
}

.document-icon[b-3ace5puh0t] {
    display: grid;
    width: 90px;
    height: 90px;
    place-items: center;
    border: 1px solid #c9a657;
    border-radius: 50%;
    color: #d8b86d;
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
}

.document-preview span[b-3ace5puh0t] {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
}

.document-meta[b-3ace5puh0t] {
    margin-bottom: 1.4rem;
    color: #9b7528;
    font-weight: 700;
}

.document-content > p:not(.document-meta)[b-3ace5puh0t] {
    max-width: 700px;
    color: #526159;
    font-size: 1.05rem;
    line-height: 1.9;
}

.source-button[b-3ace5puh0t] {
    display: inline-flex;
    margin-top: 1.4rem;
    padding: 0.9rem 1.5rem;
    border: 1px solid #b88d35;
    border-radius: 999px;
    color: #173c31;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

    .source-button:hover[b-3ace5puh0t] {
        color: #173329;
        background: #c9a657;
    }

/* Responzivni prikaz */

@media (max-width: 900px) {
    .archive-intro-grid[b-3ace5puh0t],
    .featured-grid[b-3ace5puh0t] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .category-grid[b-3ace5puh0t] {
        grid-template-columns: 1fr;
    }

    .document-preview[b-3ace5puh0t] {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    .archive-hero[b-3ace5puh0t] {
        padding-block: 5rem;
    }

    .archive-intro[b-3ace5puh0t],
    .archive-categories[b-3ace5puh0t],
    .featured-document[b-3ace5puh0t] {
        padding-block: 4rem;
    }

    .category-card[b-3ace5puh0t],
    .archive-note[b-3ace5puh0t] {
        padding: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .category-card[b-3ace5puh0t],
    .category-card a span[b-3ace5puh0t] {
        transition: none;
    }

        .archive-card--genetics:hover[b-3ace5puh0t],
        .category-card:hover[b-3ace5puh0t] {
            transform: none;
        }
}
/* Aktivna kategorija novinskih članaka */

.category-card--active[b-3ace5puh0t] {
    border-color: rgba(181, 139, 50, 0.45);
    background: linear-gradient( 145deg, rgba(201, 166, 87, 0.10), rgba(255, 255, 255, 0.75) ), #faf9f5;
}

.category-action[b-3ace5puh0t] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0;
    border: 0;
    color: #98701f;
    background: transparent;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

    .category-action span[b-3ace5puh0t] {
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .category-action:hover[b-3ace5puh0t] {
        color: #173c31;
    }

        .category-action:hover span[b-3ace5puh0t] {
            transform: translateX(4px);
        }

    .category-action:focus-visible[b-3ace5puh0t] {
        border-radius: 4px;
        outline: 3px solid rgba(181, 139, 50, 0.38);
        outline-offset: 5px;
    }

/* Novinski članak */

.newspaper-section[b-3ace5puh0t] {
    padding: 6rem 1rem;
    scroll-margin-top: 7rem;
    background: #eee9dd;
}

.newspaper-record[b-3ace5puh0t] {
    overflow: hidden;
    border: 1px solid rgba(22, 60, 48, 0.14);
    border-top: 5px solid #c9a657;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(21, 55, 44, 0.12);
}

.newspaper-heading[b-3ace5puh0t] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.8rem 3rem;
    border-bottom: 1px solid rgba(22, 60, 48, 0.11);
    background: linear-gradient( 135deg, rgba(201, 166, 87, 0.12), rgba(255, 255, 255, 0.75) );
}

    .newspaper-heading h2[b-3ace5puh0t] {
        margin: 0 0 0.7rem;
        color: #173c31;
        font-family: Georgia, serif;
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 500;
        line-height: 1.2;
    }

.newspaper-subtitle[b-3ace5puh0t] {
    margin: 0;
    color: #66736c;
    font-size: 1.08rem;
}

.article-close[b-3ace5puh0t] {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 1px solid rgba(22, 60, 48, 0.18);
    border-radius: 50%;
    color: #173c31;
    background: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

    .article-close:hover[b-3ace5puh0t] {
        color: #ffffff;
        background: #173c31;
        transform: rotate(90deg);
    }

    .article-close:focus-visible[b-3ace5puh0t] {
        outline: 3px solid rgba(181, 139, 50, 0.4);
        outline-offset: 3px;
    }

.newspaper-grid[b-3ace5puh0t] {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 3.5rem;
    padding: 3rem;
    align-items: start;
}

.newspaper-image[b-3ace5puh0t] {
    position: sticky;
    top: 7rem;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 60, 48, 0.16);
    border-radius: 10px;
    background: #eee8da;
    box-shadow: 0 14px 35px rgba(21, 55, 44, 0.12);
}

    .newspaper-image a[b-3ace5puh0t] {
        display: flex;
        justify-content: center;
        padding: 0.75rem;
        cursor: zoom-in;
    }

    .newspaper-image img[b-3ace5puh0t] {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .newspaper-image figcaption[b-3ace5puh0t] {
        padding: 1rem 1.2rem;
        border-top: 1px solid rgba(22, 60, 48, 0.12);
        color: #5c6961;
        font-size: 0.88rem;
        line-height: 1.65;
    }

.newspaper-biography[b-3ace5puh0t] {
    min-width: 0;
    color: #4d5d54;
}

    .newspaper-biography h3[b-3ace5puh0t] {
        margin: 2.2rem 0 1rem;
        color: #173c31;
        font-family: Georgia, serif;
        font-size: 1.65rem;
        font-weight: 500;
    }

        .newspaper-biography h3:first-of-type[b-3ace5puh0t] {
            margin-top: 2rem;
        }

    .newspaper-biography p[b-3ace5puh0t] {
        margin: 0 0 1.25rem;
        font-size: 1rem;
        line-height: 1.85;
    }

    .newspaper-biography strong[b-3ace5puh0t] {
        color: #173c31;
    }

.family-connection[b-3ace5puh0t] {
    padding: 1.3rem 1.5rem;
    border-left: 4px solid #c9a657;
    border-radius: 0 8px 8px 0;
    background: #f8f4e8;
}

    .family-connection span[b-3ace5puh0t],
    .article-source > span[b-3ace5puh0t] {
        display: block;
        margin-bottom: 0.45rem;
        color: #9d721d;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14rem;
        text-transform: uppercase;
    }

    .family-connection strong[b-3ace5puh0t] {
        display: block;
        line-height: 1.6;
    }

.service-timeline[b-3ace5puh0t] {
    margin: 2.2rem 0;
    border-left: 2px solid #c9a657;
}

.service-period[b-3ace5puh0t] {
    position: relative;
    padding: 0 0 1.7rem 1.8rem;
}

    .service-period:last-child[b-3ace5puh0t] {
        padding-bottom: 0;
    }

    .service-period[b-3ace5puh0t]::before {
        position: absolute;
        top: 0.3rem;
        left: -7px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #c9a657;
        content: "";
    }

.service-years[b-3ace5puh0t] {
    display: block;
    margin-bottom: 0.45rem;
    color: #173c31;
    font-weight: 700;
}

.service-period p[b-3ace5puh0t] {
    margin: 0;
}

.newspaper-biography blockquote[b-3ace5puh0t] {
    margin: 2.2rem 0;
    padding: 1.5rem 1.7rem;
    border-left: 4px solid #c9a657;
    border-radius: 0 8px 8px 0;
    color: #365046;
    background: #f8f4e8;
    font-family: Georgia, serif;
    font-size: 1.08rem;
    line-height: 1.75;
}

.article-source[b-3ace5puh0t] {
    margin-top: 2.4rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(22, 60, 48, 0.11);
    border-radius: 8px;
    background: #f5f2e9;
}

    .article-source p[b-3ace5puh0t] {
        margin: 0 0 0.7rem;
        font-size: 0.92rem;
        line-height: 1.7;
    }

        .article-source p:last-child[b-3ace5puh0t] {
            margin-bottom: 0;
        }

/* Responzivni prikaz novinskog članka */

@media (max-width: 1000px) {
    .newspaper-grid[b-3ace5puh0t] {
        grid-template-columns: 1fr;
    }

    .newspaper-image[b-3ace5puh0t] {
        position: static;
        width: min(650px, 100%);
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .newspaper-section[b-3ace5puh0t] {
        padding: 4rem 1rem;
    }

    .newspaper-heading[b-3ace5puh0t] {
        padding: 2rem 1.5rem;
    }

    .newspaper-grid[b-3ace5puh0t] {
        gap: 2.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .newspaper-heading[b-3ace5puh0t] {
        gap: 1rem;
        padding: 1.6rem 1.2rem;
    }

    .article-close[b-3ace5puh0t] {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 1.5rem;
    }

    .newspaper-grid[b-3ace5puh0t] {
        padding: 1rem;
    }

    .newspaper-image a[b-3ace5puh0t] {
        padding: 0.4rem;
    }

    .newspaper-biography h3[b-3ace5puh0t] {
        font-size: 1.4rem;
    }

    .family-connection[b-3ace5puh0t],
    .article-source[b-3ace5puh0t] {
        padding: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .category-action span[b-3ace5puh0t],
    .article-close[b-3ace5puh0t] {
        transition: none;
    }

        .article-close:hover[b-3ace5puh0t] {
            transform: none;
        }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
.contact-page[b-3yk1by22bb] {
    --primary: #153f36;
    --primary-dark: #0d2d27;
    --gold: #b48a48;
    --gold-light: #dfc58f;
    --background: #f5f1e8;
    --surface: #fffdf8;
    --border: #ddd3c1;
    --text: #26332f;
    --muted: #68736f;
    --danger: #a33b32;
    width: 100%;
    color: var(--text);
}

/* Naslovni dio */

.contact-hero[b-3yk1by22bb] {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5rem);
    border-radius: 24px;
    color: #ffffff;
    background: radial-gradient( circle at 88% 18%, rgba(255, 255, 255, 0.14), transparent 30% ), linear-gradient( 135deg, var(--primary-dark), var(--primary) );
    box-shadow: 0 18px 45px rgba(21, 63, 54, 0.16);
}

    .contact-hero[b-3yk1by22bb]::after {
        position: absolute;
        right: -80px;
        bottom: -140px;
        width: 360px;
        height: 360px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        content: "";
    }

.contact-hero-content[b-3yk1by22bb] {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.contact-label[b-3yk1by22bb],
.card-label[b-3yk1by22bb] {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.contact-hero h1[b-3yk1by22bb] {
    margin: 0 0 1rem;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 6vw, 4.7rem);
    font-weight: 500;
    line-height: 1.05;
}

.contact-intro[b-3yk1by22bb] {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.75;
}

.contact-symbol[b-3yk1by22bb] {
    position: relative;
    z-index: 1;
    display: grid;
    width: 135px;
    height: 135px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.12);
}

    .contact-symbol span[b-3yk1by22bb] {
        color: var(--gold-light);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 2rem;
    }

/* Glavni sadržaj */

.contact-content[b-3yk1by22bb] {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.contact-card[b-3yk1by22bb] {
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(38, 48, 44, 0.07);
}

    .contact-card .card-label[b-3yk1by22bb] {
        color: var(--gold);
    }

    .contact-card h2[b-3yk1by22bb] {
        margin: 0 0 0.75rem;
        color: var(--primary);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(1.35rem, 3vw, 1.7rem);
        font-weight: 500;
        line-height: 1.25;
    }

    .contact-card > p[b-3yk1by22bb] {
        margin: 0 0 1.5rem;
        color: var(--muted);
        line-height: 1.7;
    }

/* Kontaktni podaci */

.contact-details[b-3yk1by22bb] {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-detail[b-3yk1by22bb] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--background);
}

.contact-detail-icon[b-3yk1by22bb] {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--gold-light);
    background: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-detail strong[b-3yk1by22bb] {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--primary);
}

.contact-detail span[b-3yk1by22bb],
.contact-detail p[b-3yk1by22bb] {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.contact-detail a[b-3yk1by22bb] {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    overflow-wrap: anywhere;
}

    .contact-detail a:hover[b-3yk1by22bb] {
        color: var(--gold);
        text-decoration: underline;
    }

/* Kontakt forma */

.contact-form[b-3yk1by22bb] {
    display: grid;
    gap: 1.15rem;
}

.form-row[b-3yk1by22bb] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group[b-3yk1by22bb] {
    display: grid;
    gap: 0.45rem;
}

    .form-group label[b-3yk1by22bb] {
        color: var(--primary);
        font-size: 0.92rem;
        font-weight: 700;
    }

.form-control[b-3yk1by22bb] {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    color: var(--text);
    background: #ffffff;
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea.form-control[b-3yk1by22bb] {
    min-height: 150px;
    resize: vertical;
}

.form-control[b-3yk1by22bb]::placeholder {
    color: #929b97;
}

.form-control:hover[b-3yk1by22bb] {
    border-color: #c7b184;
}

.form-control:focus[b-3yk1by22bb] {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(180, 138, 72, 0.18);
}

/* Blazor validacija */

.validation-message[b-3yk1by22bb] {
    color: var(--danger);
    font-size: 0.84rem;
}

.validation-summary-errors[b-3yk1by22bb] {
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--danger);
    border-radius: 8px;
    color: var(--danger);
    background: #f9e9e7;
}

    .validation-summary-errors ul[b-3yk1by22bb] {
        margin: 0;
        padding-left: 1.25rem;
    }

.modified.invalid[b-3yk1by22bb],
.form-control.invalid[b-3yk1by22bb] {
    border-color: var(--danger);
}

.modified.valid[b-3yk1by22bb],
.form-control.valid[b-3yk1by22bb] {
    border-color: #4c806b;
}

/* Dugme */

.contact-button[b-3yk1by22bb] {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    justify-self: start;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 999px;
    cursor: pointer;
    color: #ffffff;
    background: var(--primary);
    font: inherit;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

    .contact-button:hover[b-3yk1by22bb] {
        border-color: var(--gold);
        background: var(--gold);
        box-shadow: 0 8px 20px rgba(180, 138, 72, 0.22);
        transform: translateY(-1px);
    }

    .contact-button:focus-visible[b-3yk1by22bb] {
        outline: 3px solid rgba(180, 138, 72, 0.35);
        outline-offset: 3px;
    }

    .contact-button:disabled[b-3yk1by22bb] {
        cursor: not-allowed;
        opacity: 0.6;
        transform: none;
    }

/* Informativna napomena */

.contact-note[b-3yk1by22bb] {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #d6c6a7;
    border-radius: 18px;
    background: var(--background);
    box-shadow: 0 10px 30px rgba(38, 48, 44, 0.05);
}

.contact-note-icon[b-3yk1by22bb] {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.contact-note strong[b-3yk1by22bb] {
    color: var(--primary);
}

.contact-note p[b-3yk1by22bb] {
    margin: 0.35rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Prilagođavanje tabletima */

@media (max-width: 850px) {
    .contact-hero[b-3yk1by22bb] {
        grid-template-columns: 1fr;
    }

    .contact-symbol[b-3yk1by22bb] {
        display: none;
    }

    .contact-content[b-3yk1by22bb] {
        grid-template-columns: 1fr;
    }

    .contact-note[b-3yk1by22bb] {
        grid-column: 1;
    }
}

/* Prilagođavanje telefonima */

@media (max-width: 560px) {
    .contact-hero[b-3yk1by22bb] {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .contact-content[b-3yk1by22bb] {
        gap: 1rem;
    }

    .form-row[b-3yk1by22bb] {
        grid-template-columns: 1fr;
    }

    .contact-card[b-3yk1by22bb] {
        padding: 1.25rem;
    }

    .contact-button[b-3yk1by22bb] {
        width: 100%;
        justify-self: stretch;
    }

    .contact-note[b-3yk1by22bb] {
        padding: 1.15rem;
    }
}

/* Smanjeno kretanje */

@media (prefers-reduced-motion: reduce) {
    .form-control[b-3yk1by22bb],
    .contact-button[b-3yk1by22bb] {
        transition: none;
    }

        .contact-button:hover[b-3yk1by22bb] {
            transform: none;
        }
}
/* /Components/Pages/DirectLine.razor.rz.scp.css */
.lineage-page[b-v57lvznalp] {
    --blue: #164b73;
    --blue-dark: #103c5e;
    --green: #153f36;
    --gold: #c99a2e;
    --gold-dark: #9b6d16;
    --gold-light: #ecd7a2;
    --background: #f5f2e9;
    --surface: #ffffff;
    --surface-soft: #faf7f0;
    --border: #e1d8c8;
    --text: #263530;
    --muted: #66736e;
    width: min(1100px, calc(100% - 2rem));
    margin-inline: auto;
    padding: 3rem 0 5rem;
    color: var(--text);
}

/* Zaglavlje */

.lineage-header[b-v57lvznalp] {
    margin-bottom: 2.5rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 22px;
    color: #ffffff;
    background: radial-gradient( circle at 88% 20%, rgba(255, 255, 255, 0.1), transparent 28% ), linear-gradient( 135deg, var(--blue-dark), var(--blue) );
    box-shadow: 0 18px 45px rgba(16, 60, 94, 0.18);
}

    .lineage-header .section-label[b-v57lvznalp] {
        display: block;
        margin-bottom: 0.9rem;
        color: #f1c55b;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.2em;
    }

    .lineage-header h1[b-v57lvznalp] {
        max-width: 800px;
        margin: 0 0 1rem;
        color: #ffffff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(2.2rem, 5vw, 4rem);
        font-weight: 500;
        line-height: 1.1;
    }

    .lineage-header p[b-v57lvznalp] {
        max-width: 720px;
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 1.05rem;
        line-height: 1.75;
    }

/* Navigacija osoba */

.lineage-navigation[b-v57lvznalp] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.navigation-button[b-v57lvznalp] {
    display: grid;
    width: 48px;
    min-height: 122px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--blue);
    background: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

    .navigation-button:hover[b-v57lvznalp] {
        color: #ffffff;
        background: var(--blue);
        transform: translateY(-2px);
    }

    .navigation-button:focus-visible[b-v57lvznalp] {
        outline: 3px solid rgba(201, 154, 46, 0.35);
        outline-offset: 3px;
    }

.person-card-track[b-v57lvznalp] {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.15rem 0.8rem;
    scroll-behavior: smooth;
    scrollbar-color: #dab866 #f2ede3;
    scrollbar-width: thin;
}

    .person-card-track[b-v57lvznalp]::-webkit-scrollbar {
        height: 8px;
    }

    .person-card-track[b-v57lvznalp]::-webkit-scrollbar-track {
        border-radius: 999px;
        background: #f2ede3;
    }

    .person-card-track[b-v57lvznalp]::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: #dab866;
    }

.person-card[b-v57lvznalp] {
    display: flex;
    width: 178px;
    min-width: 178px;
    min-height: 118px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(38, 53, 48, 0.06);
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

    .person-card:hover[b-v57lvznalp] {
        border-color: #d1ae59;
        box-shadow: 0 13px 28px rgba(38, 53, 48, 0.1);
        transform: translateY(-3px);
    }

    .person-card.active[b-v57lvznalp] {
        border-color: var(--gold);
        background: linear-gradient( 145deg, #ffffff, #fbf3df );
        box-shadow: 0 0 0 2px rgba(201, 154, 46, 0.12), 0 13px 28px rgba(38, 53, 48, 0.1);
    }

    .person-card .generation[b-v57lvznalp] {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--gold-dark);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
    }

    .person-card strong[b-v57lvznalp] {
        color: var(--green);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.15rem;
        line-height: 1.25;
    }

    .person-card .years[b-v57lvznalp] {
        display: block;
        margin-top: 0.4rem;
        color: var(--muted);
        font-size: 0.88rem;
    }

/* Profil */

.person-profile[b-v57lvznalp] {
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 18px 42px rgba(38, 53, 48, 0.09);
}

.profile-heading[b-v57lvznalp] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: clamp(1.8rem, 4vw, 2.8rem);
    border-bottom: 1px solid var(--border);
    background: linear-gradient( 135deg, #fbf7ef, #ffffff );
}

.person-monogram[b-v57lvznalp] {
    display: grid;
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: #ffffff;
    background: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
}

.profile-generation[b-v57lvznalp] {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.profile-heading h2[b-v57lvznalp] {
    margin: 0;
    color: #093e46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.3rem);
    font-weight: 500;
    line-height: 1.1;
}

.profile-years[b-v57lvznalp] {
    margin: 0.6rem 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.status-badge[b-v57lvznalp] {
    display: inline-flex;
    margin-top: 0.9rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid #e5ca86;
    border-radius: 999px;
    color: var(--gold-dark);
    background: #fff6df;
    font-size: 0.82rem;
    font-weight: 700;
}

.profile-content[b-v57lvznalp] {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 4rem);
    padding: clamp(1.8rem, 4vw, 2.6rem);
}

.biography-section h3[b-v57lvznalp] {
    margin: 0 0 1.25rem;
    color: #093e46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 500;
}

.biography-section p[b-v57lvznalp] {
    margin: 0 0 1.2rem;
    color: #42544d;
    line-height: 1.85;
}

.family-information[b-v57lvznalp] {
    display: grid;
    gap: 1rem;
}

.information-card[b-v57lvznalp] {
    padding: 1.3rem 1.4rem;
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: #f8f5ee;
}

.information-label[b-v57lvznalp] {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.information-card > strong[b-v57lvznalp] {
    color: #063d40;
}

/* Brakovi, djeca, braća i sestre */

.family-card[b-v57lvznalp] {
    display: grid;
    gap: 1rem;
}

.family-subsection[b-v57lvznalp] {
    display: grid;
    gap: 0.45rem;
}

    .family-subsection + .family-subsection[b-v57lvznalp] {
        padding-top: 1rem;
        border-top: 1px solid rgba(181, 139, 50, 0.2);
    }

.family-subtitle[b-v57lvznalp] {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.relative-list[b-v57lvznalp],
.source-list[b-v57lvznalp] {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.1rem;
}

    .relative-list li[b-v57lvznalp]::marker,
    .source-list li[b-v57lvznalp]::marker {
        color: var(--gold);
    }

.relative-link[b-v57lvznalp] {
    color: #40534c;
    line-height: 1.5;
    text-decoration: none;
}

    .relative-link:hover[b-v57lvznalp] {
        color: var(--gold-dark);
        text-decoration: underline;
    }

.relative-link-strong[b-v57lvznalp] {
    color: var(--green);
    font-weight: 700;
}

.relative-link span[b-v57lvznalp] {
    color: #75807c;
    font-size: 0.86em;
}

.relative-without-link[b-v57lvznalp] {
    color: #40534c;
    line-height: 1.5;
}

.source-list li[b-v57lvznalp] {
    color: #53645d;
    line-height: 1.55;
}

.unknown-information[b-v57lvznalp] {
    margin: 0;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6;
}

/* Dugme za PDF */

.tree-action[b-v57lvznalp] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: clamp(1.8rem, 4vw, 2.4rem);
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient( 135deg, var(--blue-dark), var(--blue) );
    box-shadow: 0 16px 36px rgba(16, 60, 94, 0.17);
}

.action-label[b-v57lvznalp] {
    display: block;
    margin-bottom: 0.75rem;
    color: #f1c55b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.tree-action h2[b-v57lvznalp] {
    margin: 0 0 0.65rem;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 4vw, 2.25rem);
    font-weight: 500;
}

.tree-action p[b-v57lvznalp] {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.tree-button[b-v57lvznalp] {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    border-radius: 11px;
    color: #102f43;
    background: #e1aa31;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 180ms ease, transform 180ms ease;
}

    .tree-button:hover[b-v57lvznalp] {
        color: #102f43;
        background: #efbd4d;
        transform: translateY(-2px);
    }

    .tree-button:focus-visible[b-v57lvznalp] {
        outline: 3px solid rgba(255, 255, 255, 0.55);
        outline-offset: 4px;
    }

/* Tablet */

@media (max-width: 850px) {
    .lineage-page[b-v57lvznalp] {
        padding-top: 2rem;
    }

    .profile-content[b-v57lvznalp] {
        grid-template-columns: 1fr;
    }

    .tree-action[b-v57lvznalp] {
        grid-template-columns: 1fr;
    }

    .tree-button[b-v57lvznalp] {
        justify-self: start;
    }
}

/* Telefon */

@media (max-width: 600px) {
    .lineage-page[b-v57lvznalp] {
        width: min(100% - 1rem, 1100px);
        padding-top: 1rem;
    }

    .lineage-header[b-v57lvznalp] {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .lineage-navigation[b-v57lvznalp] {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 0.4rem;
    }

    .navigation-button[b-v57lvznalp] {
        width: 38px;
        min-height: 108px;
    }

    .person-card[b-v57lvznalp] {
        width: 160px;
        min-width: 160px;
        min-height: 104px;
    }

    .profile-heading[b-v57lvznalp] {
        align-items: flex-start;
        padding: 1.5rem 1.2rem;
    }

    .person-monogram[b-v57lvznalp] {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        font-size: 1.35rem;
    }

    .profile-heading h2[b-v57lvznalp] {
        font-size: 2rem;
    }

    .profile-content[b-v57lvznalp] {
        padding: 1.5rem 1.2rem;
    }

    .information-card[b-v57lvznalp] {
        padding: 1.15rem;
    }

    .tree-action[b-v57lvznalp] {
        padding: 1.5rem 1.2rem;
    }

    .tree-button[b-v57lvznalp] {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .navigation-button[b-v57lvznalp],
    .person-card[b-v57lvznalp],
    .tree-button[b-v57lvznalp],
    .person-card-track[b-v57lvznalp] {
        transition: none;
        scroll-behavior: auto;
    }

        .navigation-button:hover[b-v57lvznalp],
        .person-card:hover[b-v57lvznalp],
        .tree-button:hover[b-v57lvznalp] {
            transform: none;
        }
}
/* /Components/Pages/Gallery.razor.rz.scp.css */
.gallery-hero[b-eos3d0i0qj] {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 1rem;
    color: #ffffff;
    background: radial-gradient( circle at 85% 20%, rgba(213, 181, 101, 0.2), transparent 30% ), linear-gradient(135deg, #0d3028, #174c3d);
}

    .gallery-hero[b-eos3d0i0qj]::after {
        position: absolute;
        right: 8%;
        bottom: -170px;
        width: 380px;
        height: 380px;
        border: 1px solid rgba(213, 181, 101, 0.22);
        border-radius: 50%;
        content: "";
    }

    .gallery-hero .container[b-eos3d0i0qj] {
        position: relative;
        z-index: 1;
    }

.gallery-eyebrow[b-eos3d0i0qj],
.section-label[b-eos3d0i0qj] {
    display: block;
    margin-bottom: 1rem;
    color: #d5b565;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.gallery-hero h1[b-eos3d0i0qj] {
    margin: 0 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1;
}

.gallery-hero p[b-eos3d0i0qj] {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.gallery-page[b-eos3d0i0qj] {
    padding: clamp(3rem, 7vw, 6rem) 1rem;
    background: #f5f2e9;
}

.gallery-heading[b-eos3d0i0qj] {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    align-items: end;
    gap: 3rem;
    margin-bottom: 3rem;
}

    .gallery-heading h2[b-eos3d0i0qj] {
        max-width: 820px;
        margin: 0;
        color: #153f36;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 500;
        line-height: 1.2;
    }

    .gallery-heading > p[b-eos3d0i0qj] {
        margin: 0;
        color: #68736f;
        line-height: 1.7;
    }

.gallery-grid[b-eos3d0i0qj] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 290px;
    gap: 1.25rem;
}

.gallery-item[b-eos3d0i0qj] {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border-radius: 16px;
    background: #153f36;
    box-shadow: 0 12px 30px rgba(25, 52, 44, 0.12);
    text-decoration: none;
}

.gallery-item--wide[b-eos3d0i0qj] {
    grid-column: span 2;
}

.gallery-item img[b-eos3d0i0qj] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease, opacity 350ms ease;
}

.gallery-item:hover img[b-eos3d0i0qj] {
    opacity: 0.88;
    transform: scale(1.035);
}

.gallery-overlay[b-eos3d0i0qj] {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 45%;
    padding: 1.4rem;
    color: #ffffff;
    background: linear-gradient( to top, rgba(7, 30, 25, 0.94), rgba(7, 30, 25, 0) );
}

.gallery-location[b-eos3d0i0qj] {
    margin-bottom: 0.35rem;
    color: #dfc58f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gallery-overlay strong[b-eos3d0i0qj] {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.gallery-item:focus-visible[b-eos3d0i0qj] {
    outline: 4px solid #c9a657;
    outline-offset: 4px;
}

.gallery-note[b-eos3d0i0qj] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #ddd3c1;
    border-radius: 14px;
    color: #5f6c67;
    background: #fffdf8;
}

    .gallery-note > span[b-eos3d0i0qj] {
        display: grid;
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        place-items: center;
        border-radius: 50%;
        color: #ffffff;
        background: #153f36;
        font-family: Georgia, "Times New Roman", serif;
        font-weight: 700;
    }

    .gallery-note p[b-eos3d0i0qj] {
        margin: 0;
        line-height: 1.7;
    }

@media (max-width: 950px) {
    .gallery-heading[b-eos3d0i0qj] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid[b-eos3d0i0qj] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .gallery-grid[b-eos3d0i0qj] {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item--wide[b-eos3d0i0qj] {
        grid-column: auto;
    }

    .gallery-overlay[b-eos3d0i0qj] {
        padding: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item img[b-eos3d0i0qj] {
        transition: none;
    }

    .gallery-item:hover img[b-eos3d0i0qj] {
        transform: none;
    }
}
/* /Components/Pages/Genetics.razor.rz.scp.css */
.genetics-page[b-ovxwdo6b3m] {
    --primary: #153f36;
    --primary-dark: #0d2d27;
    --gold: #b48a48;
    --gold-light: #dfc58f;
    --background: #f5f1e8;
    --surface: #fffdf8;
    --border: #ddd3c1;
    --text: #26332f;
    --muted: #68736f;
    width: 100%;
    color: var(--text);
}

.genetics-hero[b-ovxwdo6b3m] {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5rem);
    border-radius: 24px;
    color: #ffffff;
    background: radial-gradient( circle at 88% 18%, rgba(255, 255, 255, 0.14), transparent 30% ), linear-gradient( 135deg, var(--primary-dark), var(--primary) );
    box-shadow: 0 18px 45px rgba(21, 63, 54, 0.16);
}

    .genetics-hero[b-ovxwdo6b3m]::after {
        position: absolute;
        right: -80px;
        bottom: -140px;
        width: 360px;
        height: 360px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        content: "";
    }

.genetics-hero-content[b-ovxwdo6b3m] {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.genetics-label[b-ovxwdo6b3m],
.card-label[b-ovxwdo6b3m] {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.genetics-hero h1[b-ovxwdo6b3m] {
    margin: 0 0 1rem;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 6vw, 4.7rem);
    font-weight: 500;
    line-height: 1.05;
}

.genetics-intro[b-ovxwdo6b3m] {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.75;
}

.dna-circle[b-ovxwdo6b3m] {
    position: relative;
    z-index: 1;
    display: grid;
    width: 135px;
    height: 135px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.12);
}

    .dna-circle span[b-ovxwdo6b3m] {
        color: var(--gold-light);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.35rem;
        font-weight: 700;
        letter-spacing: 0.16em;
    }

.genetics-content[b-ovxwdo6b3m] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.genetics-card[b-ovxwdo6b3m],
.privacy-note[b-ovxwdo6b3m] {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(38, 48, 44, 0.07);
}

.genetics-card[b-ovxwdo6b3m] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

    .genetics-card:hover[b-ovxwdo6b3m] {
        border-color: #c7b184;
        box-shadow: 0 16px 36px rgba(38, 48, 44, 0.11);
        transform: translateY(-2px);
    }

.genetics-card-wide[b-ovxwdo6b3m] {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
}

.card-icon[b-ovxwdo6b3m] {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 15px;
    color: var(--gold-light);
    background: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.card-content[b-ovxwdo6b3m] {
    min-width: 0;
}

    .card-content .card-label[b-ovxwdo6b3m] {
        color: var(--gold);
    }

    .card-content h2[b-ovxwdo6b3m] {
        margin: 0 0 0.75rem;
        color: var(--primary);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(1.35rem, 3vw, 1.7rem);
        line-height: 1.25;
    }

    .card-content p[b-ovxwdo6b3m] {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

.genetics-information[b-ovxwdo6b3m] {
    display: grid;
    gap: 0;
    margin: 1.5rem 0 0;
}

    .genetics-information div[b-ovxwdo6b3m] {
        display: grid;
        grid-template-columns: minmax(135px, 0.8fr) minmax(0, 1.2fr);
        gap: 1rem;
        padding: 0.85rem 0;
        border-top: 1px solid var(--border);
    }

    .genetics-information dt[b-ovxwdo6b3m] {
        color: var(--muted);
        font-size: 0.88rem;
    }

    .genetics-information dd[b-ovxwdo6b3m] {
        margin: 0;
        color: var(--primary);
        font-weight: 600;
    }

.status-message[b-ovxwdo6b3m] {
    margin-top: 1.4rem;
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    color: #5e513c;
    background: #f6efe2;
    line-height: 1.6;
}

/* Pravac kretanja porodice */

.migration-route[b-ovxwdo6b3m] {
    display: grid;
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr) auto minmax(220px, 1fr) auto minmax(190px, 1fr);
    align-items: center;
    gap: 0.85rem;
    overflow-x: auto;
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 14px;
    background: var(--background);
}

.route-location[b-ovxwdo6b3m] {
    display: flex;
    min-width: 0;
    min-height: 74px;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
}

.route-number[b-ovxwdo6b3m] {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary);
    font-weight: 700;
}

.route-location div[b-ovxwdo6b3m] {
    min-width: 0;
}

.route-location strong[b-ovxwdo6b3m] {
    display: block;
    color: var(--primary);
    line-height: 1.3;
}

.route-location small[b-ovxwdo6b3m] {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
    line-height: 1.4;
}

.route-arrow[b-ovxwdo6b3m] {
    align-self: center;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
}

/* Ciljevi istraživanja */

.research-list[b-ovxwdo6b3m] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.5rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

    .research-list li[b-ovxwdo6b3m] {
        position: relative;
        padding: 0.9rem 1rem 0.9rem 2.7rem;
        border: 1px solid var(--border);
        border-radius: 10px;
        color: var(--text);
        background: var(--background);
        line-height: 1.5;
    }

        .research-list li[b-ovxwdo6b3m]::before {
            position: absolute;
            top: 0.85rem;
            left: 1rem;
            display: grid;
            width: 22px;
            height: 22px;
            place-items: center;
            border-radius: 50%;
            color: #ffffff;
            background: var(--primary);
            content: "✓";
            font-size: 0.75rem;
            font-weight: 700;
        }

/* Privatnost */

.privacy-note[b-ovxwdo6b3m] {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-color: #d6c6a7;
    background: var(--background);
}

.privacy-icon[b-ovxwdo6b3m] {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.privacy-note strong[b-ovxwdo6b3m] {
    color: var(--primary);
}

.privacy-note p[b-ovxwdo6b3m] {
    margin: 0.35rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Prilagođavanje manjim ekranima */

@media (max-width: 1200px) {
    .migration-route[b-ovxwdo6b3m] {
        grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    }

    .route-arrow:nth-of-type(2)[b-ovxwdo6b3m] {
        display: none;
    }
}

@media (max-width: 1100px) {
    .migration-route[b-ovxwdo6b3m] {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .route-location[b-ovxwdo6b3m] {
        width: 100%;
    }

    .route-arrow[b-ovxwdo6b3m],
    .route-arrow:nth-of-type(2)[b-ovxwdo6b3m] {
        display: block;
        justify-self: center;
        transform: rotate(90deg);
    }
}

@media (max-width: 850px) {
    .genetics-hero[b-ovxwdo6b3m] {
        grid-template-columns: 1fr;
    }

    .dna-circle[b-ovxwdo6b3m] {
        display: none;
    }

    .genetics-content[b-ovxwdo6b3m] {
        grid-template-columns: 1fr;
    }

    .research-list[b-ovxwdo6b3m] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .genetics-hero[b-ovxwdo6b3m] {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .genetics-card[b-ovxwdo6b3m] {
        grid-template-columns: 1fr;
    }

    .genetics-information div[b-ovxwdo6b3m] {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .migration-route[b-ovxwdo6b3m] {
        padding: 1rem;
    }

    .route-location[b-ovxwdo6b3m] {
        width: 100%;
        min-width: 0;
    }

    .privacy-note[b-ovxwdo6b3m] {
        padding: 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .genetics-card[b-ovxwdo6b3m] {
        transition: none;
    }

        .genetics-card:hover[b-ovxwdo6b3m] {
            transform: none;
        }
}
.migration-figure[b-ovxwdo6b3m] {
    overflow: hidden;
    margin: 1.5rem 0 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--background);
}

    .migration-figure img[b-ovxwdo6b3m] {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .migration-figure figcaption[b-ovxwdo6b3m] {
        padding: 0.8rem 1rem;
        color: var(--muted);
        font-size: 0.9rem;
        text-align: center;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-h6aw0f0ho8] {
    position: relative;
    min-height: 78vh;
    background: linear-gradient( rgba(9, 35, 28, 0.72), rgba(9, 35, 28, 0.58) ), url('/images/backgrounds/Djurdjevik.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Više nam ne treba jer je gradient već postavljen preko slike */
.overlay[b-h6aw0f0ho8] {
    display: none;
}

.hero-content[b-h6aw0f0ho8] {
    position: relative;
    z-index: 2;
    width: min(850px, calc(100% - 2rem));
    text-align: center;
    color: #fff;
    padding: 3rem 2rem;
}

.subtitle[b-h6aw0f0ho8] {
    display: inline-block;
    margin-bottom: 1rem;
    color: #d8b76a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.28rem;
    text-transform: uppercase;
}

.hero h1[b-h6aw0f0ho8] {
    margin: 0 0 1.25rem;
    font-family: Georgia, serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 500;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero p[b-h6aw0f0ho8] {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons[b-h6aw0f0ho8] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary[b-h6aw0f0ho8],
.btn-secondary[b-h6aw0f0ho8] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    padding: 0.9rem 1.7rem;
    border: 1px solid #d3ae59;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-primary[b-h6aw0f0ho8] {
    background: rgba(10, 42, 33, 0.35);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-secondary[b-h6aw0f0ho8] {
    background: rgba(10, 42, 33, 0.35);
    color: #fff;
    backdrop-filter: blur(5px);
}

    .btn-primary:hover[b-h6aw0f0ho8],
    .btn-secondary:hover[b-h6aw0f0ho8] {
            background: rgba(10, 42, 33, 0.65);
            color: #ffffff;
            transform: translateY(-2px);
    }

.intro[b-h6aw0f0ho8] {
    padding: 6rem 1rem;
    background: #f5f2e9;
    color: #27372f;
}

    .intro h2[b-h6aw0f0ho8] {
        margin-bottom: 1.5rem;
        text-align: center;
        font-family: Georgia, serif;
        font-size: 2.5rem;
        color: #153b2f;
    }

    .intro p[b-h6aw0f0ho8] {
        max-width: 850px;
        margin: auto;
        text-align: center;
        font-size: 1.08rem;
        line-height: 1.9;
        color: #4b5b52;
    }

.cards[b-h6aw0f0ho8] {
    padding: 5rem 1rem 6rem;
    background: #fff;
}

    .cards .container[b-h6aw0f0ho8] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

.card[b-h6aw0f0ho8] {
    padding: 2.3rem;
    border: 1px solid rgba(19, 59, 47, 0.12);
    border-top: 4px solid #c9a657;
    border-radius: 10px;
    background: #faf9f5;
    box-shadow: 0 8px 28px rgba(20, 45, 36, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .card:hover[b-h6aw0f0ho8] {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(20, 45, 36, 0.12);
    }

    .card h3[b-h6aw0f0ho8] {
        margin-bottom: 1rem;
        font-family: Georgia, serif;
        font-size: 1.55rem;
        color: #173b30;
    }

    .card p[b-h6aw0f0ho8] {
        margin: 0;
        line-height: 1.8;
        color: #59675f;
    }

@media (max-width: 900px) {
    .hero[b-h6aw0f0ho8] {
        min-height: 72vh;
        background-position: center;
    }

    .hero-content[b-h6aw0f0ho8] {
        padding: 3rem 1rem;
    }

    .cards .container[b-h6aw0f0ho8] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .subtitle[b-h6aw0f0ho8] {
        font-size: 0.72rem;
        letter-spacing: 0.18rem;
    }

    .hero-buttons[b-h6aw0f0ho8] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary[b-h6aw0f0ho8],
    .btn-secondary[b-h6aw0f0ho8] {
        width: 100%;
    }
}
/* /Components/Pages/Origin.razor.rz.scp.css */
.page-hero[b-ixqx08f5g1] {
    position: relative;
    padding: 7rem 1rem 6rem;
    background: radial-gradient( circle at 82% 30%, rgba(201, 166, 87, 0.14), transparent 34% ), #123c30;
    color: #ffffff;
    overflow: hidden;
}

    .page-hero[b-ixqx08f5g1]::after {
        content: "";
        position: absolute;
        right: 8%;
        bottom: -135px;
        width: 340px;
        height: 340px;
        border: 1px solid rgba(201, 166, 87, 0.22);
        border-radius: 50%;
    }

    .page-hero .container[b-ixqx08f5g1] {
        position: relative;
        z-index: 1;
    }

.eyebrow[b-ixqx08f5g1] {
    display: block;
    margin-bottom: 1rem;
    color: #d5b565;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.page-hero h1[b-ixqx08f5g1] {
    max-width: 850px;
    margin: 0 0 1.25rem;
    font-family: Georgia, serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.08;
}

.page-hero p[b-ixqx08f5g1] {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.12rem;
    line-height: 1.85;
}

.origin-content[b-ixqx08f5g1] {
    padding: 6rem 1rem;
    background: #f5f2e9;
    color: #33443b;
}

    .origin-content .container[b-ixqx08f5g1] {
        width: min(980px, 100%);
    }

    .origin-content article[b-ixqx08f5g1] {
        position: relative;
        margin-bottom: 3rem;
        padding: 3rem;
        border: 1px solid rgba(22, 60, 48, 0.12);
        border-left: 5px solid #c9a657;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 16px 45px rgba(21, 55, 44, 0.08);
    }

        .origin-content article:last-child[b-ixqx08f5g1] {
            margin-bottom: 0;
        }

        .origin-content article[b-ixqx08f5g1]::before {
            content: "";
            position: absolute;
            top: 3rem;
            left: -12px;
            width: 18px;
            height: 18px;
            border: 4px solid #f5f2e9;
            border-radius: 50%;
            background: #c9a657;
        }

    .origin-content h2[b-ixqx08f5g1] {
        margin: 0 0 1.7rem;
        color: #173c31;
        font-family: Georgia, serif;
        font-size: clamp(1.9rem, 4vw, 2.8rem);
        font-weight: 500;
        line-height: 1.25;
    }

    .origin-content p[b-ixqx08f5g1] {
        margin: 0 0 1.35rem;
        color: #4d5d54;
        font-size: 1.05rem;
        line-height: 1.9;
    }

        .origin-content p:last-child[b-ixqx08f5g1] {
            margin-bottom: 0;
        }

    .origin-content strong[b-ixqx08f5g1] {
        color: #173c31;
    }

    .origin-content em[b-ixqx08f5g1] {
        color: #75591f;
    }

    .origin-content blockquote[b-ixqx08f5g1] {
        position: relative;
        margin: 2.5rem 0 0;
        padding: 1.8rem 2rem 1.8rem 2.4rem;
        border-left: 4px solid #c9a657;
        border-radius: 0 10px 10px 0;
        background: #f8f4e8;
        color: #365046;
        font-family: Georgia, serif;
        font-size: 1.08rem;
        line-height: 1.8;
    }

        .origin-content blockquote[b-ixqx08f5g1]::before {
            content: "“";
            position: absolute;
            top: 0.35rem;
            right: 1.2rem;
            color: rgba(201, 166, 87, 0.24);
            font-family: Georgia, serif;
            font-size: 5rem;
            line-height: 1;
        }

        .origin-content blockquote strong[b-ixqx08f5g1] {
            color: #7d5c18;
        }
.historical-document[b-ixqx08f5g1] {
    width: min(680px, 100%);
    margin: 2.5rem auto;
    overflow: hidden;
    border: 1px solid rgba(22, 60, 48, 0.16);
    border-radius: 12px;
    background: #f5f2e9;
    box-shadow: 0 12px 32px rgba(21, 55, 44, 0.1);
}

    .historical-document > a[b-ixqx08f5g1] {
        display: flex;
        justify-content: center;
        padding: 1rem;
        background: #f5f2e9;
        cursor: zoom-in;
    }

    .historical-document img[b-ixqx08f5g1] {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 650px;
        margin: 0 auto;
        border-radius: 6px;
        object-fit: contain;
    }
@media (max-width: 900px) {
    .page-hero[b-ixqx08f5g1] {
        padding-block: 5rem;
    }

    .origin-content[b-ixqx08f5g1] {
        padding-block: 4.5rem;
    }

        .origin-content article[b-ixqx08f5g1] {
            padding: 2.3rem;
        }
}

@media (max-width: 560px) {
    .page-hero[b-ixqx08f5g1] {
        padding: 4rem 1rem;
    }

        .page-hero p[b-ixqx08f5g1] {
            font-size: 1rem;
        }

    .origin-content[b-ixqx08f5g1] {
        padding: 3.5rem 1rem;
    }

        .origin-content article[b-ixqx08f5g1] {
            margin-bottom: 2rem;
            padding: 2rem 1.4rem;
            border-left-width: 4px;
        }

            .origin-content article[b-ixqx08f5g1]::before {
                top: 2.3rem;
                left: -11px;
                width: 16px;
                height: 16px;
            }

        .origin-content blockquote[b-ixqx08f5g1] {
            padding: 1.5rem;
            font-size: 1rem;
        }
}
/* /Components/Pages/Person.razor.rz.scp.css */
.person-hero[b-3hywdep6uy] {
    padding: 7rem 1rem 4rem;
    background: linear-gradient(180deg,#173c31 0%,#244d40 100%);
    color: #fff;
}

    .person-hero .container[b-3hywdep6uy],
    .person-content .container[b-3hywdep6uy],
    .person-footer-navigation .container[b-3hywdep6uy],
    .person-not-found .container[b-3hywdep6uy] {
        width: min(1200px,100%);
        margin: 0 auto;
    }

.eyebrow[b-3hywdep6uy] {
    display: inline-block;
    margin-bottom: .8rem;
    color: #d8c08b;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .18rem;
    text-transform: uppercase;
}

.person-hero h1[b-3hywdep6uy] {
    margin: 0;
    font-family: Georgia,serif;
    font-size: clamp(2.8rem,6vw,4.8rem);
    font-weight: 500;
}

.person-hero p[b-3hywdep6uy] {
    margin-top: 1rem;
    font-size: 1.15rem;
    color: rgba(255,255,255,.88);
}

.person-content[b-3hywdep6uy] {
    padding: 5rem 1rem;
    background: #f5f2e9;
}

.person-grid[b-3hywdep6uy] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.person-main[b-3hywdep6uy],
.family-card[b-3hywdep6uy] {
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.section-label[b-3hywdep6uy] {
    display: inline-block;
    margin-bottom: .8rem;
    color: #b48a33;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16rem;
    text-transform: uppercase;
}

.person-main h2[b-3hywdep6uy],
.family-card h2[b-3hywdep6uy] {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #173c31;
    font-family: Georgia,serif;
    font-weight: 500;
}

.person-details[b-3hywdep6uy] {
    margin: 0;
}

    .person-details div[b-3hywdep6uy] {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: .9rem 0;
        border-bottom: 1px solid #ece7dc;
    }

    .person-details dt[b-3hywdep6uy] {
        font-weight: 700;
        color: #173c31;
    }

    .person-details dd[b-3hywdep6uy] {
        margin: 0;
        text-align: right;
        color: #444;
    }

.privacy-note[b-3hywdep6uy] {
    margin-top: 2rem;
    padding: 1.2rem;
    border-left: 4px solid #c9a657;
    background: #fff8e8;
    border-radius: 8px;
}

.family-group[b-3hywdep6uy] {
    margin-bottom: 2rem;
}

    .family-group:last-child[b-3hywdep6uy] {
        margin-bottom: 0;
    }

    .family-group h2[b-3hywdep6uy] {
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

.relation-link[b-3hywdep6uy] {
    display: block;
    padding: 1rem;
    margin-bottom: .9rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ece7dc;
    border-radius: 10px;
    transition: .2s;
}

    .relation-link:hover[b-3hywdep6uy] {
        border-color: #c9a657;
        background: #faf7ef;
        transform: translateY(-2px);
    }

    .relation-link span[b-3hywdep6uy] {
        display: block;
        color: #b48a33;
        font-size: .78rem;
        text-transform: uppercase;
        letter-spacing: .12rem;
    }

    .relation-link strong[b-3hywdep6uy] {
        display: block;
        margin-top: .35rem;
        color: #173c31;
        font-size: 1.1rem;
    }

    .relation-link small[b-3hywdep6uy] {
        display: block;
        margin-top: .4rem;
        color: #777;
    }

.empty-message[b-3hywdep6uy] {
    color: #777;
    line-height: 1.7;
}

.person-footer-navigation[b-3hywdep6uy] {
    padding: 3rem 1rem 5rem;
    background: #f5f2e9;
}

    .person-footer-navigation a[b-3hywdep6uy] {
        color: #173c31;
        font-weight: 600;
        text-decoration: none;
    }

        .person-footer-navigation a:hover[b-3hywdep6uy] {
            color: #b48a33;
        }

.person-not-found[b-3hywdep6uy] {
    padding: 8rem 1rem;
    background: #f5f2e9;
    text-align: center;
}

    .person-not-found h1[b-3hywdep6uy] {
        color: #173c31;
        font-family: Georgia,serif;
        font-size: clamp(2.8rem,6vw,4.2rem);
    }

    .person-not-found p[b-3hywdep6uy] {
        color: #666;
        margin: 1.5rem auto 2rem;
        max-width: 600px;
    }

.back-button[b-3hywdep6uy] {
    display: inline-block;
    padding: .9rem 1.7rem;
    background: #173c31;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: .2s;
}

    .back-button:hover[b-3hywdep6uy] {
        background: #285947;
    }

@media (max-width:900px) {

    .person-grid[b-3hywdep6uy] {
        grid-template-columns: 1fr;
    }

    .person-main[b-3hywdep6uy],
    .family-card[b-3hywdep6uy] {
        padding: 1.7rem;
    }

    .person-details div[b-3hywdep6uy] {
        flex-direction: column;
    }

    .person-details dd[b-3hywdep6uy] {
        text-align: left;
    }
}
/* /Components/Pages/Search.razor.rz.scp.css */
.search-hero[b-zxcxx3e83k] {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 1rem;
    color: #ffffff;
    background: radial-gradient( circle at 86% 20%, rgba(213, 181, 101, 0.18), transparent 30% ), linear-gradient(135deg, #0d3028, #174c3d);
}

    .search-hero[b-zxcxx3e83k]::after {
        position: absolute;
        right: 8%;
        bottom: -170px;
        width: 380px;
        height: 380px;
        border: 1px solid rgba(213, 181, 101, 0.22);
        border-radius: 50%;
        content: "";
    }

    .search-hero .container[b-zxcxx3e83k] {
        position: relative;
        z-index: 1;
    }

.search-eyebrow[b-zxcxx3e83k],
.section-label[b-zxcxx3e83k] {
    display: block;
    margin-bottom: 1rem;
    color: #d5b565;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.search-hero h1[b-zxcxx3e83k] {
    margin: 0 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1;
}

.search-hero p[b-zxcxx3e83k] {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.search-page[b-zxcxx3e83k] {
    min-height: 60vh;
    padding: clamp(3rem, 7vw, 6rem) 1rem;
    color: #34443b;
    background: #f5f2e9;
}

.search-panel[b-zxcxx3e83k] {
    padding: clamp(1.4rem, 4vw, 2.5rem);
    border: 1px solid #ddd3c1;
    border-radius: 18px;
    background: #fffdf8;
    box-shadow: 0 14px 36px rgba(21, 55, 44, 0.08);
}

.search-heading[b-zxcxx3e83k] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

    .search-heading h2[b-zxcxx3e83k] {
        margin: 0 0 0.5rem;
        color: #153f36;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        font-weight: 500;
    }

    .search-heading p[b-zxcxx3e83k] {
        margin: 0;
        color: #68736f;
        line-height: 1.7;
    }

.result-count[b-zxcxx3e83k] {
    flex: 0 0 auto;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    color: #7f5e20;
    background: rgba(201, 166, 87, 0.15);
    font-size: 0.85rem;
    font-weight: 700;
}

.search-controls[b-zxcxx3e83k] {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(210px, 0.5fr) auto;
    align-items: end;
    gap: 1rem;
}

.search-field[b-zxcxx3e83k],
.filter-field[b-zxcxx3e83k] {
    display: grid;
    gap: 0.5rem;
}

    .search-field > span[b-zxcxx3e83k],
    .filter-field > span[b-zxcxx3e83k] {
        color: #53625c;
        font-size: 0.85rem;
        font-weight: 700;
    }

    .search-field input[b-zxcxx3e83k],
    .filter-field select[b-zxcxx3e83k] {
        width: 100%;
        min-height: 52px;
        padding: 0.85rem 1rem;
        border: 1px solid #cfc5b4;
        border-radius: 10px;
        color: #26332f;
        background: #ffffff;
        font: inherit;
    }

        .search-field input:focus[b-zxcxx3e83k],
        .filter-field select:focus[b-zxcxx3e83k] {
            border-color: #a77a39;
            outline: 3px solid rgba(201, 166, 87, 0.18);
        }

.clear-button[b-zxcxx3e83k] {
    min-height: 52px;
    padding: 0.85rem 1.25rem;
    border: 1px solid #153f36;
    border-radius: 10px;
    color: #ffffff;
    background: #153f36;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

    .clear-button:hover[b-zxcxx3e83k] {
        background: #0d3028;
    }

.search-message[b-zxcxx3e83k] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid #ddd3c1;
    border-radius: 16px;
    background: #fffdf8;
}

.message-icon[b-zxcxx3e83k] {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border-radius: 50%;
    color: #dfc58f;
    background: #153f36;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.search-message h2[b-zxcxx3e83k] {
    margin: 0 0 0.4rem;
    color: #153f36;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.search-message p[b-zxcxx3e83k] {
    margin: 0;
    color: #68736f;
    line-height: 1.6;
}

.results-section[b-zxcxx3e83k] {
    margin-top: 2rem;
}

.people-grid[b-zxcxx3e83k] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.person-result[b-zxcxx3e83k] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 1.7rem;
    border: 1px solid #ddd3c1;
    border-top: 4px solid #c9a657;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(21, 55, 44, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .person-result:hover[b-zxcxx3e83k] {
        box-shadow: 0 17px 36px rgba(21, 55, 44, 0.1);
        transform: translateY(-3px);
    }

.person-label[b-zxcxx3e83k] {
    display: block;
    margin-bottom: 0.65rem;
    color: #a77a39;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.person-result h2[b-zxcxx3e83k] {
    margin: 0 0 0.75rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.3;
}

    .person-result h2 a[b-zxcxx3e83k] {
        color: #153f36;
        text-decoration: none;
    }

        .person-result h2 a:hover[b-zxcxx3e83k] {
            color: #98701f;
        }

.life-span[b-zxcxx3e83k] {
    margin: 0 0 1rem;
    color: #98701f;
    font-weight: 700;
}

.person-detail[b-zxcxx3e83k] {
    margin: 0.35rem 0;
    color: #66716d;
    line-height: 1.6;
}

    .person-detail strong[b-zxcxx3e83k] {
        color: #3c4c46;
    }

.person-link[b-zxcxx3e83k] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1.25rem;
    color: #98701f;
    font-weight: 700;
    text-decoration: none;
}

    .person-link span[b-zxcxx3e83k] {
        transition: transform 180ms ease;
    }

    .person-link:hover[b-zxcxx3e83k] {
        color: #153f36;
    }

        .person-link:hover span[b-zxcxx3e83k] {
            transform: translateX(4px);
        }

.results-notice[b-zxcxx3e83k] {
    margin: 1.5rem 0 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid #c9a657;
    border-radius: 8px;
    color: #5f5541;
    background: #eee7d9;
    line-height: 1.7;
}

.privacy-note[b-zxcxx3e83k] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #d6c6a7;
    border-radius: 14px;
    background: #eee7d9;
}

.privacy-icon[b-zxcxx3e83k] {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #153f36;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.privacy-note strong[b-zxcxx3e83k] {
    color: #153f36;
}

.privacy-note p[b-zxcxx3e83k] {
    margin: 0.35rem 0 0;
    color: #5f6c67;
    line-height: 1.65;
}

.error-box[b-zxcxx3e83k],
.loading-box[b-zxcxx3e83k] {
    padding: 1.5rem;
    border: 1px solid #ddd3c1;
    border-radius: 14px;
    background: #fffdf8;
}

.error-box[b-zxcxx3e83k] {
    border-left: 4px solid #a73333;
    color: #6e2222;
}

    .error-box p[b-zxcxx3e83k] {
        margin: 0.5rem 0 0;
    }

@media (max-width: 1000px) {
    .people-grid[b-zxcxx3e83k] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .search-heading[b-zxcxx3e83k] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .search-controls[b-zxcxx3e83k] {
        grid-template-columns: 1fr;
    }

    .clear-button[b-zxcxx3e83k] {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .people-grid[b-zxcxx3e83k] {
        grid-template-columns: 1fr;
    }

    .search-message[b-zxcxx3e83k] {
        align-items: flex-start;
        padding: 1.4rem;
    }

    .privacy-note[b-zxcxx3e83k] {
        padding: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .person-result[b-zxcxx3e83k],
    .person-link span[b-zxcxx3e83k] {
        transition: none;
    }

        .person-result:hover[b-zxcxx3e83k] {
            transform: none;
        }
}
/* /Components/Pages/Sources.razor.rz.scp.css */
.sources-hero[b-bf7c6wvd18] {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 1rem;
    color: #ffffff;
    background: radial-gradient( circle at 86% 20%, rgba(213, 181, 101, 0.18), transparent 30% ), linear-gradient(135deg, #0d3028, #174c3d);
}

    .sources-hero[b-bf7c6wvd18]::after {
        position: absolute;
        right: 8%;
        bottom: -170px;
        width: 380px;
        height: 380px;
        border: 1px solid rgba(213, 181, 101, 0.22);
        border-radius: 50%;
        content: "";
    }

    .sources-hero .container[b-bf7c6wvd18] {
        position: relative;
        z-index: 1;
    }

.sources-eyebrow[b-bf7c6wvd18],
.section-label[b-bf7c6wvd18] {
    display: block;
    margin-bottom: 1rem;
    color: #d5b565;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.sources-hero h1[b-bf7c6wvd18] {
    margin: 0 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1;
}

.sources-hero p[b-bf7c6wvd18] {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.sources-page[b-bf7c6wvd18] {
    padding: clamp(3rem, 7vw, 6rem) 1rem;
    background: #f5f2e9;
}

.sources-introduction[b-bf7c6wvd18] {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 6vw, 6rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid #ddd3c1;
}

    .sources-introduction h2[b-bf7c6wvd18],
    .sources-heading h2[b-bf7c6wvd18],
    .source-method h2[b-bf7c6wvd18] {
        margin: 0;
        color: #153f36;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 500;
        line-height: 1.2;
    }

    .sources-introduction p[b-bf7c6wvd18] {
        margin: 0 0 1rem;
        color: #5f6c67;
        font-size: 1.03rem;
        line-height: 1.8;
    }

.sources-section[b-bf7c6wvd18] {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.sources-heading[b-bf7c6wvd18] {
    margin-bottom: 2.5rem;
}

.sources-grid[b-bf7c6wvd18] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.source-card[b-bf7c6wvd18] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1.3rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid #ddd3c1;
    border-radius: 16px;
    background: #fffdf8;
    box-shadow: 0 10px 30px rgba(38, 48, 44, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

    .source-card:hover[b-bf7c6wvd18] {
        border-color: #c5ad7a;
        box-shadow: 0 16px 36px rgba(38, 48, 44, 0.1);
        transform: translateY(-3px);
    }

.source-card--featured[b-bf7c6wvd18] {
    border-top: 4px solid #c9a657;
}

.source-icon[b-bf7c6wvd18] {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 14px;
    color: #dfc58f;
    background: #153f36;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.source-content[b-bf7c6wvd18] {
    min-width: 0;
}

.source-type[b-bf7c6wvd18] {
    display: block;
    margin-bottom: 0.55rem;
    color: #a77a39;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.source-content h3[b-bf7c6wvd18] {
    margin: 0 0 0.8rem;
    color: #153f36;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.3;
}

.source-content p[b-bf7c6wvd18] {
    margin: 0 0 1rem;
    color: #66716d;
    line-height: 1.7;
}

.source-content .source-author[b-bf7c6wvd18] {
    margin: -0.35rem 0 0.8rem;
    color: #98701f;
    font-weight: 700;
}

.source-link[b-bf7c6wvd18] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #98701f;
    font-weight: 700;
    text-decoration: none;
}

    .source-link span[b-bf7c6wvd18] {
        transition: transform 180ms ease;
    }

    .source-link:hover[b-bf7c6wvd18] {
        color: #153f36;
    }

        .source-link:hover span[b-bf7c6wvd18] {
            transform: translateX(4px);
        }

.source-method[b-bf7c6wvd18] {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid #ddd3c1;
}

.method-list[b-bf7c6wvd18] {
    display: grid;
    gap: 1rem;
}

    .method-list article[b-bf7c6wvd18] {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 1rem;
        padding: 1.25rem;
        border: 1px solid #ddd3c1;
        border-radius: 12px;
        background: #fffdf8;
    }

        .method-list article > span[b-bf7c6wvd18] {
            display: grid;
            width: 38px;
            height: 38px;
            place-items: center;
            border-radius: 50%;
            color: #ffffff;
            background: #153f36;
            font-size: 0.75rem;
            font-weight: 700;
        }

    .method-list h3[b-bf7c6wvd18] {
        margin: 0 0 0.4rem;
        color: #153f36;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.2rem;
    }

    .method-list p[b-bf7c6wvd18] {
        margin: 0;
        color: #66716d;
        line-height: 1.65;
    }

.sources-note[b-bf7c6wvd18] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid #d6c6a7;
    border-radius: 14px;
    background: #eee7d9;
}

.note-symbol[b-bf7c6wvd18] {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #153f36;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.sources-note strong[b-bf7c6wvd18] {
    color: #153f36;
}

.sources-note p[b-bf7c6wvd18] {
    margin: 0.35rem 0 0;
    color: #5f6c67;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .sources-introduction[b-bf7c6wvd18],
    .source-method[b-bf7c6wvd18] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sources-grid[b-bf7c6wvd18] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .source-card[b-bf7c6wvd18] {
        grid-template-columns: 1fr;
    }

    .source-icon[b-bf7c6wvd18] {
        width: 52px;
        height: 52px;
    }

    .sources-note[b-bf7c6wvd18] {
        padding: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .source-card[b-bf7c6wvd18],
    .source-link span[b-bf7c6wvd18] {
        transition: none;
    }

        .source-card:hover[b-bf7c6wvd18] {
            transform: none;
        }
}
/* /Components/Pages/Tree.razor.rz.scp.css */
.tree-page[b-pqfa6xgszb] {
    --tree-navy: #143f62;
    --tree-blue: #245f8f;
    --tree-green: #123f3d;
    --tree-gold: #c99a32;
    --tree-gold-dark: #996b12;
    --tree-background: #f4f1e7;
    --tree-card: #ffffff;
    --tree-text: #34434d;
    --tree-muted: #6d777e;
    min-height: 100vh;
    padding: 4rem 1rem 5rem;
    background: radial-gradient( circle at top center, rgba(201, 154, 50, 0.12), transparent 34rem ), var(--tree-background);
    color: var(--tree-text);
}

/* Zaglavlje */

.tree-header[b-pqfa6xgszb] {
    width: min(850px, 100%);
    margin: 0 auto 3.5rem;
    text-align: center;
}

.tree-eyebrow[b-pqfa6xgszb],
.generation-label[b-pqfa6xgszb],
.full-tree-label[b-pqfa6xgszb],
.data-note-label[b-pqfa6xgszb] {
    display: block;
    color: var(--tree-gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tree-header h1[b-pqfa6xgszb] {
    margin: 0.7rem 0 0;
    color: var(--tree-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.12;
}

.tree-header p[b-pqfa6xgszb] {
    max-width: 720px;
    margin: 1.2rem auto 0;
    color: var(--tree-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Vertikalno stablo */

.lineage-tree[b-pqfa6xgszb] {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: min(650px, 100%);
    margin: 0 auto;
}

/* Kartica osobe */

.ancestor-card[b-pqfa6xgszb] {
    position: relative;
    display: block;
    width: min(465px, 100%);
    padding: 1.8rem 1.5rem 1.6rem;
    overflow: hidden;
    border: 1px solid rgba(24, 57, 67, 0.12);
    border-top: 3px solid var(--tree-gold);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--tree-text);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(28, 46, 55, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

    .ancestor-card:not(.ancestor-card-static)[b-pqfa6xgszb] {
        cursor: pointer;
    }

        .ancestor-card:not(.ancestor-card-static)[b-pqfa6xgszb]::after {
            position: absolute;
            right: -42px;
            bottom: -42px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(201, 154, 50, 0.08);
            content: "";
            transition: transform 180ms ease;
        }

        .ancestor-card:not(.ancestor-card-static):hover[b-pqfa6xgszb] {
            transform: translateY(-5px);
            border-color: var(--tree-gold);
            background: #ffffff;
            color: var(--tree-text);
            text-decoration: none;
            box-shadow: 0 18px 44px rgba(28, 46, 55, 0.14);
        }

            .ancestor-card:not(.ancestor-card-static):hover[b-pqfa6xgszb]::after {
                transform: scale(1.35);
            }

    .ancestor-card:focus-visible[b-pqfa6xgszb] {
        outline: 3px solid rgba(201, 154, 50, 0.38);
        outline-offset: 5px;
    }

.ancestor-card-static[b-pqfa6xgszb] {
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 223, 0.98) );
}

.ancestor-card h2[b-pqfa6xgszb] {
    margin: 0.8rem 0 0;
    color: var(--tree-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 4vw, 2.05rem);
    font-weight: 500;
    line-height: 1.25;
}

.person-years[b-pqfa6xgszb] {
    margin: 0.65rem 0 0;
    color: var(--tree-muted);
    font-size: 0.98rem;
    font-weight: 600;
}

.person-note[b-pqfa6xgszb] {
    display: block;
    margin-top: 0.9rem;
    color: var(--tree-gold-dark);
    font-size: 0.87rem;
    font-style: italic;
}

.open-profile[b-pqfa6xgszb] {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.05rem;
    color: var(--tree-blue);
    font-size: 0.86rem;
    font-weight: 700;
}

    .open-profile[b-pqfa6xgszb]::after {
        content: "→";
        transition: transform 160ms ease;
    }

.ancestor-card:hover .open-profile[b-pqfa6xgszb]::after {
    transform: translateX(4px);
}

/* Linije između generacija */

.tree-line[b-pqfa6xgszb] {
    position: relative;
    width: 36px;
    height: 66px;
}

    .tree-line[b-pqfa6xgszb]::before {
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 50px;
        background: var(--tree-gold);
        content: "";
        transform: translateX(-50%);
    }

    .tree-line span[b-pqfa6xgszb] {
        position: absolute;
        bottom: 6px;
        left: 50%;
        width: 11px;
        height: 11px;
        border-right: 2px solid var(--tree-gold);
        border-bottom: 2px solid var(--tree-gold);
        transform: translateX(-50%) rotate(45deg);
    }

/* Kompletni PDF dijagram */

.full-tree-section[b-pqfa6xgszb] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.75rem;
    width: min(1080px, 100%);
    margin: 4.5rem auto 0;
    padding: 2.25rem;
    overflow: hidden;
    border: 1px solid rgba(218, 178, 88, 0.45);
    border-radius: 20px;
    background: radial-gradient( circle at top right, rgba(255, 255, 255, 0.10), transparent 22rem ), linear-gradient( 135deg, #123f62, #1d6683 );
    color: white;
    box-shadow: 0 22px 55px rgba(20, 48, 63, 0.20);
}

.pdf-symbol[b-pqfa6xgszb] {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border: 1px solid rgba(229, 188, 98, 0.75);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.025);
}

    .pdf-symbol span[b-pqfa6xgszb] {
        color: #e6bd63;
        font-size: 0.88rem;
        font-weight: 800;
        letter-spacing: 0.13em;
    }

.full-tree-label[b-pqfa6xgszb] {
    color: #e6bd63;
}

.full-tree-content h2[b-pqfa6xgszb] {
    margin: 0.55rem 0 0;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 500;
}

.full-tree-content p[b-pqfa6xgszb] {
    max-width: 680px;
    margin: 0.85rem 0 0;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.65;
}

.full-tree-content .view-instructions[b-pqfa6xgszb] {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
}

.document-features[b-pqfa6xgszb] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

    .document-features span[b-pqfa6xgszb] {
        padding: 0.38rem 0.68rem;
        border: 1px solid rgba(255, 255, 255, 0.17);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.055);
        color: rgba(255, 255, 255, 0.86);
        font-size: 0.76rem;
    }

.full-tree-button[b-pqfa6xgszb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 1.25rem;
    border: 1px solid #e1b756;
    border-radius: 11px;
    background: #d2a23d;
    color: #15364b;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(10, 27, 38, 0.18);
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

    .full-tree-button:hover[b-pqfa6xgszb] {
        transform: translateY(-3px);
        background: #e4ba5b;
        color: #15364b;
        text-decoration: none;
        box-shadow: 0 14px 30px rgba(10, 27, 38, 0.24);
    }

.button-arrow[b-pqfa6xgszb] {
    font-size: 1.05rem;
}

/* Napomena */

.data-note[b-pqfa6xgszb] {
    width: min(900px, 100%);
    margin: 2.5rem auto 0;
    padding: 2rem 2.25rem;
    border-left: 4px solid var(--tree-gold);
    border-radius: 0 15px 15px 0;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 32px rgba(28, 46, 55, 0.07);
}

    .data-note h2[b-pqfa6xgszb] {
        margin: 0.55rem 0 1rem;
        color: var(--tree-green);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 500;
    }

    .data-note p[b-pqfa6xgszb] {
        margin: 0 0 0.8rem;
        color: #59656d;
        line-height: 1.75;
    }

        .data-note p:last-child[b-pqfa6xgszb] {
            margin-bottom: 0;
        }

/* Tablet */

@media (max-width: 900px) {
    .full-tree-section[b-pqfa6xgszb] {
        grid-template-columns: auto 1fr;
    }

    .full-tree-button[b-pqfa6xgszb] {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Telefon */

@media (max-width: 640px) {
    .tree-page[b-pqfa6xgszb] {
        padding: 3rem 0.8rem 4rem;
    }

    .tree-header[b-pqfa6xgszb] {
        margin-bottom: 2.5rem;
    }

    .ancestor-card[b-pqfa6xgszb] {
        padding: 1.55rem 1rem 1.4rem;
    }

    .tree-line[b-pqfa6xgszb] {
        height: 56px;
    }

        .tree-line[b-pqfa6xgszb]::before {
            height: 41px;
        }

    .full-tree-section[b-pqfa6xgszb] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.6rem;
        text-align: center;
    }

    .pdf-symbol[b-pqfa6xgszb] {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .document-features[b-pqfa6xgszb] {
        justify-content: center;
    }

    .full-tree-button[b-pqfa6xgszb] {
        grid-column: auto;
    }

    .data-note[b-pqfa6xgszb] {
        padding: 1.6rem;
    }
}
/* /Components/Shared/PortalLogo.razor.rz.scp.css */
.portal-logo[b-qu7nbh1vl2] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg[b-qu7nbh1vl2] {
    width: 58px;
    height: 68px;
}

.logo-body[b-qu7nbh1vl2] {
    fill: #8d1f24;
    stroke: #c8a45d;
    stroke-width: 2;
}

.logo-leaf[b-qu7nbh1vl2] {
    fill: #2f6d46;
}

.logo-letter[b-qu7nbh1vl2] {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: bold;
    fill: #f8f2dc;
}
