
@import url(
    "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap"
);

body.mz-activities-premium-active,
body.mz-events-premium-active,
body.mz-program-single-active {
    overflow-x: hidden;
}

.mz-program-page,
.mz-program-page *,
.mz-program-single,
.mz-program-single * {
    box-sizing: border-box;
}

.mz-program-page,
.mz-program-single {
    --mz-program-gold: #b8862c;
    --mz-program-gold-light: #d5b462;
    --mz-program-ink: #181816;
    --mz-program-muted: #68645d;
    --mz-program-cream: #f3eee4;
    --mz-program-light: #faf8f3;
    --mz-program-line: rgba(24, 24, 22, 0.14);

    color: var(--mz-program-ink);
    background: #fff;
    font-family: "Inter", sans-serif;
}

.mz-program-page h1,
.mz-program-page h2,
.mz-program-page h3,
.mz-program-single h1,
.mz-program-single h2,
.mz-program-single h3 {
    font-family: "Cormorant Garamond", serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.mz-program-container {
    width: min(1390px, calc(100% - 96px));
    margin-inline: auto;
}

.mz-program-hero {
    position: relative;
    display: flex;
    min-height: 510px;
    align-items: center;
    color: #fff;
    background:
        var(--mz-program-hero-image)
        center / cover no-repeat,
        #29251f;
}

.mz-program-hero.is-empty {
    background:
        linear-gradient(
            115deg,
            #171613,
            #574735,
            #a27b3b
        );
}

.mz-program-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(9, 9, 8, 0.93),
            rgba(9, 9, 8, 0.68) 46%,
            rgba(9, 9, 8, 0.12)
        );
}

.mz-program-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-block: 75px;
}

.mz-program-hero-copy {
    width: min(650px, 58%);
}

.mz-program-kicker {
    display: block;
    margin-bottom: 22px;
    color: var(--mz-program-gold-light);
    -webkit-text-fill-color:
        var(--mz-program-gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-transform: uppercase;
}

.mz-program-gold-line {
    display: block;
    width: 70px;
    height: 2px;
    margin-bottom: 28px;
    background: var(--mz-program-gold);
}

.mz-program-hero h1 {
    margin: 0 0 24px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: clamp(58px, 5.5vw, 86px);
    line-height: 0.95;
}

.mz-program-hero p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    -webkit-text-fill-color:
        rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.75;
}

.mz-program-filter-section {
    background: var(--mz-program-cream);
}

.mz-program-filter {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.3fr)
        minmax(210px, 1fr)
        minmax(170px, 0.72fr)
        135px
        135px;
    gap: 14px;
    width: min(1290px, calc(100% - 96px));
    margin-inline: auto;
    padding: 36px 0;
    align-items: end;
}

.mz-program-filter label > span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.11em;
}

.mz-program-filter input,
.mz-program-filter select {
    display: block;
    width: 100%;
    height: 54px;
    padding: 0 17px;
    border: 1px solid #d5cec2;
    border-radius: 0;
    background: #fff;
    color: #262522;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.mz-program-filter-submit,
.mz-program-filter-reset {
    display: flex !important;
    height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 18px !important;
    border-radius: 0 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
    text-decoration: none !important;
}

.mz-program-filter-submit {
    border: 1px solid #151513 !important;
    background: #151513 !important;
    color: #fff !important;
}

.mz-program-filter-reset {
    border: 1px solid #9f9688;
    background: transparent;
    color: #181816 !important;
}

.mz-program-results {
    padding: 55px 0 130px;
}

.mz-program-result-count {
    margin-bottom: 35px;
    color: var(--mz-program-muted);
    font-size: 13px;
    text-align: right;
}

.mz-activities-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 30px 26px;
}

.mz-activity-card {
    min-width: 0;
    border: 1px solid var(--mz-program-line);
    background: #fff;
}

.mz-activity-image {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: #ddd7cd;
}

.mz-activity-image img,
.mz-event-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.mz-activity-card:hover img,
.mz-event-row:hover img {
    transform: scale(1.025);
}

.mz-program-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            135deg,
            #ded8ce,
            #bfb6a8
        );
}

.mz-program-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(10, 10, 9, 0.46);
    color: #fff;
    font-size: 22px;
}

.mz-activity-copy {
    padding: 27px 25px 24px;
}

