/* Block Styling */

.inghamdriven-news-container {
    display:flex;
    width: 100%;
    flex-wrap: wrap;
    /* margin-bottom: 15%; */
}

.inghamdriven-news-container a {
    text-decoration: none;
    position: relative;
    margin-bottom: 14rem;
}

.inghamdriven-single-news-container {
    min-width: 200px;
    flex: 1 1 25%;
    max-width: 500px;
    margin-right: 1rem;
    color: var(--ingham-text-color);
}

.inghamdriven-single-news-inner-container {
    width: 100%;
    background-color: white;
    position: relative;
    background-size: cover;
    border-bottom-left-radius: var(--ingham-border-radius-bottom-left);
    border-bottom-right-radius: var(--ingham-border-radius-bottom-right);
    border-top-left-radius: var(--ingham-border-radius-top-left);
    border-top-right-radius: var(--ingham-border-radius-top-right);
    box-shadow: var(--ingham-drop-shadow);
    overflow: hidden;
}

.inghamdriven-single-news-image-container img {
    width: 100%;
    border-top-left-radius: var(--ingham-border-radius-top-left);
    border-top-right-radius: var(--ingham-border-radius-top-right);
    display: block;
}

.inghamdriven-single-news-text-container {
    padding: 2rem;
    padding-bottom: 3rem;
    padding-top: 0px;
    position: absolute;
    left: 5%;
    width: 90%;
    z-index: 100;
    background-color: #f4f4f4;
    min-height: 230px;
    overflow: hidden;
    bottom: -10rem;
}

.inghamdriven-single-news-text-container > h3 {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.inghamdriven-single-news-text-container > p {
    display: block;
}

.inghamdriven-single-news-container .bottom-logos-container {
    flex: 1;
    justify-content: space-between;
    width: calc(90% - 100px);
}

.inghamdriven-single-news-container .bottom-logos-container > img:nth-child(n) {
    padding-left: 0.5rem;
    margin-left: 0.5rem;
}

.news-date-info {
    width: 60px;
    position: absolute;
    left: 3rem;
    top: 2rem;
    z-index: 200;
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.logo-and-link {
    position: absolute;
    bottom: 0rem;
    background-color: #f4f4f4;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 0.5rem;
    align-items: flex-end;
    width: 90%;
    padding-bottom: 0.8rem;
    left: 1rem;
}
.read-more-btn {

    color: var(--ingham-anchor-color);
    padding: 0px 5px 5px 0px;
    background-color: #f4f4f4;
    cursor: pointer;
}
.read-more-btn:focus {
    outline: none;
}
@media only screen and (max-width: 450px) {
    .inghamdriven-single-news-container {
        max-width: 100%;
        margin-right: 0px;
    }

    .inghamdriven-single-news-inner-container {
        height: initial;
    }

    .inghamdriven-single-news-container .bottom-logos-container {
        padding-left: 1rem;
    }
}

}
