.footer-cards,
.footer-cards * {
    box-sizing: border-box;
}

.footer-cards {
    width: 100%;
    padding: 0;
}

.footer-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* border-top: 2px solid rgba(220, 230, 238, 0.65); */
    /* border-left: 2px solid rgba(220, 230, 238, 0.65); */
    background: #032940;
}

.footer-cards__item {
    min-height: 240px;
    padding: 42px 28px 34px;
    /* border-right: 2px solid rgba(220, 230, 238, 0.65); */
    /* border-bottom: 2px solid rgba(220, 230, 238, 0.65); */
    background: #032940;
    color: #d8e4ef;
}

.footer-cards__eyebrow {
    margin-bottom: 18px;
    color: #9eb2c4;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.footer-cards__title {
    margin: 0 0 18px;
    color: #f5fbff !important;
    font-size: 20px!important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.footer-cards__content p {
    margin: 0 0 10px;
    color: #c6d5e2;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.75;
}

.footer-cards__content strong,
.footer-cards__content b {
    color: #f5fbff;
    font-weight: 700;
}

.footer-cards__content a {
    color: #f5fbff;
    text-decoration: none;
}

.footer-cards__content a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-cards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .footer-cards__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-cards__item {
        min-height: 0;
        padding: 28px 22px 24px;
    }
}
