.has-zeeto-color {
    color: #FF6C0E; /* Замените на ваше значение цвета */
}

.has-zeeto-background-color {
    background-color: #FF6C0E; /* Замените на ваше значение цвета */
}

/* Blog Blocks */

.card-blocks-wrapper {
    margin: 30px 0;
}

.card-block-row {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-radius: 12px;
    overflow: hidden;
}

.card-block {
    width: 100%;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
}



.card-block .title {
    color: #F1F1F1;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
    margin: 0 0 10px;
}

.card-block .text {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 122%; /* 17.08px */
}

.card-block .text *:first-child {
    margin-top: 0;
}

.card-block .text *:last-child {
    margin-bottom: 0;
}

.card-block-icon {
    min-width: 22px;
    width: 22px;
}
.card-block-icon img {
	margin-bottom: 20px;
}

.blog-cta-button-wrapper {
    margin: 40px 0;
}

.blog-cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 0 12px;
    width: 100%;
    border-radius: 62px;
    background: #FF6C0E;
    color: #010101 !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 23.897px; /* 125% */
    text-decoration: none;
}


.blog-cta-button svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-right: 6px;
}


@media screen and (min-width: 776px) {
    .card-block-inner {
        display: flex;
        gap: 18px;
    }
    
    .card-block-icon img {
        width: 22px;
        height: auto;
    }

    .blog-cta-button {
        height: 56px;
        font-size: 16px;
		padding: 0 24px;
    }

    .blog-cta-button svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
        margin-right: 8px;
    }
}

@media screen and (min-width: 600px) and (max-width: 992px) {
    .card-block-row {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .card-block.half-width {
        width: calc(50% - 2px);
    }
}

@media screen and (min-width: 1100px)  {
    .card-block.half-width {
        width: calc(50% - 2px);
    }
    .card-block-row {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

html {
    scroll-behavior: smooth;
}