.article-container {
    max-width: 870px;
    padding: 0 12px 0;
    margin: 0 auto;
}

.article-date {
    font-weight: 400;
    color: #848484;
    margin-bottom: 40px;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.article-author img {
    height: 48px;
    width: 48px;
    display: block;
}

.article-author a {
    color: #e15942;
    text-decoration: none;
}

.article-author a:hover {
    text-decoration: underline;
}

.article-author .text {
    margin: 0;
}

.footer .article-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.content {
    margin-bottom: 57px;
}

.reccommended {
    margin-bottom: 133px;
}

.reccommended .cards {
    margin-bottom: 0;
}

.content-images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.content-images .cover {
    max-height: 500px;
    margin-bottom: 7px;
}

.content-images img {
    width: 50%;
    max-height: 569px;
    object-fit: cover;
}

.content-images .cover {
    width: 100%;
}

.list li {
    margin-left: 27px;
}

.list li {
    margin-bottom: 3px;
}

.product-card-modern {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 35px 50px 15px 25px;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    background: #ffffff;
    transition: box-shadow .25s ease;
    margin-bottom: 36px;
}

.product-card-modern:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

.product-card-modern .product-image {
    flex: 0 0 280px;
    max-width: 280px;
}

.product-card-modern .product-image img {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    object-fit: contain;
    padding: 35px;
}

.product-card-modern .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-modern .product-title {
    margin-bottom: 14px;
}

.product-card-modern .product-description {
    margin-bottom: 24px;
    line-height: 165%;
    color: #4e4e4e;
    font-size: 16px;
}

.product-card-modern .product-features {
    list-style-type: none;
    margin-bottom: 22px;
    font-size: 16px;
}

.product-card-modern .product-features li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
    text-align: left;
}

.product-card-modern .product-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff7a00;
    font-weight: bold;
}

.product-card-modern .product-link {
    align-self: flex-start;
    padding: 10px 22px;
    background: #ff7a00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background .25s ease;
    display: inline-block;
}

.product-card-modern .product-link:hover {
    background: #e86d00;
}

.quick-picks {
    margin: 32px 0 40px;
    padding: 24px 34px;
    border: 1px solid #f0e2dd;
    border-radius: 12px;
    background-color: #fffbf9;
}

.quick-picks-title {
    margin-bottom: 12px;
}

.quick-picks-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.quick-pick-item+.quick-pick-item {
    margin-top: 10px;
}

.quick-pick-label {
    margin: 0;
}

.quick-pick-link {
    display: inline-block;
    margin-top: 2px;
    text-decoration: none;
    color: #e15942;
    font-size: 16px;
}

.quick-pick-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 870px) {
    
    .reccommended-title {
        text-align: center;
    }
}

@media screen and (max-width: 820px) {

    .product-card-modern {
        flex-direction: column;
        padding-right: 25px;
        padding-bottom: 10px;
    }

    .reccommended {
        margin-bottom: 50px;
    }

    .reccommended-title {
        font-size: 28px;
        text-align: center;
    }
}


@media screen and (max-width: 600px) {

    .quick-picks-title {
        font-size: 26px;
    }

    .quick-picks .text {
        text-align: left;
    }
}

@media screen and (max-width: 600px) {
    .quick-picks {
        padding: 20px 12px;
    }
}