.events-today {
    margin-top: 32px;
}

.events-today > h2, .hot-events > h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
}

.events-today_item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 16px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.events-today_item-day {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.events-today_item-day > span {
    font-size: 32px;
    font-weight: 600;
}

.events-today_item-day > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.events-today_item-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
}

.info-site {
    display: flex;
    gap: 8px;
}

.info-site > img {
    width: 32px;
    height: 32px;
}

.info-site > a {
    font-size: 14px;
}

.events-today_item-info > h5 {
    font-size: 16px;
    font-weight: bold;
}

.info-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.events-today_item-info > p {
    font-size: 14px;
}

.info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.veles-ginarea {
    padding: 8px 16px;
    text-align: center;
    border-radius: 10px;
    background-color: #7974E1 ;
    color: #f9f9f9;
    font-size: 16px;
}

.info-tag {
    background-color: rgba(121, 116, 225, 0.7);
    padding: 4px 12px;
    border-radius: 1000px;
    font-size: 12px;
}

.info-status {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 0;
}

.hot-events_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media  screen and (max-width: 1100px) {
    .events-today_item {
        display: flex;
        flex-direction: column;
        padding: 16px;
        position: relative;

    }

    .events-today_item-info {
        width: 100%;
    }

    .events-today_item-day {
        display: flex;
        flex-direction: row;
    }

    .events-today_item-day > p {
        color: #FFF;
        font-size: 24px;
        font-weight: bold;
    }

    .info-type {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .info-type::before {
        content: url("../images/location.svg");
    }

    .info-footer {
        align-items: center;
    }

    .info-status > li > a {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .info-status > li > a > span {
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
    }

    .events-today_item > img {
        position: absolute;
        border-radius: 12px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: -1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

    .mob-events-list {
        margin-top: 32px;
    }

    .mob-events-post {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 16px;
        display: flex;
        gap: 12px;
        align-items: center;
        margin-top: 32px;
    }

    .mob-events-post_date {
        display: inline-block;
        transform: rotate(-90deg);
        transform-origin: center;
        letter-spacing: 2px;
        white-space: nowrap;
        font-size: 24px;
        font-weight: bold;
    }

    .mob-events-post_info > h2 {
        font-size: 16px;
        font-weight: 500;
    }

    .mob-events-post_img {
        height: 100px;
        width: 82px;
        overflow: hidden;
        border-radius: 8px;
    }

    .mob-events-post_img > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hot-events_list {
        grid-template-columns: repeat(1, 1fr);
    }

    .events-tag {
        text-transform: uppercase;
    }

    .online-events, .offline-events, .all-events.active {
        display: none;
    }

    .offline-events.active, .online-events.active {
        display: block;
    }

    /* Стили для тегов */
    .tag-filter {
        display: inline-block;
        margin: 0 10px 10px 0;
        padding: 4px 12px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 12px;
        text-decoration: none;
        color: #fff;
        text-transform: uppercase;
        font-size: 12px;
    }

    .tag-filter.active {
        background: #A250F1;
        color: white;
    }

    .tag-filter:hover {
        background: #A250F1;
    }

    .blog-tags-accordion {
        margin-bottom: 20px;
    }

    .accordion-title {
        cursor: pointer;
        padding: 10px;
        background: #f5f5f5;
    }

    .accordion-content {
        padding: 10px;
        background: #fafafa;
    }

    .calendar-item {
        display: none;
    }
}