/* =========================================
   IITBAA EVENTS
========================================= */

.iitbaa-events-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/* =========================================
   EVENT ITEM
========================================= */

.iitbaa-event-item {
    display: grid;

    grid-template-columns:
        minmax(0, 1.8fr)
        minmax(150px, 0.8fr)
        minmax(220px, 1fr)
        80px;

    gap: 30px;

    align-items: center;

    padding: 24px 40px;

    border-top: 1px solid rgba(255, 255, 255, 0.5);
}


/* =========================================
   EVENT TITLE
========================================= */

.iitbaa-event-title {
    margin: 0 0 8px;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 600;
}


/* =========================================
   DESCRIPTION
========================================= */

.iitbaa-event-description {
    font-size: 15px;

    line-height: 1.4;

    max-width: 430px;
}

.iitbaa-event-description p {
    margin: 0;
}


/* =========================================
   DATE
========================================= */

.iitbaa-event-date {
    font-size: 16px;

    white-space: nowrap;
}


/* =========================================
   LOCATION
========================================= */

.iitbaa-event-location {
    font-size: 15px;

    line-height: 1.4;
}

.iitbaa-event-location strong {
    font-weight: 400;
}

.iitbaa-event-location p {
    margin: 0;
}


/* =========================================
   ACTION
========================================= */

.iitbaa-event-action {
    display: flex;

    justify-content: center;

    align-items: center;
}

.iitbaa-event-action a {
    display: flex;

    justify-content: center;

    align-items: center;

    width: 42px;

    height: 42px;

    font-size: 32px;

    line-height: 1;

    color: inherit;

    text-decoration: none;

    transition: transform 0.3s ease;
}

.iitbaa-event-action a:hover {
    transform: translate(5px, -5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .iitbaa-event-item {
        grid-template-columns:
            1.5fr
            0.8fr
            1fr
            60px;

        gap: 20px;

        padding: 24px;
    }

    .iitbaa-event-title {
        font-size: 20px;
    }

    .iitbaa-event-description,
    .iitbaa-event-location {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .iitbaa-event-item {
        display: block;

        padding: 24px 20px;
    }


    .iitbaa-event-title {
        font-size: 20px;

        margin-bottom: 10px;
    }


    .iitbaa-event-description {
        margin-bottom: 20px;
    }


    .iitbaa-event-date {
        margin-bottom: 10px;
    }


    .iitbaa-event-location {
        margin-bottom: 15px;
    }


    .iitbaa-event-action {
        justify-content: flex-start;
    }

}