.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    color: #1EBBD7;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(30, 187, 215, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.event-content {
    padding: 25px;
}

.event-title {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.3em;
    min-height: 60px;
}

.event-btn {
    display: inline-block;
    background: #1EBBD7;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.event-btn:hover {
    background: #1697ad;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2em;
    }
}