/* =========================================================
   FEATURE CARD
========================================================= */

.feature-card {

    padding: 2rem;

    border-radius: var(--bs-border-radius-lg);

    background-color: #FFFFFF;

    border:
        1px solid var(--bs-border-color);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--bs-box-shadow);
}

/* =========================================================
   ICON WRAPPER
========================================================= */

.icon-wrapper {

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color:
        var(--bs-primary-bg-subtle);

    color:
        var(--bs-primary);

    font-size: 1.5rem;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {

    margin-bottom: 3rem;

    text-align: center;
}

.section-title h2 {

    margin-bottom: 1rem;
}

.section-title p {

    color: var(--site-text-soft);

    max-width: 720px;

    margin:
        0 auto;
}

/* =========================================================
   CUSTOM BADGES
========================================================= */

.badge-soft-success {

    background-color:
        var(--site-success-soft);

    color:
        var(--site-success-text);

    padding:
        0.5rem
        0.75rem;

    border-radius: 999px;

    font-weight: 600;
}