/* section-powerful-tools css */
.section-powerful-tools {
    padding-inline: 1.5rem;
    padding-bottom: 10rem;
}
.powerful-tools-wrap {
    --gap: 4.8rem; 
    gap: var(--gap);
    margin-top: 6rem;
}
.powerful-tools-card {
    background: rgba(32, 32, 32, 0.47);
    overflow:hidden;
    cursor:pointer;
    transition: width .45s, height .45s, flex .45s;
}
.powerful-tools-card img{
    width:100%;
    display:block;
    object-fit:cover;
}
.tools-card-large  {
    width: calc((55.5% - (var(--gap) / 2)) / 1);
    border-radius: 3.6rem;
    padding: 5.6rem 3.6rem;
}
.tools-card-large img {
    min-height: 46.5rem;
    max-height: 46.5rem;
    border-radius: 2.1rem;
}
.tools-card-large .tools-card-content { padding-top: 2.2rem; }
.tools-card-large h4 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 2rem;
}
.tools-card-large p {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--light);
}

.small-powerful-tools-wrap {
    --gap-sm: 2rem;
    width: calc((44.5% - (var(--gap) / 2)) / 1);
    gap: var(--gap-sm);
}
.tools-card-small {
    width: calc((100% - (var(--gap-sm))) / 2);
    padding: 1.6rem 1.4rem;
    border-radius: 1.2rem;
}
.tools-card-small img {
    min-height: 17.8rem;
    max-height: 17.8rem;
    border-radius: 1rem;
}
.tools-card-small .tools-card-content { padding-top: 0.8rem; }
.tools-card-small h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light);
    text-align:center;
    margin-bottom: 0.7rem;
}
.tools-card-small p {
    font-size: 1.6rem;
    color: var(--light);
    text-align:center;
}

@media (max-width: 1050px) {
    .section-powerful-tools {
        padding-bottom: 6rem;
    }
    .powerful-tools-wrap {
        --gap: 2.8rem; 
        margin-top: 4rem;
    }
    .tools-card-large  {
        border-radius: 1.5rem;
        padding: 3.5rem 2.2rem;
    }
    .tools-card-large img {
        min-height: 40.5rem;
        max-height: 40.5rem;
        border-radius: 1rem;
    }
    .tools-card-large .tools-card-content { padding-top: 2.2rem; }
    .tools-card-large h4 {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    .tools-card-large p {
        font-size: 1.6rem;
    }

    .small-powerful-tools-wrap {
        --gap-sm: 1.6rem;
    }
    .tools-card-small {
        padding: 1.4rem 1.2rem;
        border-radius: 0.8rem;
    }
    .tools-card-small img {
        min-height: 12.8rem;
        max-height: 12.8rem;
        border-radius: 0.6rem;
    }
    .tools-card-small h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .tools-card-small p {
        font-size: 1.4rem;
    }
}
@media (max-width: 991px) {
    .tools-card-large,
    .small-powerful-tools-wrap {
        width: 100%;
    }
    .tools-card-large h4 {
        font-size: 2rem;
    }
    .tools-card-large img {
        min-height: 43.5rem;
        max-height: 43.5rem;
        border-radius: 1rem;
    }
    .tools-card-small img {
        min-height: 15.8rem;
        max-height: 15.8rem;
    }
}
@media (max-width: 520px) {
    .tools-card-large img {
        min-height: 30.5rem;
        max-height: 30.5rem;
    }
    .tools-card-small img {
        min-height: 13.8rem;
        max-height: 13.8rem;
    }
}