/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-bwrf3sk1se] {
    position: relative;
    display: flex;
    flex-direction: column;
}


.min-height[b-bwrf3sk1se]{
    min-height: 100vh;
}
main[b-bwrf3sk1se] {
    flex: 1;
}

.sidebar[b-bwrf3sk1se] {
    background-image: linear-gradient(180deg, #123524 0%, #064e3b 70%);
}

.top-row[b-bwrf3sk1se] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-bwrf3sk1se]  a, .top-row[b-bwrf3sk1se]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-bwrf3sk1se]  a:hover, .top-row[b-bwrf3sk1se]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-bwrf3sk1se]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-bwrf3sk1se] {
        justify-content: space-between;
    }

    .top-row[b-bwrf3sk1se]  a, .top-row[b-bwrf3sk1se]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-bwrf3sk1se] {
        flex-direction: row;
    }

    .sidebar[b-bwrf3sk1se] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-bwrf3sk1se] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-bwrf3sk1se]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-bwrf3sk1se], article[b-bwrf3sk1se] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-bwrf3sk1se] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-bwrf3sk1se] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-4h8uehbfjl],
.components-reconnect-repeated-attempt-visible[b-4h8uehbfjl],
.components-reconnect-failed-visible[b-4h8uehbfjl],
.components-pause-visible[b-4h8uehbfjl],
.components-resume-failed-visible[b-4h8uehbfjl],
.components-rejoining-animation[b-4h8uehbfjl] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-4h8uehbfjl],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-4h8uehbfjl],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-4h8uehbfjl],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-4h8uehbfjl],
#components-reconnect-modal.components-reconnect-retrying[b-4h8uehbfjl],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-4h8uehbfjl],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-4h8uehbfjl],
#components-reconnect-modal.components-reconnect-failed[b-4h8uehbfjl],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-4h8uehbfjl] {
    display: block;
}


