/*
Deals Page Styles
 */
body.page-template-template-deals {
    background-color: #FFFFFF;
}
body.page-template-template-deals .post-inner {
    padding-top: 0;
}
.deal-link-block {
    display: block;
}
#deal {
    border: 2px solid #EEEEEE;
    padding: 37px 40px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
#deal .deal-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#deal img {
    height: 185px;
    width: 100%;
    object-fit: cover;
}
#deal h2 {
    margin-top: 33px;
    margin-bottom: 9px;
    font-size: 26px;
    line-height: 105%;
}
#deal h2,
#deal .offer {
    height: 2em;
}
#deal .offer {
    margin-bottom: 26px;
    font-size: 18px;
    line-height: 105%;
}
#deal .url {
    color: #C4C4C4;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 105%;
}
#deal .access_button {
    background-color: #FF4713;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    text-transform: none;
    letter-spacing: normal;
    border: 1px solid #FF4713;
    padding: 12px 18px 14px;
    min-width: 205px;
}
#deal .access_button:hover {
    background-color: #FFFFFF;
    border-color: #FF4713;
    color: #FF4713;
    text-decoration: none;
}
@media (max-width: 767px) {
    #deal {
        border: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        margin-bottom: 30px;
    }
    #deal img {
        width: 50%;
    }
    #deal .deal-text {
        align-items: flex-start;
        margin-left: 15px;
    }
    #deal .deal-text * {
        text-align: left;
    }
    #deal .access_button {
        min-width: unset;
    }
    #deal h2 {
        margin-top: 0;
        margin-bottom: 9px;
        font-size: 22px;
        line-height: 105%;
    }
}