.fcm-article-products {
    margin-top: 30px;
}

.fcm-article-faq {
    margin-top: 30px;
}

.fcm-inline-product-card {
    overflow: hidden;
    margin: 24px 0;
    background-color: #fff;
    border: 1px solid #edf0f2;
    border-radius: 5px;
}

.fcm-inline-product-card a {
    display: grid;
    grid-template-columns: minmax(180px, 38%) minmax(0, 1fr);
    color: #333;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    outline: 0;
}

.article-content .fcm-inline-product-card a,
.article-content .fcm-inline-product-card a:hover,
.article-content .fcm-inline-product-card a:focus {
    color: #333;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.fcm-inline-product-card__media {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    background-color: #f3f5f6;
}

.fcm-inline-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease-in-out;
}

.fcm-inline-product-card:hover .fcm-inline-product-card__media img {
    transform: scale(1.04);
}

.fcm-inline-product-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
}

.fcm-inline-product-card__body h3 {
    overflow: hidden;
    margin: 0;
    color: #222;
    font-size: 18px;
    line-height: 1.35;
}

.fcm-inline-product-card__body p {
    overflow: hidden;
    margin: 10px 0 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}

.fcm-inline-product-card__meta {
    display: block;
    overflow: hidden;
    margin-top: 12px;
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fcm-article-faq h3,
.fcm-article-products h3 {
    margin: 0;
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
}

.fcm-article-faq h3 .faent,
.fcm-article-products h3 .faent {
    font-size: 18px;
    width: 18px;
    display: inline-block;
    margin-right: 10px;
}

.fcm-article-faq__items {
    margin-top: 15px;
    background-color: #fff;
    border-radius: 5px;
}

.fcm-article-faq details {
    padding: 15px 18px;
    border-top: 1px solid #edf0f2;
}

.fcm-article-faq details:first-child {
    border-top: 0;
}

.fcm-article-faq summary {
    color: #222;
    font-weight: bold;
    cursor: pointer;
}

.fcm-article-faq p {
    margin: 10px 0 0;
    color: #666;
    line-height: 1.8;
}

.fcm-article-products ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px 2%;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    text-align: left;
}

.fcm-article-products li {
    padding: 12px;
    min-width: 0;
    background-color: #fff;
    border-radius: 5px;
}

.fcm-article-product__media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
    background-color: #f3f5f6;
    border-radius: 4px;
}

.fcm-article-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease-in-out;
}

.fcm-article-product__media span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #aaa;
    font-size: 12px;
    text-align: center;
}

.fcm-article-product__media:not(.is-missing) span {
    display: none;
}

.fcm-article-products li:hover .fcm-article-product__media img {
    transform: scale(1.04);
}

.fcm-article-product__title {
    display: block;
    overflow: hidden;
    height: 38px;
    color: #333;
    line-height: 19px;
}

.fcm-article-products p {
    overflow: hidden;
    margin: 7px 0 0;
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .fcm-article-products ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .fcm-inline-product-card {
        margin: 18px -15px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .fcm-inline-product-card a {
        display: block;
    }

    .fcm-inline-product-card__media {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .fcm-inline-product-card__body {
        padding: 14px 15px 16px;
    }

    .fcm-inline-product-card__body h3 {
        font-size: 15px;
    }

    .fcm-inline-product-card__body p {
        font-size: 13px;
    }

    .fcm-article-faq,
    .fcm-article-products {
        margin-top: 7.5px;
        margin-left: -15px;
        margin-right: -15px;
        text-align: center;
    }

    .fcm-article-faq h3,
    .fcm-article-products h3 {
        position: relative;
        font-size: 15px;
        margin: 15px auto 11.25px;
        display: inline-block;
    }

    .fcm-article-faq h3::before,
    .fcm-article-faq h3::after,
    .fcm-article-products h3::before,
    .fcm-article-products h3::after {
        position: absolute;
        top: 50%;
        content: "";
        height: 1px;
        width: 30px;
        background-color: rgba(0, 0, 0, .12);
    }

    .fcm-article-faq h3::before,
    .fcm-article-products h3::before {
        left: -40px;
    }

    .fcm-article-faq h3::after,
    .fcm-article-products h3::after {
        right: -40px;
    }

    .fcm-article-faq__items {
        margin-top: 0;
        border-radius: 0;
        text-align: left;
    }

    .fcm-article-faq details {
        padding: 14px 15px;
    }

    .fcm-article-products ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2px;
        margin-top: 0;
    }

    .fcm-article-products li {
        border-radius: 0;
    }

    .fcm-article-product__media {
        border-radius: 0;
    }

    .fcm-article-product__title {
        height: 34px;
        font-size: 12px;
        font-weight: bold;
        line-height: 17px;
        text-align: left;
    }

    .fcm-article-products p {
        text-align: left;
    }
}
