/* Section */
.event-details-section {
    padding: 70px 0;
    overflow: hidden;
}

.event-details-section h2 {
    font-size: 40px;
    color: blue;
}

/* Title Line */
.line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
    display: inline-block;
    margin-top: 8px;
}

/* Card */
.insta-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
    height: 100%;
    border: 1px solid black;
}

.insta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* Thumbnail */
.insta-thumb {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.insta-thumb img {
    width: 100%;
    height: 100%;
    border: none;
}

/* Title */
.insta-info {
    padding: 15px;
    text-align: center;
}

.insta-info h6 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.4;
}
