@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz@0,14..32;1,14..32&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,500;1,14..32,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,600;1,14..32,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,700;1,14..32,600&display=swap');

:root {
    --font-family: "Inter", serif;
    --stroke-default: rgb(228, 228, 231);
    --bg-white: #ffffff;
    --bg-black: rgba(24, 24, 27, 0.9);
    --primary: rgba(24, 24, 27, 0.9);
    --primary-hover: rgba(24, 24, 27, 0.8);
    --text-color: rgb(9, 9, 11);
    --text-secondary: rgb(113, 113, 122);
    --text-muted: rgb(113, 113, 122);
    --highlight: rgb(243, 243, 255);
    --mobile-width: 550px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-family);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: var(--bg-white);
    color: var(--text-color);
}

.body {
    width: 100%;
    display: flex;
    min-height: 100svh;
}

h1, h2, h3, h4, h5, h6 {
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: rgb(9, 9, 11);
    text-decoration: none;
}

.block-container {
    max-width: 1216px;
    padding: 1.5rem;
    position: relative;
    margin: 0 auto;
}

    .block-container .block-container {
        padding: 1.5rem 0;
    }

    .block-container h1 {
        margin-bottom: 0;
    }

    .block-container h2 {
        margin-bottom: 0;
    }

.footer {
    border-top: 1px solid rgb(230, 230, 230);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: rgb(115, 115, 115);
    font-size: 0.875rem;
    font-weight: 500;
    align-items: center;
    margin-top: 3rem;
}

    .footer a {
        margin-left: 0.5rem;
        display: inline-flex;
        width: 2rem;
        height: 2rem;
        color: rgb(23, 23, 23);
        background: rgb(245, 245, 245);
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }


@media screen and (max-width: 550px) {
    .footer {
        flex-direction: column;
        gap: 1.5rem;
    }

        .footer a {
            margin-left: 0.25rem;
            margin-right: 0.25rem;
        }
}

