/**
 * Theme Name: Module Child
 * Theme URI: https://www.wpcom.cn/themes/module.html
 * Version: 1.0
 * Author: WPCOM
 * Author URI: https://www.wpcom.cn
 * Template: module
 */

@import url("../module/css/style.css");

.feature-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3px;
}
.feature-content-item{
    position: relative;
    cursor: pointer;
    width: calc((100% - 3px * 3) / 4);
}
.feature-content-item::after {
    width: 45px;
    height: 5px;
    background: rgba(255, 255, 255, 0.21);
    position: absolute;
    z-index: 2;
    left: 12%;
    bottom: 15%;
    content: '';
}
.feature-content-img{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.feature-content-img img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}
.feature-content-img:after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.62);
    content: '';
    transition: all 0.5s ease;
}
.feature-content-content{
    position: absolute;
    width: 76%;
    left: 12%;
    top: 17%;
    color: rgba(255, 255, 255, 0.75);
}
.feature-content-icon .wpcom-icon{
    display: block;
    width: 64px;
    height: auto;
    font-size: 64px;
    line-height: 1;
    color: #fff;
    transition: all 1s ease;
}
.feature-content-title{
    margin: 13% 0 9%;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
}
.feature-content-text{
    opacity: 0;
    font-size: 16px;
    line-height: 1.67;
}
.feature-content-item.active .feature-content-text{
    opacity: 1;
}
.feature-content-item.active .feature-content-img img {
    transform: scale(1.1);
}
.feature-content-item.active .feature-content-img:after{
    background: var(--theme-hover);
    opacity: .9;
    transition: all 0.5s ease;
}
.feature-content-item.active .feature-content-icon .wpcom-icon{
    transform: scale(1.1);
    transition: all 1s ease;
}

@media (max-width: 1599px) {
    .feature-content-item::after {
        left: 10%;
    }
    .feature-content-content {
        width: 80%;
        left: 10%;
        top: 10%;
    }
    .feature-content-icon .wpcom-icon {
        width: 60px;
        font-size: 60px;
    }
    .feature-content-title {
        margin: 10% 0 8%;
        font-size: 20px;
    }
    .feature-content-text {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .feature-content-item {
        width: calc((100% - 3px) / 2);
    }

    .feature-content-icon .wpcom-icon {
        width: 60px;
        font-size: 60px;
    }

    .feature-content-text {
        opacity: 1;
    }
}

@media (max-width: 580px) {
    .feature-content-icon .wpcom-icon {
        width: 38px;
        font-size: 38px;
    }
    .feature-content-title{
        font-size: 16px;
        font-weight: 600;
    }
    .feature-content-text,.feature-content-item.active .feature-content-text {
        opacity: 0;
    }
}