/* Block Styling */

.inghamdriven-promotions-container {
    display:flex;
    width: 100%;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.inghamdriven-promotions-container a {
    text-decoration: none;
}

.inghamdriven-promotion-container {
    min-width: 200px;
    flex: 1 1 33%;
    max-width: calc(33% - 1rem);
    margin-right: 1rem;
    color: var(--ingham-text-color);
}

.inghamdriven-promotion-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);
    min-height: 350px;
    overflow: hidden;
}

.inghamdriven-promotion-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);
}

.inghamdriven-promotion-text-container {
    padding: 1rem;
    padding-top: 0px;
}

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

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


@media only screen and (max-width: 450px) {
    .inghamdriven-promotion-container {
        max-width: 100%;
        margin-right: 0px;
    }

    .inghamdriven-promotion-inner-container {
        height: initial;
    }
}
