.events-title {
    color: var(--blue-700);
    margin-left: 20px;
    font-size: 40px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}


.event-poster {
    margin-top: 20px;
}

.event-header {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}

.event-info {
    text-align: center;
}


.event-header img {
    width: 60px;
    height: auto;
    margin-right: 20px;
}

.event-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    color: var(--blue-700);
    font-size: 1em;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.event-content p {
    font-size: 1.2em;
    color: #0B2C5D;
    margin: 14px;
    line-height: 1.2em;
}

.event-links-wrapper {
    font-size: 1.2em;
    color: #0B2C5D;
    font-weight: bold;
    margin: 14px;
}

.event-links-wrapper a {
    text-decoration: none;
    color: #0B2C5D;
    text-decoration: underline;
}

.events-container {
    background-color: #0DA8CD;
    border-radius: 30px;
    color: white;
    width: 100%;
    height: 366px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    position: relative;
    box-shadow: var(--box-shadow), inset var(--box-shadow);
}







/* Позиционируем верхнюю границу */
.events-container::before {
    top: -20px;
}

/* Позиционируем нижнюю границу */
.events-container::after {
    bottom: -20px;
}

.events-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.events-container img {
    max-width: 50%;
    height: auto;
    margin-left: 150px;
    /* Уменьшаем отступ слева */
    margin-right: 20px;
    /* Добавляем отступ справа */
}

.events-content {
    margin: 0 20px;
    /* Уменьшаем отступы справа и слева */
    flex: 1;
}

.events-content p {
    font-weight: bold;
    margin-left: 80px;
    font-size: 30px;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    max-width: 65%;
}

.event-date {
    font-size: 1.2em;
    color: #0B2C5D;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}