    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        /* --gold: #C9A84C; */
        --gold: #d6b761;
        --gold-light: #E8D5A3;
        --gold-pale: #F5EDD6;
        --ink: #69513a;
        /* --ink: #65492d; */
        /*--ink: #453321;*/
        /* --ink: #6B6258; */
        --ink-mid: #2E2416;
        --parchment: #FAF6EE;
        --crimson: #8B1A1A;
        --stone: #6B6258;
        --stone-mid: #aaa197;
        --stone-light: #E8E2D9;
        --cross-gold: #B8892E;

        --deep-espresso: #3f3126;
    }

    body {
        font-family: 'PT Serif', Georgia, serif;
        background: var(--parchment);
        color: var(--ink);
        line-height: 1.7;
        font-size: 17px;
    }

    nav {
        background: var(--ink);
        padding: 0 2.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100px;
        position: sticky;
        top: 0;
        z-index: 100;
        transition: transform 0.3s ease;
        /* border-bottom: 1px solid rgba(201, 168, 76, 0.3); */
    }

    nav.nav-hidden {
        transform: translateY(-100%);
    }

    .nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-title {
        font-family: 'PT Serif', serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--gold-light);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        line-height: 1.3;
    }

    .nav-title a {
        text-decoration: none;
        color: var(--gold-light);
    }

    .nav-logo {
        width: 60px;
        margin-right: 10px;
        /* padding-right: 20px; */
    }

    .nav-logo-mobile {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        gap: 2rem;
        list-style: none;
        padding: 2rem;

        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .nav-links li {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .nav-links a {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 400;
        color: rgba(232, 213, 163, 0.7);
        text-decoration: none;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

    .nav-pismo {
        padding: 0.7rem;
        background-color: rgba(232, 213, 163, 0.7);
        color: var(--ink-mid) !important;
        border-radius: 4px;

    }

    .nav-links a:hover {
        color: var(--gold);
    }

    .nav-toggle {
        display: none;
    }












    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;
    }

    .nav-dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 4px;
    }


    .nav-caret {
        font-size: 11px;
        transition: transform 0.2s;
        opacity: 0.8;
    }

    .nav-dropdown:hover .nav-caret {
        transform: rotate(180deg);
    }

    .nav-dropdown-expand {
        display: none;
    }

    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%) translateY(-6px);
        background: var(--ink);
        border: 1px solid rgba(201, 168, 76, 0.25);
        border-radius: 4px;
        min-width: 220px;
        padding: 0.4rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s, transform 0.2s;
        z-index: 200;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        /* transform: translateX(-50%) translateY(0); */
    }

    .nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: var(--ink);
        border-left: 1px solid rgba(201, 168, 76, 0.25);
        border-top: 1px solid rgba(201, 168, 76, 0.25);
    }

    .nav-dropdown-menu li {
        list-style: none;
    }

    .nav-dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 3px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: 0.04em;
        color: rgba(232, 213, 163, 0.75);
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
        white-space: nowrap;
    }

    .nav-dropdown-menu a:hover {
        background: rgba(201, 168, 76, 0.1);
        color: var(--gold);
    }

    .nav-dropdown-menu a i {
        font-size: 15px;
        color: var(--gold);
        opacity: 0.7;
        flex-shrink: 0;
    }


    @media (max-width: 1150px) {

        .nav-link-solo {
            margin-bottom: 15px;
        }

        .nav-dropdown-menu {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .nav-caret {
            display: none;
        }

        .nav-dropdown {
            display: flex;
            flex-direction: column !important;
            align-items: flex-start !important;
            justify-content: center;
        }

        .nav-dropdown-row {
            display: flex;
            flex-direction: row;
        }

        .nav-dropdown-trigger {
            justify-content: space-between;
            width: 100%;
        }

        .nav-dropdown-label {
            flex: 1;
        }


        .nav-dropdown-expand {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 3px;
            border: 1px solid rgba(201, 168, 76, 0.3);
            background: transparent;
            color: var(--gold);
            cursor: pointer;
            flex-shrink: 0;
            transition: transform 0.25s, background 0.15s;
        }

        .nav-dropdown-expand i {
            font-size: 14px;
            transition: transform 0.25s;
        }

        .nav-dropdown.mobile-open .nav-dropdown-expand {
            background: rgba(201, 168, 76, 0.12);
        }

        .nav-dropdown.mobile-open .nav-dropdown-expand i {
            transform: rotate(45deg);
        }


        .nav-dropdown-menu {
            position: static;
            transform: none;
            opacity: 1;
            pointer-events: none;
            box-shadow: none;
            border: none;
            background: transparent;
            padding: 0;
            margin: 15px 0 0 0;
            min-width: 0;

            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .nav-dropdown-menu::before {
            display: none;
        }

        .nav-dropdown.mobile-open .nav-dropdown-menu {
            max-height: 220px;
            pointer-events: auto;
        }

        .nav-dropdown-menu a {
            /* color: rgba(232, 213, 163, 0.55); */
            font-size: 13px;
            padding: 9px 10px 9px 1.5rem;
            font-weight: 300 !important;
            text-transform: none !important;
        }

        .nav-dropdown-menu a:hover {
            background: rgba(201, 168, 76, 0.08);
        }
    }







    @media (max-width: 1150px) {

        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 3px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 25px;
            height: 2px;
            /* color: var(--gold-light); */
            background: var(--gold-light);
            display: block;
            transition: 0.3s;
        }


        .nav-links {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            height: 100dvh;
            width: 420px;
            background: var(--ink);

            display: flex;
            flex-direction: column;
            align-items: flex-start;

            gap: 10px;
            padding-top: calc(2rem + env(safe-area-inset-top)) !important;
            padding-bottom: calc(2rem + env(safe-area-inset-bottom)) !important;
            padding-left: 2rem !important;
            padding-right: 2rem !important;
            list-style: none;

            transform: translateX(-100%);
            transition: transform 0.35s ease;
            z-index: 1000;

            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        body.nav-open {
            overflow: hidden;
        }

        .nav-links li a {
            font-size: 15px;
            font-weight: 600;
        }


        nav.active .nav-links {
            transform: translateX(0);
        }



        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            transition: 0.3s ease;
            z-index: 999;
        }

        nav.active~.nav-overlay {
            opacity: 1;
            pointer-events: auto;
        }
    }

    nav.active .nav-toggle span:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }

    nav.active .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    nav.active .nav-toggle span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }

    .nav-overlay {
        z-index: 900;
    }

    .nav-links {
        position: fixed;
        z-index: 1001;
    }

    .nav-toggle {
        z-index: 1100;
    }


    .hero {
        /* background: var(--ink); */
        /* background: var(--stone); */
        /* background-image: url("PICS/HERO-4.png");
        background-position: center;
        background-size: cover;
        padding: 5rem 2.5rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        height: 300px; */
    }


    .hero {
        height: 35vh;
        overflow: hidden;
        position: relative;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        transform-origin: center;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
    }

    .hero-text {
        position: absolute;
        bottom: 15%;
        left: 2rem;
        right: 2rem;

        z-index: 2;
    }

    .hero-text h1 {
        font-family: "PT Serif", serif !important;
        /* font-size: 3rem; */
        font-weight: 300 !important;
        color: var(--gold-light) !important;

        text-align: center;
    }

    .reveal-text {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(20px);
        text-transform: uppercase;
    }

    .reveal-text span {
        display: inline-block;
    }

    .hero-ornament {
        font-size: 48px;
        color: var(--gold);
        opacity: 0.15;
        position: absolute;
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        letter-spacing: 2rem;
        pointer-events: none;
    }

    .hero-eyebrow {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.5rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
        content: '';
        width: 40px;
        height: 1px;
        background: var(--gold);
        opacity: 0.5;
    }

    .hero h1 {
        font-family: 'PT Serif', serif;
        font-size: clamp(1.8rem, 4vw, 3.2rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        letter-spacing: 0.03em;

        display: none;
    }

    .hero h1 span {
        color: var(--gold);
    }


    .hero-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-divider span {
        color: var(--gold-pale);
        font-size: 1.2rem;
        opacity: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-divider::before,
    .hero-divider::after {
        content: '';
        width: 80px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--gold-pale));
    }

    .hero-divider::after {
        background: linear-gradient(to left, transparent, var(--gold-pale));
    }

    .hero-info {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .hero-info-item {
        text-align: center;
    }

    .hero-info-item .label {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold);
        opacity: 0.7;
        display: block;
        margin-bottom: 0.25rem;
    }

    .hero-info-item .value {
        font-family: 'PT Serif', serif;
        font-size: 1rem;
        color: var(--gold-light);
    }

    .feast-ticker {
        /* background: var(--crimson); */
        background: var(--deep-espresso);
        padding: 0.6rem 2.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        overflow: hidden;

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

    .ticker-label {
        font-family: 'PT Serif', serif;
        font-size: 13px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold-light);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .ticker-divider {
        color: var(--gold);
        opacity: 0.5;
        flex-shrink: 0;
    }

    .ticker-text {
        font-family: 'PT Serif', serif;
        font-size: 14px;
        /* color: rgba(255, 255, 255, 0.9); */
        color: var(--gold-light);
        font-style: italic;
        text-align: center;
    }

    .ticker-socials-main,
    .ticker-socials {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    /* .ticker-socials {
        padding: 0.01rem 1rem;
        background-color: var(--stone);
        border-radius: 4px;
    } */

    .ticker-socials i,
    .ticker-socials a {
        text-decoration: none;
        color: var(--gold-pale);
        font-weight: 400;
        font-size: 20px;
        /* <-- ovaj upravlja fontom */
        background: none;
    }


    .ticker-social-icon {
        width: 40px;
        height: 40px;
        color: var(--gold-pale) !important;
        background: none !important;
        border: none !important;
        margin-bottom: 2px;

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






    .liturgy-hero-a {
        width: 100%;
        margin: 0 auto;
        padding: 1rem 2.5rem;
        background: var(--stone-light);
        /* border: 1px solid var(--stone-light); */
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .liturgy-hero-label {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 8px;
    }

    .liturgy-hero-value {
        font-family: 'PT Serif', serif;
        font-size: 16px;
        line-height: 1.15;
        color: var(--ink-mid);
        font-weight: 600;
        text-transform: uppercase;
    }

    .liturgy-hero-time {
        color: var(--cross-gold);
    }

    .liturgy-hero-name {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: var(--ink);
        margin-top: 6px;
        font-style: italic;
    }

    .liturgy-hero-side {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        /* gap: 10px; */
    }

    .liturgy-status-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 1px solid var(--cross-gold);
        border-radius: 3px;
        padding: 5px 12px;
    }

    .liturgy-status-pill span:last-child {
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        letter-spacing: 0.03em;
        color: var(--ink-mid);
        font-weight: 600;
        text-transform: uppercase;
    }

    .liturgy-status-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        display: inline-block;
    }

    .status-open .liturgy-status-dot {
        background: var(--cross-gold);
    }

    .status-open {
        border-color: var(--cross-gold);
    }

    .status-closed .liturgy-status-dot {
        background: var(--crimson);
    }

    .status-closed {
        border-color: var(--stone-mid);
    }

    .liturgy-hero-detail {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        color: var(--ink);
        font-style: italic;
        margin-top: 8px;
    }

    .web-link-liturgije {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.03em;
        color: var(--stone);
        font-weight: 500;
        text-transform: uppercase;
        /* text-decoration: none; */
    }


    .tajne-contact-cta {
        background: var(--parchment);
        padding: 1rem 2.5rem;
        display: flex;
        align-items: center;
        gap: 1.25rem;
        flex-wrap: wrap;
        /* margin-top: 1rem; */
        border-bottom: 1px solid var(--stone-light);
        border-top: 1px solid var(--stone-light);
    }


    .tajne-contact-text {
        flex: 1;
        min-width: 200px;
    }

    .tajne-contact-title {
        font-family: 'PT Serif', serif;
        text-transform: uppercase;
        font-size: 1rem;
        font-weight: 600;
        color: var(--stone);
        margin-bottom: 3px;
    }

    .tajne-contact-sub {
        font-family: 'PT Serif', serif;
        font-style: italic;
        font-size: 15px;
        color: #000;
    }

    /* .tajne-contact-sub-span {
        font-weight: 600;
    } */


    .tajne-adresa {
        text-decoration: none;
        /* font-weight: 600; */
        color: var(--cross-gold);

    }

    .tajne-contact-actions {
        display: flex;
        gap: 0.65rem;
        flex-wrap: wrap;
    }

    .tajne-contact-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--cross-gold);
        /* background: var(--gold-light); */
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 3px;
        white-space: nowrap;
    }

    .tajne-contact-btn-outline {
        background: transparent;
        color: var(--ink-mid);
        border: 1px solid rgba(107, 98, 98, 0.4);
    }

    @media (max-width: 900px) {
        .tajne-contact-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;

            padding: 30px;
        }
    }


    /* .web-link-liturgije i {
        font-size: 0.75rem;
        color: var(--cross-gold);
    } */

    /* .web-link-liturgije {
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        color: var(--ink-mid);
        text-decoration: none;
        border-bottom: 1px solid var(--ink-mid);
        padding-bottom: 2px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.25s ease, border-color 0.25s ease;
    }

    .web-link-liturgije:hover {
        color: var(--cross-gold);
        border-color: var(--cross-gold);
    }

    .web-link-liturgije i {
        color: var(--cross-gold);
    } */

    @media (max-width: 700px) {
        .liturgy-hero-a {
            flex-direction: column;
            align-items: center;
            padding: 1.5rem 1.5rem;
            text-align: center;
            gap: 25px;
        }

        .liturgy-hero-side {
            align-items: center;
            width: 100%;
        }
    }




    main {
        width: 100%;
        margin: 0;
        padding: 0px;
    }


    .main-grid {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 0;
        max-width: 100%;
    }





    .saint-section {
        padding: 3rem 2.5rem;
        /* border-bottom: 1px solid var(--stone-light); */
    }

    .section-eyebrow {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--crimson);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .section-eyebrow::after {
        content: '';
        flex: 1;
        max-width: 5000px;
        height: 1px;
        background: var(--crimson);
        opacity: 0.4;
    }

    .section-title {
        font-family: 'PT Serif', serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 1.5rem;
        letter-spacing: 0.02em;
    }

    .section-title-bigger {
        font-family: 'PT Serif', serif;
        font-size: 30px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 1.5rem;
        letter-spacing: 0.02em;
    }


    .zitje-card {

        background: #fff;
        border: 1px solid var(--stone-light);
        border-left: 2px solid var(--crimson);
        border-radius: 4px;
        padding: 1.5rem;
        margin-top: 30px;
    }


    .saint-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 1.5rem;
        background: #fff;
        border: 1px solid var(--stone-light);
        border-left: 3px solid var(--gold);
        border-radius: 4px;
        padding: 1.5rem;

        margin-top: 20px;
    }

    .saint-icon {
        width: 120px;
        height: 160px;
        background: var(--ink-mid);
        border-radius: 3px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .saint-icon-index {
        width: 120px;
        height: 160px;
        background: var(--ink-mid);
        border-radius: 3px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .saint-icon-index img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .saint-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .icon-gold-halo {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        border: 2px solid var(--gold);
        position: absolute;
        top: 22px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.4;
    }

    .icon-figure {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 55px;
        height: 100px;
        background: rgba(201, 168, 76, 0.12);
        border-radius: 28px 28px 0 0;
        border-top: 1px solid rgba(201, 168, 76, 0.4);
    }

    .icon-cross-small {
        position: absolute;
        top: 10px;
        right: 10px;
        color: var(--gold);
        font-size: 14px;
        opacity: 0.5;
    }

    .saint-name {
        font-family: 'PT Serif', serif;
        font-size: 1.1em;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 0.25rem;
        margin-top: 10px;
    }

    #saint-zitije {
        max-height: 200px;
        overflow: hidden;
        line-height: 1.6;
        position: relative;
    }

    #saint-zitije::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to bottom, transparent, white);
        pointer-events: none;
    }

    #saint-zitije.expanded {
        max-height: none;
    }

    #saint-zitije.expanded::after {
        display: none;
    }

    .saint-zitije-datumi {
        letter-spacing: 1px !important;
    }

    .zitije-toggle {
        width: 100%;
        height: 30px;

        font-family: 'Inter', sans-serif;
        font-size: 12px;
        text-transform: uppercase;
        background: none;
        color: var(--crimson);
        /* border-top: 1px solid var(--crimson); */
        border-top: none;
        border-bottom: none;
        border-left: none;
        border-right: none;
        padding: 2px 8px;
        border-radius: 2px;
        margin-bottom: 0.75rem;
        opacity: 0.7;

    }

    .zitije-caret {
        color: var(--crimson);
        font-size: 22px;
        font-style: oblique;

        display: inline-block;
        transition: transform 0.3s ease;
        animation: caret-bounce 1.2s infinite ease-in-out;
        /* padding: 5px 10px;
        border: 1px solid var(--crimson);
        border-radius: 3px; */
    }

    @keyframes caret-bounce {

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

        50% {
            transform: translateY(-4px);
        }
    }

    #saint-zitije.expanded .zitije-caret {
        transform: rotate(180deg);
        animation: none;
    }

    .saint-dates {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        color: var(--stone);
        letter-spacing: 0.05em;
        margin-bottom: 0.75rem;
    }

    .saint-feast {
        display: inline-block;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        background: var(--gold-pale);
        color: var(--crimson);
        border: 1px solid var(--gold-light);
        padding: 2px 8px;
        border-radius: 2px;
        margin-bottom: 0.75rem;
    }

    .saint-bio {
        font-size: 15px;
        color: var(--ink-mid);
        line-height: 1.75;
        font-family: 'Inter', sans-serif;
    }

    .saint-troparion {
        margin-top: 1rem;
        padding: 0.75rem 0rem;
        /* border-left: 2px solid var(--gold); */
        background: none;
        border-radius: 0 3px 3px 0;
    }

    .saint-troparion .troparion-label {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 0.25rem;
    }

    .troparion-label a {
        font-style: normal;
        font-weight: 600;
        text-decoration: none;
        color: var(--stone);
    }

    .saint-troparion p {
        font-style: italic;
        font-size: 14px;
        color: var(--ink-mid);
        line-height: 1.65;
    }



    .quote-section {
        background: var(--parchment);
        /* border-radius: 6px; */
        padding: 2.5rem 2.75rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 0px;
    }

    /* .quote-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background: var(--gold);
        opacity: 0.4;
    } */

    /* .quote-eyebrow {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.85rem;
    } */

    /* .quote-eyebrow::before,
    .quote-eyebrow::after {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--gold);
        opacity: 0.5;
    } */

    .quote-mark {
        font-family: 'PT Serif', serif;
        font-size: 2.6rem;
        color: var(--gold);
        opacity: 0.7;
        line-height: 0.4;
        margin-top: 1.7rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .quote-text {
        font-family: 'PT Serif', serif;
        font-style: italic;
        font-size: 18px;
        color: var(--stone);
        line-height: 1.55;
        max-width: 520px;
        margin: 0 auto 1.25rem;
    }

    .quote-source {
        font-family: 'PT Serif', serif;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: var(--cross-gold);
    }

    .quote-source-detail {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.06em;
        color: var(--gold);
        margin-top: 3px;
        text-transform: uppercase;
    }

    @media (max-width: 600px) {
        .quote-section {
            padding: 2rem 1.5rem;
        }

        .quote-text {
            font-size: 1.15rem;
        }
    }


    .news-section {
        /* padding: 3rem 2.5rem; */
    }

    .news-grid {
        display: grid;
        gap: 1.5rem;
    }

    .news-grid-dedicated {
        display: grid;
        gap: 1.5rem;
        margin: 15px;
        padding: 15px;
    }

    .news-card {
        background: #fff;
        border: 1px solid var(--stone-light);
        border-radius: 4px;
        overflow: hidden;
        display: grid;
        grid-template-columns: 90px 1fr;
        transition: border-color 0.2s;
        cursor: pointer;
    }

    .news-card:hover {
        border-color: var(--gold);
    }

    .news-img {
        background: var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1.5rem;
        opacity: 0.7;
        min-height: 100px;
    }

    .news-img.crimson-bg {
        background: var(--crimson);
    }

    .news-img.stone-bg {
        background: #3D3530;
    }

    .news-body {
        padding: 0.85rem 1rem;
    }

    .news-category {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--crimson);
        margin-bottom: 0.3rem;
    }

    .news-headline {
        font-family: 'PT Serif', serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.3;
        margin-bottom: 0.4rem;
    }

    .news-excerpt {
        font-size: 15px;
        color: var(--stone);
        line-height: 1.55;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }



    .news-footer {
        padding: 0.85rem 0rem;
        border-top: 1px solid var(--stone-light);
        background: var(--parchment);
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-bottom: -50px;
    }

    .link-liturgy-all {
        padding: 0rem 0.3rem;
    }

    /* .web-link-liturgije {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gold-light);
        text-decoration: none; */
    /* border: 1px solid rgba(139, 26, 26, 0.25); */
    /* border: 1px solid rgba(201, 168, 76, 0.25);
        padding: 5px 12px;
        border-radius: 2px;
        transition: background 0.15s;
    } */
    /* 
    .web-link-liturgije:hover {
        background: rgba(139, 26, 26, 0.06);
    }

    .web-link-liturgije i {
        font-size: 13px;
    } */

    .web-link-news {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--crimson);
        text-decoration: none;
        border: 1px solid rgba(139, 26, 26, 0.25);
        padding: 5px 12px;
        border-radius: 2px;
        transition: background 0.15s;
    }

    .web-link-news:hover {
        background: rgba(139, 26, 26, 0.06);
    }

    .web-link-news i {
        font-size: 13px;
    }

    .news-left {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: var(--ink-mid);
        opacity: 0.7;
        font-style: italic;
    }



    .news-date {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: var(--stone);
        margin-top: 0.4rem;
        opacity: 0.7;
    }

    .sidebar {
        border-left: 1px solid var(--stone-light);
        background: #FBF8F2;
    }

    .calendar-widget {
        padding: 1.5rem;
        border-bottom: 1px solid var(--stone-light);
    }

    .calendar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .cal-nav-btn {
        width: 28px;
        height: 28px;
        border: 1px solid var(--stone-light);
        background: #fff;
        border-radius: 3px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--stone);
        font-size: 14px;
        transition: border-color 0.2s, color 0.2s;
    }

    .cal-nav-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .cal-month {
        font-family: 'PT Serif', serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--ink);
        letter-spacing: 0.05em;
    }

    .cal-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
        margin-bottom: 0.75rem;
    }

    .cal-day-header {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--stone);
        text-align: center;
        padding: 4px 0;
        opacity: 0.7;
    }

    .cal-day {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        text-align: center;
        padding: 5px 2px;
        border-radius: 3px;
        cursor: pointer;
        color: var(--ink);
        position: relative;
        transition: background 0.15s;
    }

    .cal-day:hover {
        background: var(--gold-pale);
    }

    .cal-day.today {
        background: var(--gold);
        /* background-color: var(--stone); */
        color: #fff;
        font-weight: 500;
    }

    .cal-day.feast {
        color: var(--crimson);
        font-weight: 600;
    }

    .cal-day.feast::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--crimson);
    }

    .cal-day.today.feast {
        background: var(--crimson);
        color: var(--parchment);
    }

    .cal-day.empty {
        pointer-events: none;
    }

    .cal-day.other-month {
        color: var(--stone);
        opacity: 0.35;
    }

    .cal-legend {
        display: flex;
        gap: 1rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--stone-light);
    }

    .cal-legend-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: var(--stone);
    }

    .cal-legend-dot-red {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--crimson);
    }

    .cal-legend-dot-gold {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        /* background: var(--stone); */
    }

    .feasts-widget {
        padding: 1.5rem;
        border-bottom: 1px solid var(--stone-light);
    }

    .feasts-widget-type-red-bold {
        color: var(--crimson);
        font-weight: 600;
    }

    .feasts-widget-type-red {
        color: var(--crimson);
    }

    .feasts-widget-type-ink-mid {
        color: var(--ink-mid);
        font-weight: 300;
    }

    .feasts-widget-type {
        color: var(--ink-mid);
    }

    .sidebar-section-title {
        font-family: 'PT Serif', serif;
        text-transform: uppercase;
        font-size: 1rem;
        font-weight: 600;
        color: var(--ink);
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .sidebar-section-title i {
        color: var(--gold);
        font-size: 14px;
    }

    .feast-list {
        list-style: none;
    }

    .feast-item {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 0.6rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--stone-light);
        align-items: start;
    }

    .feast-item:last-child {
        border-bottom: none;
    }

    .feast-date-box-post {
        text-align: center;
        /* background: var(--ink); */
        background: #8B1A1A;
        border-radius: 3px;
        padding: 5px;
    }

    .feast-date-box-post .month {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
    }

    .feast-date-box-post .day {
        font-family: 'PT Serif', serif;
        text-transform: uppercase;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        display: block;
        line-height: 1.2;
    }

    .feast-date-box {
        text-align: center;
        /* background: var(--ink); */
        background: var(--stone);
        border-radius: 3px;
        padding: 5px;
    }

    .feast-date-box .month {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
    }

    .feast-date-box .day {
        font-family: 'PT Serif', serif;
        text-transform: uppercase;
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        display: block;
        line-height: 1.2;
        padding: 5px 0px;
    }

    .feast-name {
        font-family: 'PT Serif', serif;
        font-size: 15px;
        /* color: var(--ink); */
        line-height: 1.35;
    }

    .feast-type {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        /* color: var(--stone); */
        margin-top: 2px;
        display: block;
    }

    .feast-type.great {
        color: var(--crimson);
    }

    .schedule-widget {
        padding: 1.5rem;
    }

    .schedule-item {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 0.45rem 0;
        border-bottom: 1px solid var(--stone-light);
        font-size: 15px;
    }

    .schedule-item:last-child {
        border-bottom: none;
    }

    .schedule-service {
        font-family: 'PT Serif', serif;
        color: var(--ink);
    }

    .schedule-time {
        font-family: 'PT Serif', serif;
        font-size: 15px;
        color: var(--stone);
        font-weight: 600;
    }

    .schedule-day {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--crimson);
        padding: 0.3rem 0 0.1rem;
        margin-top: 0.3rem;
        font-weight: 500;
    }

    .month-report {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        color: var(--gold-pale);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        background-color: var(--crimson);
        padding: 0.5rem;
        margin-top: 0.3rem;
        border-radius: 4px;
        text-align: center;
    }

    footer {
        background: var(--ink);
        color: rgba(232, 213, 163, 0.6);
        padding: 2.5rem;
        text-align: center;
        border-top: 1px solid rgba(201, 168, 76, 0.2);
    }

    .footer-logo {
        /* font-size: 1.5rem;
        color: var(--gold);
        opacity: 0.6;
        margin-bottom: 0.75rem; */
        background-image: url("/images/logo.png");
        width: 50px;
        height: 50px;
        align-items: center;
    }

    .footer-name {
        font-family: 'PT Serif', serif;
        text-transform: uppercase;
        font-size: 1.1rem;
        color: var(--gold-light);
        letter-spacing: 0.1em;
        margin-bottom: 0.4rem;
    }

    .footer-subtitle {
        font-family: 'PT Serif', serif;
        font-size: 0.7rem;
        font-style: italic;
        color: var(--gold-light);
        opacity: 0.5;
        margin-bottom: 1rem;
    }

    .footer-sub {
        font-size: 15px;
        opacity: 1;
        /* font-style: italic; */
    }

    .footer-sub span {
        text-decoration: none;
        color: var(--gold-light);
        opacity: 1;
    }

    .footer-sub a {
        text-decoration: none;
        color: var(--gold-light);
        opacity: 1;
    }

    .footer-links {
        text-decoration: none;
        color: var(--gold-light);
        font-style: italic;
    }

    footer .ticker-social-icon i,
    .footer-sub span {
        color: rgba(232, 213, 163, 0.6) !important;
    }

    .reveal {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.5s, transform 0.5s;
    }

    .revealed {
        opacity: 1;
        transform: none;
    }

    .tab-bar {
        display: flex;
        gap: 0;
        border-bottom: 1px solid var(--stone-light);
        margin-bottom: 1.5rem;
    }

    .tab-btn {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.6rem 1rem;
        border: none;
        background: none;
        cursor: pointer;
        color: var(--stone);
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        transition: color 0.2s, border-color 0.2s;
    }

    .tab-btn.active {
        color: var(--crimson);
        border-bottom-color: var(--crimson);
    }

    .tab-btn:hover {
        color: var(--ink);
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }













    /* @media (max-width: 390px) {

        .nav-logo-mobile {
            display: block;
            width: 60px;
            margin-right: 10px;
        }


        .hero {
            height: 200px;
        }

        .feast-ticker {
            padding: 0.6rem 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.2rem;
            overflow: hidden;
        }

        .ticker-saint-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 10px;
        }

        .ticker-saint-date .ticker-divider {
            display: none;
        }

        .ticker-space {
            display: none;
        }


        .main-grid {
            grid-template-columns: 1fr;
        }

        .activities {
            grid-template-columns: 1fr;
        }

        .section-title-bigger {
            font-size: 20px;
        }

        .news-section {
            padding: 2rem 1rem;
        }

        .sidebar {
            width: 100%;
        }

        .saint-icon {
            width: 100%;
            height: 100%;
        }

        .saint-icon-index {
            width: 120px;
        }
    } */



    @media (max-width: 1150px) {

        .nav-logo-mobile {
            display: block;
            width: 60px;
            margin-bottom: 30px;
        }


        .hero {
            height: 200px;
        }

        .feast-ticker {
            padding: 0.6rem 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.1rem;
            overflow: hidden;
        }

        .ticker-saint-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 10px;
        }

        .ticker-saint-date .ticker-divider {
            display: none;
        }

        .ticker-space {
            display: none;
        }

        .main-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 auto;
            padding: 0;
        }


        .activities {
            grid-template-columns: 1fr;
        }

        .activities .saint-icon {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 50% -60px;
        }

        .section-title-bigger {
            font-size: 20px;
        }

        .sidebar {
            width: 100%;
        }

        .saint-icon {
            width: 100%;
            height: 100%;
        }

        .saint-icon-index {
            width: 120px;
        }
    }