/* Events Container */
#events-container {
    padding: 20px 0;
    background-image: url('../assets/img/green-arrow.webp');
    background-size: cover;

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 50px;
        position: relative;
        display: inline-block;
    }

    .glass {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* Для Safari */
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .event-card {
        height: 100%;
        padding: 20px;
        border-radius: 16px;
    }

    .event-date {
        display: inline-block;
        border-radius: 25px;
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 24px;
        color: #707070;
    }

    .event-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .event-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .event-url {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        font-weight: 500;
        margin-top: 20px;
        transition: color 0.3s ease;
        color: #707070;
    }

    .event-url svg {
        transition: transform 0.3s ease;
    }

    .event-url:hover svg {
        transform: translateX(5px);
    }
}