/* ==============
    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: 330px;
    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;
}

/* TAG */
.events-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #F3E6EF;
    color: #AA5A95;

    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;

    border-radius: 6px;

    width: 276px;
    height: 48px;
}

/* TITLE */
.events-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -2%;
    color: #333;
    margin-bottom: 120px;
}

.events-title span {
    color: #AA5A95;
}

/* EVENT CARD */
.events-row {
    margin-top: -40px;
}

.events-section .extra-event {
    display: none;
}

.events-section.show-all .extra-event {
    display: block;
}


.events-row>div {
    margin-top: 30px;
}

.events-row>div:nth-child(odd) {
    padding-right: 20px;
}

.events-row>div:nth-child(even) {
    padding-left: 20px;
}

.event-card {
    background: #FFFFFF;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* SUBTLE HOVER */
.event-card:hover {
     outline: 2px solid #AA5A95;
    outline-offset: 0px;
}

/* IMAGE */
.event-img {
    width: 48%;
}

.event-img img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.08);   
}


/* CONTENT */
.event-content {
    width: auto;
    padding: 35px !important;
    height: 244px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ORGANISATION */
.event-org {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #AA5A95;
    margin-bottom: 18px;
}

.event-org img {
    width: 36px;
    height: 35px;
}

/* TITLE */
.event-content h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
} 

/* DESCRIPTION */
.event-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #6A6A6A;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }

    .event-img,
    .event-content {
        width: 100%;
    }

    .event-img {
        height: 200px;
    }
}