.insights {
    margin-bottom: 160px;
    margin-top: 160px;
}

.insights__container {
    padding: 150px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
}
.insights__container::before, .insights__container::after {
    content: '';
    display: block;
    width: calc(100% - 30px);
    height: 2px;
    background: var(--gradient-divider-hor);
    position: absolute;
    left: 15px;
}
.insights__container::before {
    top: 0;
}
.insights__container::after {
    bottom: 0;
}
.insights__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.insights__header h2 {
    font-size: 90px;
    line-height: 81px;
    color: var(--text-black);
}
.insights__subscribe {
    font-size: 25px;
    line-height: 95%;
    color: var(--text-black) !important;
    max-width: 16ch;
    text-decoration: unset !important;
}
.insights__cards {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 80px;
    padding: 0 24px;
}
.insights__btn {
    text-align: center;
}

.insights__cards .card-text {
    padding: 35px 20px 30px;
    gap: 20px;
}


.insights__cards .card-date {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.01em;
}

.insights__cards .card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.005em;
}


@media (max-width: 992px) {
    .insights__cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
}