.marketing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.marketing-cards .marketing-cards__card {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: #FFFFFF;
    text-decoration: none;
}

.marketing-cards .marketing-cards__icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: #F3F7FF;
    overflow: hidden;
}

.marketing-cards .marketing-cards__icon-wrapper_dark {
    background: #F3F0FF;
}

.marketing-cards .marketing-cards__icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.marketing-cards .marketing-cards__content {
    min-width: 0;
}

.marketing-cards .marketing-cards__title {
    color: #474766;
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
}

.marketing-cards .marketing-cards__text {
    margin-top: 16px;
    color: #8787AB;
    font-size: 18px;
    line-height: 150%;
}

.marketing-cards .marketing-cards__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.marketing-cards .marketing-cards__link-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #155DFC;
    font-size: 18px;
    line-height: 150%;
}

.marketing-cards .marketing-cards__link-icon {
    height: 22px;
    width: auto;
}

.marketing-cards .marketing-cards__divider {
    width: 1px;
    height: 18px;
    background: #D6E2F1;
}

@media screen and (max-width: 1180px) {
    .marketing-cards {
        grid-template-columns: 100%;
        gap: 16px;
    }
}

@media screen and (max-width: 750px) {
    .marketing-cards {
        margin-top: 24px;
    }

    .marketing-cards .marketing-cards__card {
        gap: 16px;
        padding: 20px;
        border-radius: 20px;
    }

    .marketing-cards .marketing-cards__icon-wrapper {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .marketing-cards .marketing-cards__title {
        font-size: 18px;
    }

    .marketing-cards .marketing-cards__text {
        margin-top: 12px;
        font-size: 16px;
    }

    .marketing-cards .marketing-cards__links {
        gap: 10px;
        margin-top: 16px;
    }

    .marketing-cards .marketing-cards__link-item {
        font-size: 16px;
    }
}
