/* ==============
    HERO SECTION
================= */
.blog-hero {
    height: 287px;
    background-image: url("../img/building.webp");
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Overlay (like screenshot) */
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.55) 70%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

/* Content */
.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Title Green Box */
.hero-title {
    width: 297px;
    height: 67px;

    background: #AA5A95;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Urbanist", sans-serif;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: #F3E6EF;

    margin: 0 auto 20px;
    /* center horizontally */
}


/* Breadcrumb */
.hero-breadcrumb {
    font-family: "Quicksand", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #FFFFFF;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-link:hover {
    opacity: 0.8;
    color: #F3E6EF;
}

.breadcrumb-current {
    color: #fff;
}




/* =========================
   EVENTS SECTION
========================= */

.events-section {
    background: #ffffff;
}

.main-event-img {
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;  
    background: #000;
}

.main-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-row {
    align-items: stretch;
}

/*  THIS IS THE IMPORTANT FIX */
.text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically center text */
}

.text-primary {
    color: #AA5A95 !important;
    font-family: "Quicksand", sans-serif;
}

.text-muted {
    color: #333 !important;
    font-family: "Quicksand", sans-serif;
}

.text-success {
    color: #AA5A95 !important;
}

/* Equal image styling */
.equal-img {
    height: 200px;
    /* border-radius: 14px; */
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.equal-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.right-img {
    margin-left: 10px;
}

.event-title {
    flex-wrap: nowrap;
}

.event-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


.equal-img {
    height: 250px;
    overflow: hidden;
}

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