.special-offers {
    display: flex;
    flex-wrap: wrap;
}

.special-offers__tile {
    display: flex;
    flex-grow: 1;
    max-width: 600px;
    border: 2px dashed #333;
    overflow: hidden;
    padding: 10px;
    margin: 10px;
   
}

.special-offers__imageholder {
     flex-shrink: 0;
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}


.special-offers__image {
   
    max-height: 200px;
    max-width: 200px;
    vertical-align: middle;
}

.special-offers__tile-content {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    /* color: #fff; */
    margin-left: 10px;
    padding: 10px 0;
   
}

.special-offers__tile-content h4 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 0.3em;
}

.special-offers__tile-content p {
    font-size: 14px;
    font-family: sans-serif;
}

.special-offers__cat {
    display: flex;
    background-color: #0f3460;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: sans-serif;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 10px;
    margin-top: 10px;
    opacity: 0.90;
    text-decoration: none;
}

.special-offers__cat:hover {
    opacity: 1;
}

.special-offers__button {
    display: flex;
    background-color: #2d5f74;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 2px;
    margin-top: auto;
    text-decoration: none;
}

.special-offers__button:hover {
    background-color: #cccccc;
    color: #000000;
}




/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (max-width: 752px) {

.special-offers__tile {
    display: flex;
    flex-shrink: 1;
    width: 400px;
    border: 2px dashed #333;
    overflow: hidden;
    padding: 5px;
    margin: 5px;
   
}

.special-offers__image {
    flex-shrink: 1;
    align-items: flex-start;
    background-size: cover;
    height: 150px;
    width: 150px;
  
}



    }