.events-container {

    .filters-row {
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media screen and (max-width: 500px) {
            flex-direction: column;
            gap: 10px;
            div {
                width: 100%;
            }

            button {
                width: 100%;
            }
        }

        .left-section {
            display: flex;
            align-items: center;
            gap: 15px;

            @media screen and (max-width: 500px) {
                flex-direction: column;
                width: 100%;
            }

            .dates-row {
                display: flex;
                align-items: center;
                gap: 5px;
            }


            .vertical-line {
                width: 1px;
                height: 12px;
                background: rgba(0, 0, 0, 0.3);
            }
        }

        .events-count {
            color: var(--primary-text-color);
            font-weight: 600;
            font-size: 14px;
            text-align: center;

            @media screen and (max-width: 500px) {
                text-align: left;
            }
        }
    }

    .event-row {
        display: grid;
        gap: 10px;
        grid-template-columns: 2fr 2fr 1fr;
        border-radius: 12px;
        padding: 8px 8px 8px 12px;
        background: rgba(0, 0, 0, 0.02);

        @media screen and (max-width: 500px) {
            display: flex;
            flex-direction: column;
            padding: 6px;
        }

        .row-align-right {
            justify-content: flex-end;
        }

        .description {
            color: var(--secondary-text-color);
            font-weight: 400;
            font-size: 14px;
        }

        .bottom-position {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .left-position-mobile {
            @media screen and (max-width: 500px) {
                align-items: flex-end;
            }
        }

        .mobile-justify-space-between {
            @media screen and (max-width: 500px) {
                justify-content: space-between;
            }
        }

        .event-name {
            color: var(--primary-text-color);
            font-weight: 400;
            font-size: 16px;
        }

        .description-block {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .colored-row {
        background: rgba(0, 171, 194, 0.08);
    }

}
