﻿.abstract-listings {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.abstract-listing {
    display: flex;
    gap: 1em;
}

.abstract-image {
    position: relative;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.abstract-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
    .abstract-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--blue-light);
        mix-blend-mode: color;
        transition: all .3s ease;
        z-index: 11;
    }
        .abstract-image:hover::before{
            opacity: 0;
        }

        .abstract-details {
            flex-grow: 1;
        }

.abstract-article-image {
    width: 100%;
    max-height: 30em;
    object-fit: contain;
}

@media screen and (max-width: 991px) {
    .abstract-listing {
        flex-direction: column;
    }

    .abstract-image {
        width: 100%;
    }
}


#abstract_book {
    height: 1350px;
    padding: 20px 50px;
    position: relative;
    width: 950px;
    --body-font: "Inter";
    --heading-font: "Rubik";
}

    #abstract_book h2 {
        font-weight: 400;
        color: var(--blue-darker);
    }
#abstract_book img{
    max-width: 100%;
}