.ad-wrapper {
    border: 1px solid #4B4B4B;
    width: calc(40% - 2rem - 2px);
    height: calc(350px - 2rem - 2px);
    background-color: #272727;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}


    .ad-text-wrapper {
        text-transform: uppercase;
        font-family: "Roboto", sans-serif;;
        font-weight: 300;
        color: #fff;
        font-size: .75rem;
        line-height: .75rem;
        letter-spacing: 0;
    }

    .ad-image {
        width: 100%;
    }

        .ad-image img {
            width: 100%;
            height: auto;
            max-width: 500px;
        }

@media(max-width: 600px) {
    .ad-wrapper {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

        .ad-image img {
            max-width: 100%;
        }
}

@media(max-height: 600px) {
    .ad-wrapper {
        height: 124px;
        padding: .5rem;
    }

        .ad-wrapper img {
            width: auto;
            height: calc(100% - 1rem);
        }
}
