.homepage--hero--cards-container {
    display: grid;
    grid-template-columns: unset;
    align-items: center;
    justify-items: center;
    gap: 40px;
}

.homepage--hero--card {
    display: grid;
    grid-template-columns: unset;
    grid-template-rows: unset;
    align-items: center;
    gap: 32px;
    border-radius: 16px;
    max-width: 628px;
    padding: 40px;
}

.homepage--hero--card.verify-2fa--card {
    background: linear-gradient(261.05deg, #0064C0 0%, #1E4DC6 67.3%);
}
.homepage--hero--card.activelock--card {
    background: linear-gradient(93.61deg, #011C35 5.42%, #071947 93.9%);
}

.homepage--hero--card-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 266px;
}

.homepage--hero--card-img {
    order: 1;
    width: 100%;
    height: auto;
    max-width: 266px;
    border-radius: 8px;
}

.homepage--hero--card-product {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.homepage--hero--card-product-logo {
    width: auto;
    height: 20px;
    max-width: 100%;
    max-height: 100%;
}

.homepage--hero--card-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.homepage--hero--card--list {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.activelock--card .homepage--hero--card--list {
    gap: 8px;
}

.homepage--hero--card--list-item {
    display: grid;
    grid-template-columns: 9px auto;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.homepage--hero--card--list-item-text {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0;
}


@media (min-width: 768px) {
    .homepage--hero--card {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
        padding: 40px 32px;
    }

    .homepage--hero--card-content {
        order: 1;
        align-items: flex-start;
    }

    .homepage--hero--card-img {
        order: 2;
    }

    .homepage--hero--card-title {
        text-align: left;
        max-width: 200px;
    }

    .homepage--hero--card--list {
        align-items: flex-start;
    }

    .homepage--hero--card--list-item-text {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .homepage--hero--cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .homepage--hero--card {
        gap: 0;
    }
}

@media (min-width: 1400px) {
    .homepage--hero--card {
        gap: 32px;
    }
}