.block {
    display: block;
    width: 100%;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.gap-0\.5 {
    gap: 0.5rem;
}

.gap-1 {
    gap: 1rem;
}

.hidden {
    display: none;
}

.rich-text span,
.rich-text p {
    background: none !important;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #364153;
    margin: 0;
}

.rich-text ol {
    margin-bottom: 0;
}

.rich-text ul {
    padding-left: 2rem;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #364153;
}

.rich-text ol {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #364153;
}

    .rich-text ol li[data-list=bullet] {
        list-style: disc;
    }

/* Paddings */
.py-0 {
    padding: 0;
}

/* Margins */
.mt-1\.5 {
    margin-top: 1.5rem;
}

.mb-1\.5 {
    margin-bottom: 1.5rem;
}

.mb-neg-1 {
    margin-bottom: -1rem;
}

/* Buttons */
button {
    font-family: var(--font-family);
    cursor: pointer;
}

a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.primary {
    background: var(--primary);
    color: white;
    border: 1px solid black;
    height: 2.25rem;
    padding: 0 1rem;
    border-radius: 0.625rem;
    font-weight: 500;
}

.btn.secondary {
    background: var(--bg-white);
    color: var(--text-color);
    border: 1px solid var(--stroke-default);
    height: 2.25rem;
    padding: 0 1rem;
    border-radius: 0.625rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


    .btn.secondary:hover {
        background: var(--highlight);
        cursor: pointer;
    }

.btn.text {
    background: var(--bg-white);
    color: var(--text-color);
    border: 0px solid var(--stroke-default);
    height: 2.25rem;
    padding: 0 1rem;
    border-radius: 0.625rem;
    font-weight: 500;
}

    .btn.text .text {
        text-decoration: underline;
        text-underline-offset: 0.25rem;
    }

    .btn.text:hover {
        background: var(--highlight);
        cursor: pointer;
    }

.btn.small {
    height: 1.75rem;
    padding: 0 .75rem;
    font-size: 0.75rem;
}

.btn.large {
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 1rem;
}

/* Forms */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}


input {
    font-family: var(--font-family);
    display: block;
    width: 100%;
    border: 1px solid var(--stroke-default);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

    input[type="text"]:hover {
        border: 1px solid var(--bg-black);
    }

    input[type="number"] {
        max-width: 15rem;
    }

select {
    font-family: var(--font-family);
    display: block;
    width: 100%;
    border: 1px solid var(--stroke-default);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

textarea {
    font-family: var(--font-family);
    display: block;
    width: 100%;
    border: 1px solid var(--stroke-default);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    min-height: 5rem;
}

.switch {
    margin-bottom: 1.5rem;
}

    .switch input {
        appearance: none;
        background-color: #dfe1e4;
        border-radius: 72px;
        border-style: none;
        flex-shrink: 0;
        height: 20px;
        margin: 0;
        position: relative;
        width: 30px;
    }

        .switch input::before {
            bottom: -6px;
            content: "";
            left: -6px;
            position: absolute;
            right: -6px;
            top: -6px;
        }

        .switch input,
        .switch input::after {
            transition: all 100ms ease-out;
        }

            .switch input::after {
                background-color: #fff;
                border-radius: 50%;
                content: "";
                height: 14px;
                left: 3px;
                position: absolute;
                top: 3px;
                width: 14px;
            }

            .switch input[type=checkbox] {
                cursor: default;
            }

            .switch input:hover {
                background-color: #c9cbcd;
                transition-duration: 0s;
            }

            .switch input:checked {
                background-color: #6e79d6;
            }

                .switch input:checked::after {
                    background-color: #fff;
                    left: 13px;
                }

    .switch :focus:not(.focus-visible) {
        outline: 0;
    }

    .switch input:checked:hover {
        background-color: #535db3;
    }

/* Info*/
.info {
    font-size: 0.875rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--stroke-default);
}

    .info h2 {
        margin-top: 0;
        font-size: 0.875rem;
        font-weight: 600;
    }

/* Navigation */
.nav-container {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

.nav {
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-links {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-links ul {
        display: flex;
        gap: 1rem;
    }

    .nav-links > ul > li > a {
        border: 0px solid rgb(228, 228, 231);
        font-weight: 500;
        border-radius: 0.625rem;
        height: 2.375rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        font-size: 0.875rem;
        position: relative;
    }

        .nav-links > ul > li > a:hover {
            background: rgb(228, 228, 231);
        }

.nav-action a {
    border: 1px solid rgb(228, 228, 231);
    background: white;
    font-weight: 500;
    border-radius: 0.625rem;
    height: 2.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    gap: 0.125rem;
    padding-right: 0.75rem;
    font-size: 0.875rem;
}

@media screen and (max-width: 1024px) {
    .nav-container {
        border-bottom: 1px solid rgb(230, 230, 230);
    }

    .nav-links ul,
    .nav-links ul {
        display: none;
    }
}


@media screen and (min-width: 1024px) {
    .mobile-nav-container {
        display: none;
    }
}

/* Hide the checkbox input */
.mobile-nav-container .mobile-nav-toggle {
    display: none;
}

/* Hamburger icon */
.mobile-nav-container .mobile-nav-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.75rem;
    height: 1.25rem;
    cursor: pointer;
}

.mobile-nav-container .bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Navigation menu */
.mobile-nav-container .mobile-nav-menu {
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #000000c2;
    z-index: 1;
    bottom: 0;
    padding: 1.5rem;
    display: none;
}

    .mobile-nav-container .mobile-nav-menu ul {
        list-style-type: none;
    }

        .mobile-nav-container .mobile-nav-menu ul li {
            text-align: center;
            padding: 10px;
        }

            .mobile-nav-container .mobile-nav-menu ul li a {
                color: white;
                text-decoration: none;
                font-size: 1.25rem;
                display: block;
                padding: 0.5rem;
                border-radius: 0.25rem;
            }

                .mobile-nav-container .mobile-nav-menu ul li a:hover {
                    background: #535353;
                }

/* Show menu when the checkbox is checked */
.mobile-nav-container .mobile-nav-toggle:checked + .mobile-nav-icon + .mobile-nav-menu {
    display: block;
}

/* Transform hamburger icon into an X when checked */
.mobile-nav-container .mobile-nav-toggle:checked + .mobile-nav-icon .bar:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 9px;
}

.mobile-nav-container .mobile-nav-toggle:checked + .mobile-nav-icon .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-container .mobile-nav-toggle:checked + .mobile-nav-icon .bar:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -8px;
}

/* Login */
.login-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.login {
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--stroke-default);
    border-radius: 0.75rem;
    width: 100%;
    max-width: 26rem;
}

/** LIGHTBOX */
.fslightbox-absoluted {
    position: absolute;
    top: 0;
    left: 0
}

.fslightbox-fade-in {
    animation: fslightbox-fade-in .3s cubic-bezier(0,0,.7,1)
}

.fslightbox-fade-out {
    animation: fslightbox-fade-out .3s ease
}

.fslightbox-fade-in-strong {
    animation: fslightbox-fade-in-strong .3s cubic-bezier(0,0,.7,1)
}

.fslightbox-fade-out-strong {
    animation: fslightbox-fade-out-strong .3s ease
}

@keyframes fslightbox-fade-in {
    from {
        opacity: .65
    }

    to {
        opacity: 1
    }
}

@keyframes fslightbox-fade-out {
    from {
        opacity: .35
    }

    to {
        opacity: 0
    }
}

@keyframes fslightbox-fade-in-strong {
    from {
        opacity: .3
    }

    to {
        opacity: 1
    }
}

@keyframes fslightbox-fade-out-strong {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fslightbox-cursor-grabbing {
    cursor: grabbing
}

.fslightbox-full-dimension {
    width: 100%;
    height: 100%
}

.fslightbox-open {
    overflow: hidden;
    height: 100%
}

.fslightbox-flex-centered {
    display: flex;
    justify-content: center;
    align-items: center
}

.fslightbox-opacity-0 {
    opacity: 0 !important
}

.fslightbox-opacity-1 {
    opacity: 1 !important
}

.fslightbox-scrollbarfix {
    padding-right: 17px
}

.fslightbox-transform-transition {
    transition: transform .3s
}

.fslightbox-container {
    font-family: Arial,sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(30,30,30,.9),#000 1810%);
    touch-action: pinch-zoom;
    z-index: 1000000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

    .fslightbox-container * {
        box-sizing: border-box
    }

.fslightbox-svg-path {
    transition: fill .15s ease;
    fill: #ddd
}

.fslightbox-nav {
    height: 45px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.fslightbox-slide-number-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    font-size: 15px;
    color: #d7d7d7;
    z-index: 0;
    max-width: 55px;
    text-align: left
}

    .fslightbox-slide-number-container .fslightbox-flex-centered {
        height: 100%
    }

.fslightbox-slash {
    display: block;
    margin: 0 5px;
    width: 1px;
    height: 12px;
    transform: rotate(15deg);
    background: #fff
}

.fslightbox-toolbar {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    background: rgba(35,35,35,.65)
}

.fslightbox-toolbar-button {
    height: 100%;
    width: 45px;
    cursor: pointer
}

    .fslightbox-toolbar-button:hover .fslightbox-svg-path {
        fill: #fff
    }

.fslightbox-slide-btn-container {
    display: flex;
    align-items: center;
    padding: 12px 12px 12px 6px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
    transform: translateY(-50%)
}

@media (min-width:476px) {
    .fslightbox-slide-btn-container {
        padding: 22px 22px 22px 6px
    }
}

@media (min-width:768px) {
    .fslightbox-slide-btn-container {
        padding: 30px 30px 30px 6px
    }
}

.fslightbox-slide-btn-container:hover .fslightbox-svg-path {
    fill: #f1f1f1
}

.fslightbox-slide-btn {
    padding: 9px;
    font-size: 26px;
    background: rgba(35,35,35,.65)
}

@media (min-width:768px) {
    .fslightbox-slide-btn {
        padding: 10px
    }
}

@media (min-width:1600px) {
    .fslightbox-slide-btn {
        padding: 11px
    }
}

.fslightbox-slide-btn-container-previous {
    left: 0
}

@media (max-width:475.99px) {
    .fslightbox-slide-btn-container-previous {
        padding-left: 3px
    }
}

.fslightbox-slide-btn-container-next {
    right: 0;
    padding-left: 12px;
    padding-right: 3px
}

@media (min-width:476px) {
    .fslightbox-slide-btn-container-next {
        padding-left: 22px
    }
}

@media (min-width:768px) {
    .fslightbox-slide-btn-container-next {
        padding-left: 30px
    }
}

@media (min-width:476px) {
    .fslightbox-slide-btn-container-next {
        padding-right: 6px
    }
}

.fslightbox-down-event-detector {
    position: absolute;
    z-index: 1
}

.fslightbox-slide-swiping-hoverer {
    z-index: 4
}

.fslightbox-invalid-file-wrapper {
    font-size: 22px;
    color: #eaebeb;
    margin: auto
}

.fslightbox-video {
    object-fit: cover
}

.fslightbox-youtube-iframe {
    border: 0
}

.fslightboxl {
    display: block;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 67px;
    height: 67px
}

    .fslightboxl div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 54px;
        height: 54px;
        margin: 6px;
        border: 5px solid;
        border-color: #999 transparent transparent transparent;
        border-radius: 50%;
        animation: fslightboxl 1.2s cubic-bezier(.5,0,.5,1) infinite
    }

        .fslightboxl div:nth-child(1) {
            animation-delay: -.45s
        }

        .fslightboxl div:nth-child(2) {
            animation-delay: -.3s
        }

        .fslightboxl div:nth-child(3) {
            animation-delay: -.15s
        }

@keyframes fslightboxl {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.fslightbox-source {
    position: relative;
    z-index: 2;
    opacity: 0
}

/** BLOCK ARTICLE */
.block-article {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    grid-gap: 3rem;
}


    .block-article .primary-image {
        display: flex;
        cursor: pointer;
    }

        .block-article .primary-image img {
            max-height: 30rem;
            object-fit: cover;
            width: 100%;
            border-radius: 0.25rem;
        }

    .block-article .secondary-images {
        display: grid;
        grid-auto-flow: row;
        grid-gap: 1.5rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        margin-top: 1.5rem;
    }

    .block-article .secondary-image {
        width: 100%;
        height: 8rem;
    }

        .block-article .secondary-image img {
            width: 100%;
            height: 8rem;
            object-fit: cover;
            border-radius: 0.25rem;
            opacity: 0.5;
        }

            .block-article .secondary-image img:hover {
                cursor: pointer;
                opacity: 1;
            }

    .block-article .available {
        color: #19b119;
        display: block;
        font-size: 0.875rem;
        margin-top: 0.5rem;
        font-weight: 500;
    }

        .block-article .available::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            display: inline-block;
            background: #19b119;
            border-radius: 50%;
            margin-right: 0.25rem;
        }

    .block-article .not-available {
        color: #919191;
        display: block;
        font-size: 0.875rem;
        margin-top: 0.5rem;
        font-weight: 500;
    }

        .block-article .not-available::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            display: inline-block;
            background: #919191;
            border-radius: 50%;
            margin-right: 0.25rem;
        }


    .block-article .content h1 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .block-article .article-body {
        margin: 0;
        padding: 0;
    }

        .block-article .article-body span,
        .block-article .article-body p {
            background: none !important;
            font-size: 1rem;
            line-height: 1.5rem;
            color: #364153;
        }

        .block-article .article-body li[data-list="bullet"] {
            list-style: disc;
        }


/* Mobile */
@media screen and (max-width: 500px) {
    .block-article {
        display: flex;
        flex-direction: column;
    }
}

/* Mobile */
@media screen and (max-width: 500px) {
    .block-article .primary-image img {
        max-height: 20rem;
        object-fit: cover;
        width: 100%;
        border-radius: 0.25rem;
    }
}


/** BLOCK Workshops */
.block-workshops {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding: 3rem;
    margin-bottom: 3rem;
}

    .block-workshops h2 {
        font-size: 1.5rem;
    }

    .block-workshops .workshops {
        display: grid;
        grid-auto-flow: row;
        grid-gap: 1.5rem;
        grid-template-columns: repeat(4, 1fr);
        margin-top: 1.5rem;
    }

/* Mobile */
@media screen and (max-width: 500px) {
    .block-workshops .workshops {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1rem;
    }
}

/* Mobile XL */
@media screen and (min-width: 501px) and (max-width: 759px) {
    .block-workshops .workshops {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
    }
}

/* Tablet */
@media screen and (min-width: 760px) and (max-width: 1024px) {
    .block-workshops .workshops {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1rem;
    }
}

.block-workshops .workshop {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--stroke-default);
    border-radius: 0.5rem;
    overflow: hidden;
}

    .block-workshops .workshop .img {
        display: flex;
    }

        .block-workshops .workshop .img img {
            width: 100%;
            height: 12rem;
            object-fit: cover;
        }

    .block-workshops .workshop .content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .block-workshops .workshop .title {
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .block-workshops .workshop .description {
        font-size: 0.875rem;
        color: var(--text-muted);
        margin-bottom: 0.75rem;
        display: block;
        flex-grow: 1;
    }

    .block-workshops .workshop .date {
        display: flex;
        align-items: center;
        font-weight: 500;
        justify-content: space-between;
        color: var(--text-muted);
    }

    .block-workshops .workshop .available {
        color: #19b119;
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
    }

        .block-workshops .workshop .available::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            display: inline-block;
            background: #19b119;
            border-radius: 50%;
            margin-right: 0.25rem;
        }

    .block-workshops .workshop .not-available {
        color: #919191;
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
    }

        .block-workshops .workshop .not-available::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            display: inline-block;
            background: #919191;
            border-radius: 50%;
            margin-right: 0.25rem;
        }