.mz-program-category {
    display: block;
    margin-bottom: 17px;
    color: var(--mz-program-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.mz-activity-copy h2,
.mz-event-copy h2 {
    margin: 0 0 13px;
    font-size: 29px;
    line-height: 1.05;
}

.mz-activity-copy h2 a,
.mz-event-copy h2 a {
    color: var(--mz-program-ink);
    text-decoration: none;
}

.mz-activity-copy p,
.mz-event-copy p {
    margin: 0 0 22px;
    color: #44413c;
    font-size: 14px;
    line-height: 1.7;
}

.mz-program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 18px;
    border-top: 1px solid var(--mz-program-line);
    color: #77716a;
    font-size: 12px;
}

.mz-events-list {
    border-top: 1px solid var(--mz-program-line);
}

.mz-event-row {
    display: grid;
    grid-template-columns:
        110px
        300px
        minmax(0, 1fr)
        135px;
    gap: 28px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--mz-program-line);
}

.mz-event-date {
    text-align: center;
}

.mz-event-date strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 0.85;
}

.mz-event-date span {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.mz-event-date small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
}

.mz-event-image {
    position: relative;
    display: block;
    height: 170px;
    overflow: hidden;
    background: #ddd7cd;
}

.mz-event-copy h2 {
    font-size: 31px;
}

.mz-event-details {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9a251;
    color: #946b19 !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none !important;
}

.mz-program-empty {
    padding: 75px 35px;
    background: var(--mz-program-cream);
    text-align: center;
}

.mz-program-empty h2 {
    margin: 0 0 20px;
    font-size: 50px;
    line-height: 1;
}

.mz-program-empty p {
    margin: 0;
    font-size: 16px;
}

.mz-program-pagination {
    margin-top: 55px;
}

.mz-program-pagination ul {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mz-program-pagination a,
.mz-program-pagination span {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid var(--mz-program-line);
    color: var(--mz-program-ink);
    text-decoration: none;
}

.mz-program-pagination .current {
    border-color: #171715;
    background: #171715;
    color: #fff;
}

.mz-program-single-hero {
    position: relative;
    display: flex;
    min-height: 620px;
    align-items: flex-end;
    color: #fff;
    background:
        var(--mz-program-single-image)
        center / cover no-repeat,
        #29251f;
}

.mz-program-single-hero.is-empty {
    background:
        linear-gradient(
            115deg,
            #171613,
            #5b4831
        );
}

.mz-program-single-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(8, 8, 7, 0.92),
            rgba(8, 8, 7, 0.22) 70%
        );
}

.mz-program-single-hero-inner {
    position: relative;
    z-index: 1;
    padding-block: 85px;
}

.mz-program-back {
    display: inline-block;
    margin-bottom: 40px;
    color: #e1c477 !important;
    font-size: 13px;
    text-decoration: none !important;
}

.mz-program-single h1 {
    max-width: 940px;
    margin: 0 0 28px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: clamp(58px, 6vw, 92px);
    line-height: 0.96;
}

.mz-program-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 35px;
    font-size: 15px;
}

.mz-program-single-content {
    padding: 110px 0 130px;
}

.mz-program-single-container {
    width: min(850px, calc(100% - 50px));
    margin-inline: auto;
}

.mz-program-single-lead {
    margin: 0 0 45px;
    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.25;
}

.mz-program-single-body {
    font-size: 18px;
    line-height: 1.9;
}

.mz-program-single-body p {
    margin-bottom: 28px;
}

.mz-program-single-body img {
    max-width: 100%;
    height: auto;
}

.mz-program-video {
    margin-top: 65px;
}

.mz-program-video iframe {
    display: block;
    width: 100%;
    min-height: 480px;
    border: 0;
}

@media (max-width: 1100px) {
    .mz-program-container {
        width: calc(100% - 50px);
    }

    .mz-program-filter {
        grid-template-columns:
            1fr
            1fr
            0.75fr
            125px
            125px;
        width: calc(100% - 50px);
    }

    .mz-activities-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mz-event-row {
        grid-template-columns:
            90px
            240px
            minmax(0, 1fr);
    }

    .mz-event-details {
        grid-column: 3;
        width: 135px;
    }
}

