/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#top #wrap_all .dc-linkedin-feed h2,
#top #wrap_all .dc-linkedin-feed h1 {
    color: #ef4123 !important;
}

.linkedin-posts {
    width: 100%;
    display: flex;
    column-gap: 10px;
    padding: 5px;
    flex-wrap: wrap;
}

.image-container img {
    max-height: 40vh;
    min-height: 40vh;
    /* Set your desired height here */
    width: 100%;
    border-radius: 10px;
    vertical-align:baseline;
    transition: .3s ease;
    object-fit: fill !important;
    transform: scale(1.04);
}

.image-container img:hover {
    transform: scale(1.06);

}

.linkedin-title {
    position: absolute;
    bottom: 0px;
    padding: 15px;
    color: #fff !important;
    background: #00000047;
    width: 100%;
    backdrop-filter: blur(1px);
    display: flex;
}


.linkedin-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.single_post {
    overflow: hidden;
    border-radius: 5px;
}

.single-post-div {
    float: left;
    width: 32%;
    min-width: 25%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.075);
    border-radius: 5px;
    margin-top: 10px;

}

@media only screen and (max-width: 820px) {

    .image-container img {
        height: auto !important;
        /* Set your desired height here */
        width: 100%;
    }

    .single-post-div {
        float: left;
        width: 100%;
        margin-top: 10px;
    }

    .image-container img {
        max-height: 400px;
        min-height: 200px;
        /* Set your desired height here */
        width: 100%;
        border-radius: 5px;
    }
}

@media only screen and (max-width: 912px) {

    .image-container img {
        height: auto !important;
        /* Set your desired height here */
        width: 100%;
    }

    .single-post-div {
        float: left;
        width: 100%;
        margin-top: 10px;
    }

    .image-container img {
        max-height: 400px;
        min-height: 200px;
        /* Set your desired height here */
        width: 100%;
        border-radius: 5px;
    }
}