.gallery_area {
    padding: 20px;
    background-image: linear-gradient(#e8f0ff 0%, white 52.08%);
    color: #0e3481;
    /* min-height: 100vh; */
}

/* Style next prev icons */

/* .lg-toolbar-next:before {
    content: "\e094";
}
.lg-toolbar-prev:before {
    content: "\e095";
} */

/** Below CSS is completely optional **/

/* .gallery-item {
    width: 200px;
    padding: 5px;
} */

/* .grid-item {
    float: left;
    width: 80px;
    height: 60px;
    border: 2px solid hsla(0, 0%, 0%, 0.5);
}

.grid-item--width2 {
    width: 160px;
}
.grid-item--height2 {
    height: 140px;
}

.grid-sizer,
.grid-item {
    width: 20%;
}
.grid-item--width2 {
    width: 40%;
}    */

* {
    box-sizing: border-box;
}

/* force scrollbar */
html {
    overflow-y: scroll;
}

body {
    font-family: sans-serif;
}

/* ---- grid ---- */

/* .grid {
    background: #ddd;
} */

/* clear fix */
.grid:after {
    content: "";
    display: block;
    clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
    width: 33%;
}

.grid-item {
    float: left;
}

.grid-item img {
    display: block;
    width: 100%;
}

.alumni-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 3rem auto;

    .alumni-container-cards {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2%;

        .alumni-card {
            display: flex;
            flex-direction: column;
            width: 32%;
            margin-bottom: 1.5rem;

            img {
                width: 100%;
                height: 14rem;
                object-fit: cover;
                border-radius: 3px;
            }
            .content {
                display: flex;
                gap: 1rem;

                .date {
                    display: flex;
                    flex-direction: column;
                    gap: 0;
                    align-items: center;

                    .day {
                        font-size: 37px;
                        font-weight: bolder;
                        color: #234f1e;
                        margin: 0;
                    }
                    .month {
                        font-size: 17px;
                        font-weight: bolder;
                        padding-bottom: 0.5rem;
                        border-bottom: 5px solid #234f1e;
                        color: #32364a;
                    }
                }

                .event {
                    display: flex;
                    flex-direction: column;
                    padding-top: 0.5rem;

                    h4 {
                        color: #32364a;
                        font-weight: bold;
                        font-size: 20px;
                        text-transform: uppercase;
                    }

                    .time,
                    .location {
                        display: flex;
                        align-items: center;
                        gap: 0.3rem;
                        color: #234f1e;
                    }
                }
            }
        }
    }
}