#components-reconnect-modal[b-4h8uehbfjl] {
    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-4h8uehbfjl 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-4h8uehbfjl 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-4h8uehbfjl 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-4h8uehbfjl]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-4h8uehbfjl 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-4h8uehbfjl {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-4h8uehbfjl {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-4h8uehbfjl {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-4h8uehbfjl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-4h8uehbfjl] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-4h8uehbfjl] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-4h8uehbfjl] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-4h8uehbfjl] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-4h8uehbfjl] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-4h8uehbfjl] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-4h8uehbfjl 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-4h8uehbfjl] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-4h8uehbfjl {
    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/Landing.razor.rz.scp.css */
.landing-page[b-vppw2c2oec]{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-content[b-vppw2c2oec] {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: 2rem 1.5rem;

    display: flex;
    flex-direction: column;
}

/* BRAND */

.brand[b-vppw2c2oec] {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    margin-bottom: 4rem;
}

.brand-mark[b-vppw2c2oec] {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #111827;
    color: white;

    font-size: 1.2rem;
    font-weight: 800;
}

.brand-name[b-vppw2c2oec] {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

/* HERO */

.hero[b-vppw2c2oec] {
    margin-bottom: 2.5rem;
}

.hero-badge[b-vppw2c2oec] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;

    padding: 0.4rem 0.75rem;

    border-radius: 999px;

    background: rgba(6, 78, 59, 0.08);
    color: #064e3b;

    font-size: 0.8rem;
    font-weight: 600;

    margin-bottom: 1rem;
}

.hero h1[b-vppw2c2oec] {
    margin: 0;

    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 0.98;

    font-weight: 800;
    letter-spacing: -0.05em;

    color: #111827;
}

.hero h1 span[b-vppw2c2oec] {
    color: #064e3b;
}

.hero p[b-vppw2c2oec] {
    max-width: 340px;

    margin: 1.5rem 0 0;

    color: #6b7280;

    font-size: 1rem;
    line-height: 1.6;
}
/* ACTIONS */

.landing-actions[b-vppw2c2oec] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-primary[b-vppw2c2oec],
.landing-secondary[b-vppw2c2oec] {
    width: 100%;
    min-height: 58px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 1.25rem;

    font-size: 1rem;
    font-weight: 600;

    transition:
            transform 0.15s ease,
            box-shadow 0.15s ease;
}

/* FOOTER */

.landing-footer[b-vppw2c2oec] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 3rem;

    color: #9ca3af;
    font-size: 0.8rem;
}

/* DECORATIONS */

.landing-decoration[b-vppw2c2oec] {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}

.landing-decoration-1[b-vppw2c2oec] {
    top: -150px;
    right: -120px;

    background: rgba(6, 78, 59, 0.12);
}

.landing-decoration-2[b-vppw2c2oec] {
    bottom: -150px;
    left: -120px;

    background: rgba(18, 53, 36, 0.10);
}

.social-link[b-vppw2c2oec] {
    display: flex;
    align-items: center;
    gap: .75rem;

    color: inherit;
    text-decoration: none;

    transition: opacity .2s ease;
}

.social-link:hover[b-vppw2c2oec] {
    opacity: .7;
}

.social-link i[b-vppw2c2oec] {
    font-size: 1.25rem;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.security-page[b-7ognkw58vy] {
    min-height: 100dvh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1.5rem;
}

.security-card[b-7ognkw58vy] {
    width: 100%;
    max-width: 420px;

    padding: 2rem;

    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;

    box-shadow:
            0 10px 40px rgba(0, 0, 0, .06);
}

.security-icon[b-7ognkw58vy] {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1.5rem;

    border-radius: 16px;

    background: rgba(13, 110, 253, .1);
    color: #0d6efd;

    font-size: 1.7rem;
}

.security-card h1[b-7ognkw58vy] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.security-card > p[b-7ognkw58vy] {
    margin-bottom: 2rem;
}
/* /Components/Pages/MembersList.razor.rz.scp.css */
.members-list[b-tma1ked9oo] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.member-row[b-tma1ked9oo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    cursor: pointer;
    
    padding: 1rem;
    background: white;

    border: 1px solid #e9ecef;
    border-radius: 14px;
}

.member-info[b-tma1ked9oo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.member-icon[b-tma1ked9oo] {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.member-details[b-tma1ked9oo] {
    min-width: 0;
}

.member-name[b-tma1ked9oo] {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.member-date[b-tma1ked9oo] {
    margin-top: 0.2rem;
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.3;
}

.member-status[b-tma1ked9oo] {
    flex-shrink: 0;
}

.member-status .btn[b-tma1ked9oo] {
    border-radius: 10px;
}

.member-status .badge[b-tma1ked9oo] {
    font-size: 0.75rem;
    padding: 0.5rem 0.65rem;
}
/* /Components/Pages/Profile.razor.rz.scp.css */
.profile-page[b-veyr8ukka3] {
    background: linear-gradient(
            135deg,
            #eef2ff 0%,
            #f8f9ff 50%,
            #ffffff 100%
    );
}

.profile-card[b-veyr8ukka3] {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.profile-avatar[b-veyr8ukka3] {
    width: 88px;
    height: 88px;
    margin: 0 auto 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef2ff;
    color: var(--bs-primary);

    font-size: 2.5rem;
}

.profile-info[b-veyr8ukka3] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-info-item[b-veyr8ukka3] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-info-icon[b-veyr8ukka3] {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f8f9fa;
    color: var(--bs-primary);

    font-size: 1.25rem;
}

.profile-info-label[b-veyr8ukka3] {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
}

.profile-info-value[b-veyr8ukka3] {
    font-weight: 500;
    word-break: break-word;
}

.approval-info[b-veyr8ukka3] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    background: var(--bs-light);
}

.approval-info-icon[b-veyr8ukka3] {
    width: 38px;
    height: 38px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background: rgba(var(--bs-success-rgb), 0.1);
    color: var(--bs-success);
    font-size: 20px;
}

.approval-info-content[b-veyr8ukka3] {
    min-width: 0;
}

.approval-info-label[b-veyr8ukka3] {
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
    margin-bottom: 2px;
}

.approval-info-value[b-veyr8ukka3] {
    font-weight: 600;
    color: var(--bs-body-color);
}

/* ============================= */
/* MEMBER OPPORTUNITIES          */
/* ============================= */

.member-opportunities[b-veyr8ukka3] {
    width: 100%;
}

.profile-option-card[b-veyr8ukka3] {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px;

    border: 1px solid var(--bs-border-color);
    border-radius: 16px;

    background: var(--bs-body-bg);

    transition: transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.profile-option-card:hover[b-veyr8ukka3] {
    transform: translateY(-2px);

    border-color: rgba(var(--bs-primary-rgb), 0.35);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


.profile-option-icon[b-veyr8ukka3] {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(var(--bs-primary-rgb), 0.1);

    color: var(--bs-primary);

    font-size: 23px;
}


.profile-option-content[b-veyr8ukka3] {
    flex: 1;
    min-width: 0;
}


.profile-option-title[b-veyr8ukka3] {
    font-size: 1rem;
    font-weight: 700;

    margin-bottom: 4px;

    color: var(--bs-body-color);
}


.profile-option-text[b-veyr8ukka3] {
    font-size: 0.9rem;
    line-height: 1.5;

    color: var(--bs-secondary-color);
}


/* ============================= */
/* VOLUNTEER INFO                */
/* ============================= */

.volunteer-info[b-veyr8ukka3] {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(var(--bs-primary-rgb), 0.1);

    color: var(--bs-primary);

    font-size: 14px;

    cursor: help;
}


/* ============================= */
/* MOBILE                        */
/* ============================= */

@media (max-width: 576px) {

    .profile-option-card[b-veyr8ukka3] {
        padding: 15px;
        gap: 12px;
    }

    .profile-option-icon[b-veyr8ukka3] {
        width: 40px;
        height: 40px;

        font-size: 20px;
    }
}
/* /Components/Pages/Register.razor.rz.scp.css */
.register-card[b-2y9oy10yto] {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.register-card .form-label[b-2y9oy10yto] {
    font-weight: 500;
}

.register-card .form-control[b-2y9oy10yto],
.register-card .form-select[b-2y9oy10yto] {
    border-radius: 12px;
}

.register-card .btn[b-2y9oy10yto] {
    min-height: 56px;
    border-radius: 12px;
    font-weight: 600;
}

.validation-message[b-2y9oy10yto] {
    color: var(--bs-danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
/* /Components/Pages/SecurityCheck.razor.rz.scp.css */
.security-page[b-wfppw2384w] {
    min-height: 100dvh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1.5rem;
}

.security-card[b-wfppw2384w] {
    width: 100%;
    max-width: 420px;

    padding: 2rem;

    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;

    box-shadow:
            0 10px 40px rgba(0, 0, 0, .06);
}

.security-icon[b-wfppw2384w] {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1.5rem;

    border-radius: 16px;

    background: rgba(13, 110, 253, .1);
    color: #0d6efd;

    font-size: 1.7rem;
}

.security-card h1[b-wfppw2384w] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.security-card > p[b-wfppw2384w] {
    margin-bottom: 2rem;
}
/* /Components/Pages/Volunteer.razor.rz.scp.css */
.volunteers-page[b-te4o0y1t99] {
    min-height: 100vh;
}


/* ================================= */
/* HERO                              */
/* ================================= */

.volunteer-hero[b-te4o0y1t99] {
    padding: 80px 0 70px;
}

.volunteer-hero-content[b-te4o0y1t99] {
    max-width: 760px;
    margin: 0 auto;
}

.volunteer-hero-icon[b-te4o0y1t99] {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 20px;

    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);

    font-size: 36px;
}

.volunteer-eyebrow[b-te4o0y1t99],
.section-eyebrow[b-te4o0y1t99] {
    display: block;

    margin-bottom: 8px;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--bs-primary);
}

.volunteer-hero h1[b-te4o0y1t99] {
    margin-bottom: 18px;

    font-size: clamp(2.2rem, 5vw, 3.7rem);
    font-weight: 800;

    line-height: 1.05;
}

.volunteer-hero-description[b-te4o0y1t99] {
    max-width: 680px;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.7;

    color: var(--bs-secondary-color);
}


/* ================================= */
/* SECTIONS                          */
/* ================================= */

.volunteer-section[b-te4o0y1t99] {
    padding: 65px 0;
}

.volunteer-section-alt[b-te4o0y1t99] {
    background: var(--bs-tertiary-bg);
}

.section-heading[b-te4o0y1t99] {
    max-width: 650px;
    margin-bottom: 35px;
}

.section-heading.text-center[b-te4o0y1t99] {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2[b-te4o0y1t99] {
    margin-bottom: 10px;

    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 750;
}

.section-heading p[b-te4o0y1t99] {
    margin-bottom: 0;

    line-height: 1.65;

    color: var(--bs-secondary-color);
}


/* ================================= */
/* BENEFITS                          */
/* ================================= */

.benefit-card[b-te4o0y1t99] {
    height: 100%;

    padding: 24px;

    border: 1px solid var(--bs-border-color);
    border-radius: 18px;

    background: var(--bs-body-bg);
}

.benefit-icon[b-te4o0y1t99] {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 13px;

    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);

    font-size: 24px;
}

.benefit-card h3[b-te4o0y1t99] {
    margin-bottom: 8px;

    font-size: 1.05rem;
    font-weight: 700;
}

.benefit-card p[b-te4o0y1t99] {
    margin: 0;

    font-size: 0.92rem;
    line-height: 1.6;

    color: var(--bs-secondary-color);
}


/* ================================= */
/* ROLES                             */
/* ================================= */

.volunteer-roles[b-te4o0y1t99] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.role-card[b-te4o0y1t99] {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 24px;

    overflow: hidden;

    border: 1px solid var(--bs-border-color);
    border-radius: 18px;

    background: var(--bs-body-bg);
}

.role-icon[b-te4o0y1t99] {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);

    font-size: 22px;
}

.role-content[b-te4o0y1t99] {
    position: relative;
    z-index: 1;
}

.role-content h3[b-te4o0y1t99] {
    margin-bottom: 7px;

    font-size: 1rem;
    font-weight: 700;
}

.role-content p[b-te4o0y1t99] {
    margin: 0;

    font-size: 0.9rem;
    line-height: 1.6;

    color: var(--bs-secondary-color);
}


/* ================================= */
/* GALLERY                           */
/* ================================= */

/* ================================= */
/* GALLERY                           */
/* ================================= */

.volunteer-gallery-categories[b-te4o0y1t99] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}


/* CARD */

.gallery-category-card[b-te4o0y1t99] {
    min-width: 0;
    padding: 16px;

    border: 1px solid var(--bs-border-color);
    border-radius: 18px;

    background: var(--bs-body-bg);

    overflow: hidden;
}


/* HEADER */

.gallery-category-header[b-te4o0y1t99] {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 14px;
}

.gallery-category-icon[b-te4o0y1t99] {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);

    font-size: 22px;
}

.gallery-category-header h3[b-te4o0y1t99] {
    margin: 0 0 3px;

    font-size: 1rem;
    font-weight: 700;
}

.gallery-category-header p[b-te4o0y1t99] {
    margin: 0;

    font-size: 0.82rem;
    line-height: 1.45;

    color: var(--bs-secondary-color);
}


/* ================================= */
/* MAIN IMAGE                        */
/* ================================= */

.gallery-image-wrapper[b-te4o0y1t99] {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 14px;

    background: var(--bs-tertiary-bg);
}

.gallery-main-image[b-te4o0y1t99] {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ================================= */
/* LEFT / RIGHT BUTTONS              */
/* ================================= */

.gallery-nav[b-te4o0y1t99] {
    position: absolute;
    top: 50%;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);
    color: #212529;

    font-size: 21px;

    transform: translateY(-50%);

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);

    z-index: 2;

    cursor: pointer;
}

.gallery-nav-left[b-te4o0y1t99] {
    left: 10px;
}

.gallery-nav-right[b-te4o0y1t99] {
    right: 10px;
}

.gallery-nav:active[b-te4o0y1t99] {
    transform:
            translateY(-50%)
            scale(0.93);
}


/* ================================= */
/* COUNTER                           */
/* ================================= */

.gallery-counter[b-te4o0y1t99] {
    position: absolute;

    left: 50%;
    bottom: 10px;

    padding: 5px 11px;

    border-radius: 999px;

    background: rgba(0, 0, 0, 0.65);
    color: white;

    font-size: 0.75rem;
    font-weight: 600;

    transform: translateX(-50%);

    backdrop-filter: blur(5px);
}


/* ================================= */
/* THUMBNAILS                        */
/* ================================= */

.gallery-thumbnails[b-te4o0y1t99] {
    display: flex;

    gap: 8px;

    margin-top: 10px;
    padding-bottom: 2px;

    overflow-x: auto;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

.gallery-thumbnails[b-te4o0y1t99]::-webkit-scrollbar {
    display: none;
}

.gallery-thumbnail[b-te4o0y1t99] {
    width: 68px;
    height: 52px;

    flex: 0 0 68px;

    padding: 2px;

    overflow: hidden;

    border: 2px solid transparent;
    border-radius: 10px;

    background: transparent;

    opacity: 0.65;

    cursor: pointer;

    transition:
            opacity 0.15s ease,
            border-color 0.15s ease,
            transform 0.15s ease;
}

.gallery-thumbnail img[b-te4o0y1t99] {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 6px;
}

.gallery-thumbnail.active[b-te4o0y1t99] {
    border-color: var(--bs-primary);
    opacity: 1;
}

.gallery-thumbnail:active[b-te4o0y1t99] {
    transform: scale(0.95);
}


/* ================================= */
/* TABLET                            */
/* ================================= */

@media (min-width: 768px) {

    .gallery-category-card[b-te4o0y1t99] {
        padding: 20px;
    }

    .gallery-category-icon[b-te4o0y1t99] {
        width: 48px;
        height: 48px;

        font-size: 24px;
    }

    .gallery-category-header h3[b-te4o0y1t99] {
        font-size: 1.1rem;
    }

    .gallery-category-header p[b-te4o0y1t99] {
        font-size: 0.88rem;
    }

    .gallery-thumbnail[b-te4o0y1t99] {
        width: 76px;
        height: 58px;

        flex-basis: 76px;
    }
}

.volunteer-video-card[b-te4o0y1t99] {
    max-width: 880px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1.25rem;
}

.volunteer-video-header[b-te4o0y1t99] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.volunteer-video-header h3[b-te4o0y1t99] {
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.volunteer-video-header p[b-te4o0y1t99] {
    margin-bottom: 0;
    color: var(--bs-secondary-color);
}

.volunteer-video-wrapper[b-te4o0y1t99] {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #000;
    aspect-ratio: 16 / 9;
}

.volunteer-video-wrapper video[b-te4o0y1t99] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ================================= */
/* DESKTOP                           */
/* ================================= */

@media (min-width: 992px) {

    .volunteer-gallery-categories[b-te4o0y1t99] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .gallery-category-card[b-te4o0y1t99] {
        padding: 16px;
    }

    .gallery-image-wrapper[b-te4o0y1t99] {
        aspect-ratio: 4 / 3;
    }

    .gallery-nav[b-te4o0y1t99] {
        width: 40px;
        height: 40px;
    }

    .gallery-category-card[b-te4o0y1t99] {
        transition:
                transform 0.15s ease,
                box-shadow 0.15s ease,
                border-color 0.15s ease;
    }

    .gallery-category-card:hover[b-te4o0y1t99] {
        transform: translateY(-3px);

        border-color:
                rgba(var(--bs-primary-rgb), 0.3);

        box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.06);
    }
}

.volunteer-gallery[b-te4o0y1t99] {
    display: grid;

    grid-template-columns:
        1.4fr 1fr;

    grid-template-rows:
        180px 180px;

    gap: 14px;
}

.gallery-placeholder[b-te4o0y1t99] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 180px;

    border: 1px dashed var(--bs-border-color);
    border-radius: 18px;

    background: var(--bs-tertiary-bg);

    color: var(--bs-secondary-color);
}

.gallery-placeholder i[b-te4o0y1t99] {
    font-size: 30px;
}

.gallery-placeholder span[b-te4o0y1t99] {
    font-size: 0.85rem;
}

.gallery-large[b-te4o0y1t99] {
    grid-row: span 2;
}


/* Kad ubaciš prave slike koristi ovo */

.volunteer-gallery img[b-te4o0y1t99] {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 18px;
}


/* ================================= */
/* JOIN CTA                          */
/* ================================= */

.join-card[b-te4o0y1t99] {
    display: flex;
    align-items: center;

    gap: 24px;

    padding: 30px;

    border: 1px solid
    rgba(var(--bs-primary-rgb), 0.2);

    border-radius: 22px;

    background:
            rgba(var(--bs-primary-rgb), 0.05);
}

.join-icon[b-te4o0y1t99] {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--bs-primary);
    color: white;

    font-size: 29px;
}

.join-content[b-te4o0y1t99] {
    flex: 1;
}

.join-content h2[b-te4o0y1t99] {
    margin-bottom: 7px;

    font-size: 1.4rem;
    font-weight: 750;
}

.join-content p[b-te4o0y1t99] {
    max-width: 650px;

    margin: 0;

    color: var(--bs-secondary-color);
}

.join-action[b-te4o0y1t99] {
    flex-shrink: 0;
}


/* ================================= */
/* HOVER                             */
/* ================================= */

.benefit-card[b-te4o0y1t99],
.role-card[b-te4o0y1t99] {
    transition:
            transform 0.15s ease,
            box-shadow 0.15s ease,
            border-color 0.15s ease;
}

.benefit-card:hover[b-te4o0y1t99],
.role-card:hover[b-te4o0y1t99] {
    transform: translateY(-3px);

    border-color:
            rgba(var(--bs-primary-rgb), 0.3);

    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.06);
}


/* ================================= */
/* TABLET / MOBILE                   */
/* ================================= */

@media (max-width: 991px) {

    .join-card[b-te4o0y1t99] {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .join-action[b-te4o0y1t99] {
        width: 100%;
    }

    .join-action .btn[b-te4o0y1t99] {
        width: 100%;
    }
}


@media (max-width: 767px) {

    .volunteer-hero[b-te4o0y1t99] {
        padding: 55px 0 45px;
    }

    .volunteer-section[b-te4o0y1t99] {
        padding: 45px 0;
    }

    .volunteer-roles[b-te4o0y1t99] {
        grid-template-columns: 1fr;
    }

    .volunteer-gallery[b-te4o0y1t99] {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-large[b-te4o0y1t99] {
        grid-row: auto;
    }

    .gallery-placeholder[b-te4o0y1t99] {
        min-height: 200px;
    }

    .join-card[b-te4o0y1t99] {
        padding: 22px;
    }
}


@media (max-width: 575px) {

    .volunteer-hero-icon[b-te4o0y1t99] {
        width: 60px;
        height: 60px;

        font-size: 29px;
    }

    .role-card[b-te4o0y1t99] {
        padding: 18px;
    }

    .benefit-card[b-te4o0y1t99] {
        padding: 20px;
    }

    .join-icon[b-te4o0y1t99] {
        width: 50px;
        height: 50px;

        font-size: 24px;
    }
}
