/* Features shortcode - simple clean cards */
.yc-shode-box.yc-shcode--features {
    --yc-card-radius: 18px;
    --yc-soft-border: rgba(10, 24, 64, 0.10);
    --yc-soft-shadow: 0 12px 32px rgba(10, 24, 64, 0.06);
    position: relative;
    margin: 38px 0;
    border: 1px solid var(--yc-soft-border);
    border-radius: 24px;
    background: var(--background3);
    box-shadow: 0 16px 44px rgba(10, 24, 64, 0.05);
    overflow: hidden;
}

.yc-shode-box.yc-shcode--features::before {
    content: "";
    position: absolute;
    inset-inline-start: 24px;
    top: 0;
    width: 92px;
    height: 4px;
    border-radius: 0 0 12px 12px;
    background: var(--uicolor, #ffcd1f);
}

.yc-shode-box.yc-shcode--features .--short--code--title {
    max-width: 720px;
    margin: 0 auto 10px;
    color: var(--primarytext, #07153d);
    font-size: clamp(21px, 2.2vw, 28px);
    text-align: center;
}

.yc-shode-box.yc-shcode--features .--short--code--content {
    max-width: 760px;
    margin: 0 auto 26px;
    color: var(--secondarytext, #5d6475);
    font-size: 15px;
    line-height: 1.85;
    text-align: center;
}

.yc-fea-it {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.yc-sh-sine-fes {
    position: relative;
    padding: 22px;
    border: 1px solid var(--yc-soft-border);
    border-radius: var(--yc-card-radius);
    background: #fff;
    box-shadow: var(--yc-soft-shadow);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 377px;
}

.yc-sh-sine-fes:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 205, 31, 0.65);
    box-shadow: 0 18px 40px rgba(10, 24, 64, 0.09);
}

.yc-shortcode-features--icon {
    width: 46px;
    height: 46px;
    margin: 0 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 205, 31, 0.16);
    color: var(--uicolor2, #07153d);
    font-size: 20px;
    line-height: 1;
}

.yc-shortcode-features--icon i,
.yc-shortcode-features--icon svg {
    max-width: 24px;
    max-height: 24px;
    color: currentColor;
    fill: currentColor;
}

.yc-shcode-inf {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yc-shcode-inf h3 {
    margin: 0;
    color: var(--primarytext, #07153d);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

.yc-shcode-inf p {
    margin: 0;
    color: var(--secondarytext, #5d6475);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.85;
}

@media only screen and (max-width: 991px) {
    .yc-fea-it {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 697px) {
    .yc-sh-sine-fes {
    min-width: 250px;
    max-width: 100%;
}
}

@media only screen and (max-width: 640px) {
    .yc-shode-box.yc-shcode--features {
        margin: 28px 0;
        padding: 15px 16px;
        border-radius: 20px;
    }

    .yc-fea-it {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .yc-sh-sine-fes {
        padding: 10px;
    }

    .yc-shortcode-features--icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .yc-shcode-inf h3 {
        font-size: 15px !important;
    }

    .yc-shcode-inf p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 400px) {
    .yc-sh-sine-fes {
    min-width: 100%;
}
}