/* ===== EVENT SECTION WRAPPER ===== */
.iam-event-section {
    padding: 10px 15px;
	text-align:center;
}

/* ===== SMALL LABEL ===== */
.iam-event-section .iam-event-subtitle {
    color: #f47c20;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* ===== SECTION TITLE ===== */
.iam-event-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b2c4d;
    margin-bottom: 10px;
	
}

/* underline effect */
.iam-event-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #f47c20;
    margin: 10px auto 20px;
}

/* description */
.iam-event-section p {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 15px;
}

/* ===== GRID LAYOUT ===== */
.iam-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ===== EVENT CARD ===== */
.iam-event-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #f0dba8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;

}

.iam-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ===== IMAGE ===== */
.iam-event-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

/* ===== DATE BADGE ===== */
.iam-event-date-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: #0b2c4d;
    padding: 10px 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.iam-event-date-box span {
    display: block;
    font-size: 20px;
    color: #f47c20;
}

/* ===== CONTENT ===== */
.iam-event-content {
    padding: 20px;
}

/* ===== TITLE ===== */
.iam-event-title {
    font-size: 18px;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 10px;
}

/* ===== META ===== */
.iam-event-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===== DESCRIPTION ===== */
.iam-event-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.iam-event-btn {
    display: inline-block;
    color: #f47c20;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.iam-event-btn:hover {
    text-decoration: underline;
}

/* ===== VIEW ALL BUTTON ===== */
.iam-event-view-all {
    margin-top: 35px;
}

.iam-event-view-all a {
    background: #f47c20;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.iam-event-view-all a:hover {
    background: #d96510;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .iam-event-section {
        padding: 10px 15px;
		
    }

    .iam-event-section h2 {
        font-size: 26px;
    }

    .iam-event-card img {
        height: 180px;
    }

    .iam-event-content {
        padding: 15px;
    }
}