.recipes-section {
    position: relative;
}

.recipes-section .recipes-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 10px;
}

.recipes-section .recipe {
    display: inline-block;
    user-select: none;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .16);
    max-width: 540px;
    color: #363636;
    text-align: center;
    width: calc(100% - 15px);
    text-decoration: none;
}

.recipes-section .recipe:not(:first-child) {
    margin-left: 10px;
}

.recipes-section .recipe .recipe-image {
    width: 100%;
}

.recipes-section .recipe .recipe-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipes-section .recipe .recipe-title {
    font-family: "Oswald", sans-serif;
    font-size: 2.125rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 35px;
    padding: 0 10px;
}

.recipes-section .recipe .recipe-info, .recipes-section .recipe .recipe-description {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 22px;
    padding: 0 10px;
}

.recipes-section .recipe .recipe-description, .recipes-section .recipe .recipe-description h1, .recipes-section .recipe .recipe-description h2, .recipes-section .recipe .recipe-description h3, .recipes-section .recipe .recipe-description p {
    margin-top: 10px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 75px;
    font-size: 1rem !important;
    font-family: "Roboto", sans-serif !important;
    line-height: 22px !important;
    font-weight: 600 !important;
}

.recipes-section .recipe .recipe-button {
    margin-top: 30px;
}

.recipes-section .recipe .recipe-button a {
    padding: 10px 16px 10px 16px;
}

.recipes-section .recipe .recipe-button .icon {
    transform: translateY(0px);
}

@media all and (min-width: 600px) {
    .recipes-section .recipes-wrapper {
        padding: 40px;
    }

    .recipes-section .recipe:not(:first-child) {
        margin-left: 40px;
    }

    .recipes-section .recipe .recipe-image img {
        height: 280px;
    }
}

@media all and (min-width: 1800px) {
    .recipes-section .recipes-wrapper {
        display: flex;
        justify-content: center;
    }
}