@media (max-width: 780px) {
    .mz-program-container {
        width: calc(100% - 34px);
    }

    .mz-program-hero {
        min-height: 560px;
        background-position: 62% center;
    }

    .mz-program-hero-copy {
        width: 100%;
    }

    .mz-program-hero h1 {
        font-size: 54px;
    }

    .mz-program-hero p {
        font-size: 16px;
    }

    .mz-program-filter {
        grid-template-columns: 1fr;
        width: calc(100% - 34px);
    }

    .mz-program-filter-submit,
    .mz-program-filter-reset {
        width: 100%;
    }

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

    .mz-activity-image {
        height: 310px;
    }

    .mz-event-row {
        grid-template-columns:
            72px
            minmax(0, 1fr);
        gap: 18px;
    }

    .mz-event-image {
        grid-column: 2;
        height: 220px;
    }

    .mz-event-copy {
        grid-column: 2;
    }

    .mz-event-details {
        grid-column: 2;
    }

    .mz-event-date {
        grid-row: 1 / span 3;
        align-self: start;
        padding-top: 7px;
    }

    .mz-event-date strong {
        font-size: 44px;
    }

    .mz-program-empty h2 {
        font-size: 41px;
    }

    .mz-program-single-hero {
        min-height: 560px;
    }

    .mz-program-single h1 {
        font-size: 52px;
    }

    .mz-program-single-content {
        padding: 80px 0 95px;
    }

    .mz-program-single-lead {
        font-size: 29px;
    }

    .mz-program-single-body {
        font-size: 16px;
    }

    .mz-program-video iframe {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .mz-event-row {
        grid-template-columns: 1fr;
    }

    .mz-event-date,
    .mz-event-image,
    .mz-event-copy,
    .mz-event-details {
        grid-column: 1;
        grid-row: auto;
    }

    .mz-event-date {
        display: flex;
        gap: 10px;
        align-items: baseline;
        text-align: left;
    }

    .mz-event-date strong,
    .mz-event-date span,
    .mz-event-date small {
        display: inline;
        margin: 0;
    }

    .mz-activity-image {
        height: 250px;
    }
}

/* MZ_EVENT_PERIOD_FILTER_CSS_START */

/*
 * Događaji imaju dodatni filter Period:
 * pretraga, kategorija, godina, period,
 * filtriraj i poništi.
 */
body.mz-events-premium-active
    .mz-program-filter {
    grid-template-columns:
        minmax(230px, 1.25fr)
        minmax(170px, 0.9fr)
        minmax(135px, 0.67fr)
        minmax(155px, 0.75fr)
        125px
        125px;
}

@media (max-width: 1180px) {
    body.mz-events-premium-active
        .mz-program-filter {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    body.mz-events-premium-active
        .mz-program-filter-submit,
    body.mz-events-premium-active
        .mz-program-filter-reset {
        width: 100%;
    }
}

@media (max-width: 780px) {
    body.mz-events-premium-active
        .mz-program-filter {
        grid-template-columns: 1fr;
    }
}

/* MZ_EVENT_PERIOD_FILTER_CSS_END */

/* MZ_PROGRAM_FILTER_ACTION_WRAPPER_START */

/*
 * Inputi i select kontrole nalaze se u label elementima
 * koji imaju tekst iznad kontrole. Dugmad sada dobijaju
 * potpuno istu vertikalnu strukturu.
 */
.mz-program-filter-action {
    display: flex !important;
    min-width: 0;
    flex-direction: column !important;
    align-self: stretch !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
}

/*
 * Visina i margin-bottom moraju odgovarati pravilima:
 *
 * .mz-program-filter label > span
 *
 * Tekst je nevidljiv, ali zadržava prostor.
 */
.mz-program-filter-action-label {
    display: block !important;
    min-height: 17px !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: transparent !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.11em !important;
    line-height: 17px !important;
    visibility: hidden !important;
    user-select: none !important;
}

/*
 * Dugme i reset link sada imaju identičnu veličinu
 * kao input i select elementi.
 */
.mz-program-filter-action
    .mz-program-filter-submit,
.mz-program-filter-action
    .mz-program-filter-reset {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    flex: 0 0 54px !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: auto !important;
    margin: 0 !important;
    padding: 0 14px !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

/*
 * Sprečava Loquet da doda spoljne margine na button.
 */
.mz-program-filter-action button {
    margin-block: 0 !important;
}

/*
 * Na tablet rasporedu oba wrappera ostaju jednaka
 * ostalim grid poljima.
 */
@media (max-width: 1180px) {
    .mz-program-filter-action {
        width: 100% !important;
    }

    .mz-program-filter-action
        .mz-program-filter-submit,
    .mz-program-filter-action
        .mz-program-filter-reset {
        width: 100% !important;
    }
}

/*
 * Na mobilnom uređaju nema potrebe za praznim
 * prostorom iznad dugmadi jer su sva polja u jednoj koloni.
 */
@media (max-width: 780px) {
    .mz-program-filter-action-label {
        display: none !important;
    }

    .mz-program-filter-action {
        align-self: auto !important;
    }
}

/* MZ_PROGRAM_FILTER_ACTION_WRAPPER_END */
