* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.year-section {
    overflow: hidden;
}
.event-card {
    width: 95%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid black;
}

.fw-bold {
    font-size: 40px;
    color: blue;
}

/* Title */
.line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
}

.event-card:hover {
    transform: translateY(-8px);
}

/* Image */
.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2563eb;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

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

.event-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-content p {
    color: #434343;
    font-size: 16px;
    line-height: 1.6;
}

/* Meta */
.event-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 17px;
    color: #434343;
    margin-top: 15px;
}
.event-meta i {
    color: blue;
    margin-right: 8px !important;
}

/* Footer */
.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-right: 30px;
}

.event-footer .impact {
    color: #16a34a;
    font-weight: 600;
    margin-left: 30px;
}

.event-footer .learn-more {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
}
