.event-meta h2 {
    color: #1D1E1C;
    font-family: Nunito;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}
.events-list {
    h2 {
        color: var(--Text-Off-Black, #1D1E1C);

        /* Heading 2 */
        font-family: Nunito;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px; /* 125% */
    }

    ul.list {
        margin-top: 24px;
        margin-bottom: 36px;
        padding-left: 0;
        list-style: none;
        li {

            border-bottom: 1px solid rgba(32, 35, 74, 0.30);
            padding: 8px 0;
            margin: 0;

            &:last-child {
                border-bottom: none;
            }


            a {
                display: flex;
                padding: 22px 32px;
                align-items: center;
                gap: 38px;
                align-self: stretch;
                justify-content: space-between;

                &:hover {
                    border-radius: 6px;
                    background: var(--secondary-green-10, #EDF1EC);
                    text-decoration: none;
                    time {
                        text-decoration: none;
                    }
                }

                & > div {
                    display: flex;
                    justify-content: space-between;
                    width: 100%;

                    h3 {

                        color: var(--Text-Off-Black, #1D1E1C);
                        /* Subtitle */
                        font-family: Nunito;
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 700;
                        line-height: 22px; /* 137.5% */
                        text-decoration-line: underline;
                        text-decoration-style: solid;
                        text-decoration-skip-ink: auto;
                        text-decoration-thickness: auto;
                        text-underline-offset: auto;
                        text-underline-position: from-font;
                        margin: 0;
                    }

                    time {
                        color: var(--Text-Default-Secondary, #616B79);
                        text-align: right;
                        font-family: Nunito;
                        font-size: 12px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 20px; /* 166.667% */
                    }
                }
            }
        }
    }
}

div.registration-box-container {

    border: 1px solid #21212611;
    border-radius: 18px;
    padding: 0 0 0;
    background-color: #F4F5F7;

    h2 {
        font-size: 1.1em;
        margin: 10px 10px;
    }
    h3 {
        font-size: 1.2em;
        margin: 0px;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .registration-boxes {
        padding: 20px 10px 10px 10px;
        background-color: white;
        border-radius: 0 0 18px 18px;

        .registration-box {
            border: 1px solid #21212611;
            border-radius: 18px;
            display: flex;
            padding: 20px;
            margin-top: 10px;
            position: relative;
            overflow: hidden;

            @media screen and (max-width:560px) {
                display: block;
            }

            .date {
                width: 40%;
                opacity: 0.5;

                @media screen and (max-width:560px) {
                    display: flex;
                    width: 100%;
                    margin-bottom: 10px;
                }
            }
            .address {
                margin: 0px;
                width: 40%;
                opacity: 0.5;

                @media screen and (max-width:560px) {
                    display: flex;
                    width: 100%;
                    margin-bottom: 10px;
                }
            }
            .price {
                width: 20%;
                opacity: 0.5;

                @media screen and (max-width:560px) {
                    display: flex;
                    width: 100%;
                }
            }
            .sold-out {
                position: absolute;
                right: -40px;
                top: 20px;
                background-color: red;
                padding: 0 30px;
                transform: rotate(45deg);

                p {
                    color: white;
                    margin: 10px;
                    font-weight: 700;
                }
            }
            img.icon {
                max-width: 25px;

                @media screen and (max-width:560px) {
                    margin-right: 10px;
                }
            }
            p {
                margin: 5px 0 0px 5px;
                font-size: 16px;
                line-height: 20px;

                span {
                    font-size: 24px;
                }
            }
        }
        a {
            cursor: pointer;
        }
        a:hover, a:focus {
            text-decoration: none;
        }
    }
}