.block-workshops h2.spaced {
    margin-top: 6rem;
}


/** BLOCK WORKSHOP */
.block-workshop {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    grid-gap: 3rem;
}

    .block-workshop .primary-image {
        display: flex;
        cursor: pointer;
    }

        .block-workshop .primary-image img {
            max-height: 30rem;
            object-fit: cover;
            width: 100%;
            border-radius: 0.25rem;
        }


    .block-workshop .secondary-images {
        display: grid;
        grid-auto-flow: row;
        grid-gap: 1.5rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        margin-top: 1.5rem;
    }

    .block-workshop .secondary-image {
        width: 100%;
        height: 8rem;
    }

        .block-workshop .secondary-image img {
            width: 100%;
            height: 8rem;
            object-fit: cover;
            border-radius: 0.25rem;
            opacity: 0.5;
        }

            .block-workshop .secondary-image img:hover {
                cursor: pointer;
                opacity: 1;
            }

    .block-workshop .available {
        color: #19b119;
        display: block;
        font-size: 0.875rem;
        margin-top: 0.5rem;
        font-weight: 500;
    }

        .block-workshop .available::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            display: inline-block;
            background: #19b119;
            border-radius: 50%;
            margin-right: 0.25rem;
        }

    .block-workshop .not-available {
        color: #919191;
        display: block;
        font-size: 0.875rem;
        margin-top: 0.5rem;
        font-weight: 500;
    }

        .block-workshop .not-available::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            display: inline-block;
            background: #919191;
            border-radius: 50%;
            margin-right: 0.25rem;
        }


    .block-workshop .content h1 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .block-workshop .workshop-body {
        padding-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

        .block-workshop .workshop-body span,
        .block-workshop .workshop-body p {
            background: none !important;
            font-size: 1rem;
            line-height: 1.5rem;
            color: #364153;
        }

        .block-workshop .workshop-body li[data-list="bullet"] {
            list-style: disc;
        }

/* Mobile */
@media screen and (max-width: 500px) {
    .block-workshop {
        display: flex;
        flex-direction: column;
    }
}

/* Mobile */
@media screen and (max-width: 500px) {
    .block-workshop .primary-image img {
        max-height: 20rem;
        object-fit: cover;
        width: 100%;
        border-radius: 0.25rem;
    }
}

/** BLOCK TEXT-IMAGE */
.block-text-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

    .block-text-image .content {
        flex: 1;
    }

    .block-text-image .image {
        padding: 1rem;
        background: #f5f5f5;
        display: flex;
        border: 1px solid rgb(230, 230, 230);
        border-radius: 0.5rem;
    }

        .block-text-image .image img {
            max-width: 100%;
            border-radius: 0.5rem;
            width: auto;
            height: auto;
        }

@media screen and (max-width: 550px) {
    .block-text-image {
        flex-direction: column;
        gap: 3rem;
    }
}

/** BLOCK TEXT-IMAGE */
.block-image-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

    .block-image-text .content {
        flex: 1;
    }

    .block-image-text .image {
        padding: 1rem;
        background: #f5f5f5;
        display: flex;
        border: 1px solid rgb(230, 230, 230);
        border-radius: 0.5rem;
    }

        .block-image-text .image img {
            max-width: 100%;
            border-radius: 0.5rem;
            width: auto;
            height: auto;
        }

@media screen and (max-width: 550px) {
    .block-image-text {
        flex-direction: column;
        gap: 3rem;
    }
}

/** BLOCK IMAGES */
.block-images {
    display: flex;
    gap: 2rem;
}

    .block-images .block-image {
        background: #f5f5f5;
        border-radius: 0.5rem;
        display: flex;
        border: 1px solid rgb(230, 230, 230);
        overflow: hidden;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

        .block-images .block-image img {
            width: auto;
            max-width: 100%;
            max-height: 100%;
            height: auto;
            border-radius: 0.5rem;
            object-fit: cover; /* Ensures image covers the space inside the container */
            display: block; /* Removes any extra space under images */
        }

@media screen and (max-width: 550px) {
}

/** Block block-feature-highlight */
.block-feature-highlight {
    display: grid;
    border-radius: 0.5rem;
    padding: 0rem 6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 4rem;
}

    .block-feature-highlight .image-container {
        justify-content: flex-start;
        display: flex;
    }

        .block-feature-highlight .image-container .image {
            height: min-content;
            aspect-ratio: 6 / 5;
            position: relative;
            width: 100%;
        }

            .block-feature-highlight .image-container .image img {
                object-position: center;
                object-fit: cover;
                width: 100%;
                height: 100%;
                border-radius: 0.375rem;
                min-width: 100%;
                max-width: 100%;
                max-height: 100%;
                min-height: 100%;
            }

    .block-feature-highlight .content-container {
        display: flex;
        flex-direction: column;
        row-gap: 1rem;
        justify-content: center;
    }

        .block-feature-highlight .content-container .content-title {
            margin: 0;
            font-size: 1.5rem;
            color: rgb(23, 23, 23);
            line-height: 2rem;
            font-weight: 600;
        }


        .block-feature-highlight .content-container .content-description {
            color: rgb(115, 115, 115);
            line-height: 1.5rem;
            max-height: 11.875rem;
            overflow: hidden;
        }

        .block-feature-highlight .content-container .content-btn {
            width: fit-content;
        }

@media screen and (max-width: 550px) {
    .block-feature-highlight {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }

        .block-feature-highlight .content-container .content-btn {
            width: 100%;
        }
}

/** Block block-blogpost-latest */
.block-blogpost-latest {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 3rem;
}

    .block-blogpost-latest .block-blogpost-latest-title {
        display: flex;
        margin: 0;
        flex-direction: column;
    }

        .block-blogpost-latest .block-blogpost-latest-title h2 {
            margin: 0;
            font-size: 2rem;
            font-weight: 600;
            color: rgb(10, 10, 10);
        }

        .block-blogpost-latest .block-blogpost-latest-title p {
            font-size: 0.875rem;
            line-height: 1.25rem;
        }


    .block-blogpost-latest .block-blogpost-latest-post-tag {
        color: rgb(115, 115, 115);
        font-weight: 500;
        font-size: 0.875rem;
    }

    .block-blogpost-latest .block-blogpost-latest-post-title {
        color: rgb(10, 10, 10);
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 2rem;
        margin: 0;
    }

    .block-blogpost-latest .block-blogpost-latest-post-description {
        color: rgb(115, 115, 115);
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .block-blogpost-latest .block-blogpost-latest-post-date {
        color: rgb(115, 115, 115);
        font-weight: 500;
        font-size: 0.875rem;
    }

@media screen and (max-width: 550px) {
    .block-blogpost-latest {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

/** Block block-feature-pagetitle */
.block-feature-pagetitle {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

    .block-feature-pagetitle .block-feature-pagetitle-tag {
        display: inline-block;
        margin: 0 auto;
        background: rgb(245, 245, 245);
        border-radius: 0.375rem;
        padding: 0.125rem 0.5rem;
        font-weight: 600;
        font-size: 0.75rem;
        color: rgb(23, 23, 23);
    }

    .block-feature-pagetitle .block-feature-pagetitle-title {
        margin-bottom: 1.5rem;
        font-size: 3rem;
        font-weight: 600;
        color: rgb(10, 10, 10);
        margin-top: 1rem;
    }

    .block-feature-pagetitle .block-feature-pagetitle-description {
        max-width: 70%;
        margin: 0 auto;
        color: rgb(115, 115, 115);
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

/** Block block-blogpost-list */
.block-blogpost-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

    .block-blogpost-list .block-blogpost-listitem {
        display: flex;
        gap: 1.5rem;
    }

    .block-blogpost-list .block-blogpost-listitem-img {
        flex-shrink: 0;
    }

        .block-blogpost-list .block-blogpost-listitem-img img {
            width: 260px;
            max-height: 200px;
            object-fit: cover;
            border-radius: 0.5rem;
        }

    .block-blogpost-list .block-blogpost-listitem-content {
        flex: 1;
    }

    .block-blogpost-list .block-blogpost-listitem-meta {
        font-size: 0.875rem;
    }

    .block-blogpost-list .block-blogpost-listitem-meta-tag {
        display: inline-block;
        margin: 0 auto;
        background: rgb(245, 245, 245);
        border-radius: 0.375rem;
        padding: 0.125rem 0.5rem;
        font-weight: 600;
        font-size: 0.75rem;
        color: rgb(23, 23, 23);
        margin-right: 0.5rem;
    }

    .block-blogpost-list .block-blogpost-listitem-meta-author {
        color: rgb(115, 115, 115);
        margin-right: 0.5rem;
    }

    .block-blogpost-list .block-blogpost-listitem-meta-date {
        color: rgb(115, 115, 115);
    }

    .block-blogpost-list .block-blogpost-latest-post-title {
        color: rgb(10, 10, 10);
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 2.75rem;
        margin-top: 0.5rem;
        margin-bottom: 0;
    }

    .block-blogpost-list .block-blogpost-latest-post-description {
        padding: 0;
        margin: 0;
        color: rgb(115, 115, 115);
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 1rem;
    }

    .block-blogpost-list .not-available {
        color: #919191;
        display: block;
        font-size: 0.875rem;
        margin-top: 0.5rem;
        font-weight: 500;
    }


        .block-blogpost-list .not-available::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            display: inline-block;
            background: #919191;
            border-radius: 50%;
            margin-right: 0.25rem;
        }

@media screen and (max-width: 550px) {
    .block-blogpost-list .block-blogpost-listitem {
        flex-direction: column;
    }

    .block-blogpost-list .block-blogpost-listitem-img img {
        width: 100%;
        max-height: 100%;
    }
}


/* Latest Workshops */
.block-workshop-latest {
}

    .block-workshop-latest .block-workshop-latest-title h2 {
        margin: 0;
        font-size: 2rem;
        font-weight: 600;
        color: rgb(10, 10, 10);
    }

    .block-workshop-latest .block-workshop-latest-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 3rem;
    }

    .block-workshop-latest .block-workshop-latest-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-gap: 2rem;
    }

    .block-workshop-latest .block-workshop-latest-listitem {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }

    .block-workshop-latest .block-workshop-latest-listitem-img {
        flex-shrink: 0;
    }

        .block-workshop-latest .block-workshop-latest-listitem-img img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 0.5rem;
        }


    .block-workshop-latest .block-workshop-latest-listitem-meta {
        font-size: 0.875rem;
    }

    .block-workshop-latest .block-workshop-latest-listitem-meta-tag {
        display: inline-block;
        margin: 0 auto;
        background: rgb(245, 245, 245);
        border-radius: 0.375rem;
        padding: 0.125rem 0.5rem;
        font-weight: 600;
        font-size: 0.75rem;
        color: rgb(23, 23, 23);
        margin-right: 0.5rem;
    }

    .block-workshop-latest .block-workshop-latest-listitem-meta-author {
        color: rgb(115, 115, 115);
        margin-right: 0.5rem;
    }

    .block-workshop-latest .block-workshop-latest-listitem-meta-date {
        color: rgb(115, 115, 115);
    }

    .block-workshop-latest .block-workshop-latest-listitem-title {
        color: rgb(10, 10, 10);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0;
        display: block;
    }

    .block-workshop-latest .block-workshop-latest-listitem-description {
        color: rgb(115, 115, 115);
        font-size: 0.875rem;
        line-height: 1.25rem;
        display: block;
        margin-bottom: 1rem;
    }

    .block-workshop-latest .not-available {
        color: #919191;
        display: block;
        font-size: 0.875rem;
        margin-top: 0.5rem;
        font-weight: 500;
    }


        .block-workshop-latest .not-available::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            display: inline-block;
            background: #919191;
            border-radius: 50%;
            margin-right: 0.25rem;
        }

@media screen and (max-width: 550px) {
    .block-workshop-latest .block-workshop-latest-title {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }

    .block-workshop-latest .block-workshop-latest-list {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
}

/* Separator */

.block-feature-separator-line {
    border-bottom: 1px solid rgb(230, 230, 230);
    margin-top: 4rem;
    margin-bottom: 3rem;
}

/* BlogPost Details */
.block-blogpost-details {
    display: flex;
    gap: 3rem;
}

    .block-blogpost-details .block-blogpost-details-content {
        flex-grow: 1;
    }

    .block-blogpost-details .block-blogpost-details-share {
        min-width: 18rem;
    }

        .block-blogpost-details .block-blogpost-details-share a {
            margin-right: 0.5rem;
            display: inline-flex;
            width: 2rem;
            height: 2rem;
            color: rgb(23, 23, 23);
            background: rgb(245, 245, 245);
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

    .block-blogpost-details .block-blogpost-details-title {
        color: rgb(10, 10, 10);
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .block-blogpost-details .block-blogpost-details-meta {
        font-size: 1rem;
    }

    .block-blogpost-details .block-blogpost-details-meta-tag {
        display: inline-block;
        margin: 0 auto;
        background: rgb(245, 245, 245);
        border-radius: 0.375rem;
        padding: 0.125rem 0.5rem;
        font-weight: 600;
        font-size: 1rem;
        color: rgb(23, 23, 23);
        margin-right: 0.5rem;
    }

    .block-blogpost-details .block-blogpost-details-meta-author {
        color: rgb(115, 115, 115);
        margin-right: 0.5rem;
    }

    .block-blogpost-details .block-blogpost-details-meta-date {
        color: rgb(115, 115, 115);
    }

@media screen and (max-width: 550px) {
    .block-breadcrumb {
        margin-top: 0;
    }

    .block-blogpost-details {
        flex-direction: column;
        gap: 0rem;
    }

        .block-blogpost-details .block-blogpost-details-title {
            font-size: 2rem;
        }
}


/** Breadcrumb */
.block-breadcrumb {
    color: rgb(115, 115, 115);
    display: flex;
    gap: 0.75rem;
    margin-top: 3rem;
}

    .block-breadcrumb a {
        color: rgb(115, 115, 115);
        font-size: 0.875rem;
    }

        .block-breadcrumb a:hover {
            color: rgb(10, 10, 10);
        }


/** Hero */
.block-hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    column-gap: 2rem;
}

    .block-hero h1 {
        color: rgb(10, 10, 10);
        font-size: 3rem;
        font-weight: 700;
        margin-top: 1rem;
    }

    .block-hero .description {
        color: rgb(115, 115, 115);
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .block-hero .tagline {
        color: rgb(115, 115, 115);
        font-size: 1rem;
    }

.block-hero-images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.block-hero-images {
    height: 41rem;
}

.block-hero .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .block-hero .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.5rem;
    }

.block-hero .image-1 {
    position: absolute;
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 0.5rem;
    width: 24%;
    right: 50%;
    top: 12%;
    aspect-ratio: 1;
}

.block-hero .image-2 {
    position: absolute;
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 0.5rem;
    width: 40%;
    right: 50%;
    top: 36%;
    aspect-ratio: 5 / 6;
}

.block-hero .image-3 {
    position: absolute;
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 0.5rem;
    width: 40%;
    left: 54%;
    bottom: 36%;
    aspect-ratio: 5 / 6;
}

.block-hero .image-4 {
    position: absolute;
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 0.5rem;
    width: 24%;
    left: 54%;
    bottom: 12%;
    aspect-ratio: 1;
}

@media screen and (max-width: 768px) {

    .block-hero {
        display: flex;
        flex-direction: column;
    }

    .block-hero-content {
        text-align: center;
        margin-top: 2rem;
    }

    .block-hero-images {
        width: 100%;
        height: 100%;
    }

    .block-hero-images-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        aspect-ratio: 7 / 8;
    }
}


/** Category List*/
.block-category-article-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .block-category-article-list .block-category-article {
        flex: 1;
        max-width: 33.333%;
        min-width: 30%;
        display: flex;
        flex-direction: column;
    }

    .block-category-article-list .block-category-article-img {
        padding: 1.5rem;
        background: #f5f5f5;
        display: flex;
        border: 1px solid rgb(230, 230, 230);
        border-radius: 0.5rem;
    }

        .block-category-article-list .block-category-article-img img {
            width: 100%;
            border-radius: 0.5rem;
            height: 20rem;
            object-fit: cover;
        }


    .block-category-article-list .block-category-article-content {
        padding: 1.5rem;
    }

    .block-category-article-list .block-category-article-title {
        color: rgb(10, 10, 10);
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        margin-bottom: 0.5rem;
    }

    .block-category-article-list .block-category-article-description {
        padding: 0;
        margin: 0;
        color: rgb(115, 115, 115);
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .block-category-article-list .block-category-article-link {
        font-size: 0.875rem;
    }



@media screen and (max-width: 780px) {
    .block-category-article-list .block-category-article {
        max-width: 50%;
        min-width: 40%;
    }
}


@media screen and (max-width: 550px) {
    .block-category-article-list .block-category-article {
        max-width: 100%;
        min-width: 100%;
    }
}


/* Spinner */
.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 3px solid #7572e1;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
