/* 活动页专用样式 */

/* 活动网格 */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    max-width: 800px;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin-right: 20px;
    flex-shrink: 0;
}

.event-date .month {
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.event-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}

.event-info p {
    color: #b8c5d1;
    font-size: 16px;
}

/* 活动页响应式设计 */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .event-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        margin-right: 0;
        margin-bottom: 15px;
        width: 70px;
        height: 70px;
    }
    
    .event-date .month {
        font-size: 12px;
    }
    
    .event-date .day {
        font-size: 20px;
    }
    
    .event-info h3 {
        font-size: 18px;
    }
    
    .event-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .events-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .event-item {
        padding: 20px 15px;
    }
    
    .event-date {
        width: 60px;
        height: 60px;
    }
    
    .event-date .month {
        font-size: 11px;
    }
    
    .event-date .day {
        font-size: 18px;
    }
    
    .event-info h3 {
        font-size: 16px;
    }
    
    .event-info p {
        font-size: 13px;
    }
}
