.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.event-card {
    display: flex;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 900px;
    max-width: 100%;
}

.event-image {
    width: 300px;
    min-width: 300px;
    height: 250px;
    background: #f4f4f4;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    display: flex;
    flex: 1;
    padding: 20px;
    justify-content: space-between;
}

.event-main {
    flex: 1;
    padding-right: 20px;
}

.event-type {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.event-title {
    font-size: 24px;
    margin: 10px 0;
    color: #333;
    line-height: 1.3;
}

.event-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.event-details {
    width: 300px;
    text-align: right;
    border-left: 1px solid #e0e0e0;
    padding-left: 20px;
}

.event-datetime {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.event-pricing {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.event-venue {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.view-details-button {
    display: inline-block;
    background: #C41E3A;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.view-details-button:hover {
    background: #A01830;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-image {
        width: 100%;
        height: 200px;
    }
    
    .event-content {
        flex-direction: column;
    }
    
    .event-main {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .event-details {
        width: 100%;
        text-align: left;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 20px;
    }
}
