/* Events Page Styles - Matching Original Design */

.events-container {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Events Sections */
.events-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.events-section-gray {
    background-color: #ffffff;
}

/* 2x2 Grid Layout */
.events-grid-4x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

/* 1x3 Grid Layout */
.events-grid-1x3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Event Card */
.event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

.event-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Event Image */
.event-image {
    height: 200px;
    overflow: hidden;
}

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

/* Event Content */
.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 8px;
}

.event-content p strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Examples Section */
.examples {
    margin-top: 20px;
}

.examples h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.examples ul li {
    font-size: 0.85rem;
    color: #666;
    padding: 2px 0;
    position: relative;
    padding-left: 15px;
    line-height: 1.4;
}

.examples ul li:before {
    content: '•';
    color: #999;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .events-grid-1x3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .events-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-grid-1x3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-content h3 {
        font-size: 1.1rem;
    }
    
    .event-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .events-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .event-content {
        padding: 15px;
    }
    
    .event-content h3 {
        font-size: 1rem;
    }
    
    .event-image {
        height: 150px;
    }
}