/* Main container */
.events-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    color: #111;
}

/* Heading */
.events-heading {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Section title */
.events-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    padding-top: 30px;
    text-align: center;
    color: #444;
}

/* Project card */
.project-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Project title */
.project-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Video wrapper (responsive) */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

/* iframe fill */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Description */
.project-description {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Coming soon card */
.coming-soon {
    text-align: center;
    opacity: 0.7;
    border-style: dashed;
}