/* section-plf-cpblty css */
.section-plf-cpblty {
    padding-inline: 1.5rem;
    padding-bottom: 10rem;
}
.plf-cpblty-title-wrap .sec-title-separate {
    width: 54rem;
}
.plf-cpblty-title-wrap .sec-tagline {
    display: inline-flex;
    margin-bottom: 1.5rem;
}
.plf-cpblty-title-wrap .sec-text {
    width: 36rem;
    color: rgba(var(--light-rgb), 0.5);
}
.plf-cpblty-wrap {
    --gap: 2rem;
    --icon-bdge-size: 4.4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 6rem;
}
.plf-ft-card {
    border-radius: 1.6rem;
    background: #0D0D0D;
    padding: 2.4rem;
}
.plf-ft-header {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}
.plf-ft-icon {
    width: var(--icon-bdge-size);
    min-width: var(--icon-bdge-size);
    height: var(--icon-bdge-size);
    border-radius: 1rem;
    background: #181818;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
}
.plf-ft-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light);
}
.plf-ft-text {
    font-size: 1.6rem;
    font-weight: normal;
    color: rgba(var(--light-rgb), 0.5);
}

@media (max-width: 1050px) {
    .section-plf-cpblty {
        padding-bottom: 7rem;
    }
    .plf-cpblty-wrap {
        --gap: 1.6rem;
        margin-top: 4rem;
    }
    .plf-ft-card {
        border-radius: 0.6rem;
        padding: 1.4rem;
    }
    .plf-ft-header {
        gap: 1rem;
        margin-bottom: 1rem;
    }
}
@media (max-width: 991px) {
    .plf-cpblty-title-wrap .sec-title-separate {
        width: 100%;
    }
    .plf-cpblty-title-wrap .sec-tagline {
        margin-bottom: 1.1rem;
    }
    .plf-cpblty-title-wrap .sec-text {
        width: 100%;
    }
    .plf-cpblty-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plf-cpblty-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}