/* =========================================================
   SUPPORT CARDS
========================================================= */

.support-cards {

    padding: 60px 40px;

    background: var(--color-white);

}

/* =========================================================
   GRID
========================================================= */

.support-cards__grid {

    display: grid;

    grid-template-columns: 1.15fr 1fr 0.72fr;

    gap: 16px;

    align-items: stretch;

}

/* =========================================================
   CARD
========================================================= */

.support-card {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-md);

    background:#f1f0f2;

    border: 1px solid var(--color-border);

    min-height: 165px;

}

/* =========================================================
   DARK CARD
========================================================= */

.support-card--dark {

    display: grid;

    grid-template-columns: 1fr 190px;

    background: linear-gradient(
        135deg,
        #03143f 0%,
        #07194b 55%,
        #0d2a78 100%
    );

    border: none;

}

/* =========================================================
   CONTENT
========================================================= */

.support-card__content {

    padding: 20px;

}

/* =========================================================
   TITLE
========================================================= */

.support-card__title {

    font-size: 16px;

    font-weight: 800;

    line-height: 1.35;

    color: var(--color-primary);

    margin-bottom: 12px;

}

.support-card--dark .support-card__title {

    color: var(--color-white);

}

.support-card__title span {

    color: var(--color-secondary);

}

/* =========================================================
   TEXT
========================================================= */

.support-card__text {

    font-size: 12px;

    line-height: 1.7;

    color: var(--color-text-muted);

    margin-bottom: 16px;

}

.support-card--dark .support-card__text {

    color: rgba(255,255,255,0.82);

}

/* =========================================================
   BUTTON
========================================================= */

.support-card__btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    height: 34px;

    padding: 0 14px;

    border-radius: var(--radius-sm);

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.18);

    color: var(--color-white);

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: var(--transition-fast);

}

.support-card__btn:hover {

    background: rgba(255,255,255,0.10);

}

.support-card__btn svg {

    width: 13px;
    height: 13px;

    stroke-width: 2.4;

}

/* =========================================================
   IMAGE
========================================================= */

.support-card__image {

    height: 100%;

}

.support-card__image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}

/* =========================================================
   TOP
========================================================= */

.support-card__top {

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;

}

/* =========================================================
   INFOS
========================================================= */

.support-card__infos {

    flex: 1;

}

/* =========================================================
   LIST
========================================================= */

.support-card__list {

    display: flex;

    flex-direction: column;

    gap: 9px;

}

/* =========================================================
   ITEM
========================================================= */

.support-card__item {

    display: flex;

    align-items: center;

    gap: 7px;

}

.support-card__item svg {

    width: 14px;
    height: 14px;

    stroke: #2563eb;

    stroke-width: 2.6;

    flex-shrink: 0;

}

.support-card__item span {

    font-size: 12px;

    line-height: 1.5;

    color: var(--color-text);

}

/* =========================================================
   VISUAL
========================================================= */

.support-card__visual {

    width: 160px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

}

.support-card__visual img {

    width: 100%;

    display: block;

}

/* =========================================================
   CLOUD
========================================================= */

.support-card--cloud {

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

}

.support-card--cloud .support-card__content {

    padding: 20px 18px;

}

.support-card--cloud .support-card__title {

    margin-bottom: 14px;

}

.support-card--cloud .support-card__visual {

    width: auto;

    margin: 0 auto 14px;

}

.support-card--cloud .support-card__visual svg {

    width: 52px;
    height: 52px;

    stroke: #2563eb;

    stroke-width: 1.8;

}

.support-card--cloud .support-card__text {

    font-size: 11px;

    line-height: 1.7;

    margin-bottom: 0;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .support-cards__grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 768px) {

    .support-cards {

        padding: 50px 25px;

    }

    .support-card--dark {

        grid-template-columns: 1fr;

    }

    .support-card__image {

        height: 220px;

    }

    .support-card__top {

        flex-direction: column;

    }

    .support-card__visual {

        width: 120px;

        margin: 8px auto 0;

    }

    .support-card__title {

        font-size: 18px;

    }

}