
/* =====================================================
   NORDCHARGE TRUST BENEFITS
   3 COLUMN INFORMATION SECTION
   ===================================================== */

.nordcharge-benefits {
    width: 100%;
    padding: 70px 20px;
    background: #ffffff;
    box-sizing: border-box;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
}

.nordcharge-benefits *,
.nordcharge-benefits *::before,
.nordcharge-benefits *::after {
    box-sizing: border-box;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.nordcharge-benefits-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}


/* =====================================================
   ITEM
   ===================================================== */

.nordcharge-benefit-item {
    text-align: center;
    padding: 10px 25px 20px;

    transition:
        transform 0.3s ease;
}

.nordcharge-benefit-item:hover {
    transform: translateY(-4px);
}


/* =====================================================
   ICON
   ===================================================== */

.nordcharge-benefit-icon {
    position: relative;

    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #4e625f;

    font-size: 36px;
    font-weight: 300;
}


/* Small decorative line */

.nordcharge-benefit-icon::after {
    content: "";

    position: absolute;

    bottom: -4px;
    left: 50%;

    width: 30px;
    height: 1px;

    background: #d9dddc;

    transform: translateX(-50%);
}


/* =====================================================
   SIMPLE CSS ICONS
   ===================================================== */

/* Shipping */

.icon-shipping::before {
    content: "⌁";

    font-family: Georgia, serif;

    font-size: 52px;
    line-height: 1;

    transform: rotate(-25deg);
}


/* Payment */

.icon-payment::before {
    content: "$";

    font-family: Georgia, serif;

    font-size: 42px;
    font-weight: 400;
}


/* Tracking */

.icon-tracking::before {
    content: "⌖";

    font-family: Georgia, serif;

    font-size: 42px;
    line-height: 1;
}


/* =====================================================
   TITLE
   ===================================================== */

.nordcharge-benefit-title {
    margin: 0 auto 18px;

    max-width: 280px;

    color: #151515;

    font-size: 21px;
    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.3px;
}


/* =====================================================
   DESCRIPTION
   ===================================================== */

.nordcharge-benefit-text {
    max-width: 290px;

    margin: 0 auto;

    color: #383b3d;

    font-size: 15px;
    line-height: 1.8;

    font-weight: 400;

    letter-spacing: 0.2px;
}


/* Highlight */

.nordcharge-benefit-text strong {
    color: #202224;
    font-weight: 650;
}


/* =====================================================
   DIVIDERS
   ===================================================== */

.nordcharge-benefit-item:not(:last-child) {
    border-right: 1px solid #eeeeee;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

    .nordcharge-benefits {
        padding: 60px 20px;
    }

    .nordcharge-benefits-container {
        gap: 25px;
    }

    .nordcharge-benefit-item {
        padding: 10px 15px 20px;
    }

    .nordcharge-benefit-title {
        font-size: 19px;
    }

    .nordcharge-benefit-text {
        font-size: 14px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 650px) {

    .nordcharge-benefits {
        padding: 50px 20px;
    }

    .nordcharge-benefits-container {
        display: flex;
        flex-direction: column;

        gap: 40px;
    }

    .nordcharge-benefit-item {
        padding: 0 10px 40px;

        border-right: none !important;
        border-bottom: 1px solid #eeeeee;
    }

    .nordcharge-benefit-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .nordcharge-benefit-title {
        font-size: 20px;
    }

    .nordcharge-benefit-text {
        max-width: 330px;

        font-size: 14px;
        line-height: 1.75;
    }

}
