.vc-starter-point-item {
    border-radius: 20px;
    background: white;
    overflow: hidden;
    width: 30%;
}

.vc-starter-point-item .header {
    height: 155px;
}

.vc-starter-point-item .header a img {
    width: 100%;
    height: 155px;
    object-fit: cover;
}

.vc-starter-point-item .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 155px);
}

.vc-starter-point-item .content h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
    letter-spacing: -0.2px;
    margin-bottom: 20px;
    color: var(--rc-color-primary-700);
}

.vc-starter-point-item .content .text {
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; 
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    color: var(--rc-color-primary-700);
}

.vc-starter-point-item .content .cta a {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 162.5% */
    text-decoration-line: underline;
    color: var(--rc-color-primary-700);
    transition: .3s;
}

.vc-starter-point-item .content .cta a:after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 14px;
    margin-left: 10px;
    position: relative;
    top: 2px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="15" viewBox="0 0 18 15" fill="none"><path d="M15.2857 7.08105L7.39098e-06 7.08105" stroke="%23003873" stroke-width="2"/><path d="M9.43163 0.707153L16.0004 7.27597L9.43162 13.8448" stroke="%23003873" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    transition: .3s;
}

.vc-starter-point-item:has(.header:hover) .cta a,
.vc-starter-point-item:has(.cta a:hover) .cta a {
    color: var(--rc-color-primary-500);
    transition: .3s;
}

.vc-starter-point-item:has(.header:hover) .cta a:after,
.vc-starter-point-item:has(.cta a:hover) .cta a:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="15" viewBox="0 0 18 15" fill="none"><path d="M15.2857 7.08105L7.39098e-06 7.08105" stroke="%230081FF" stroke-width="2"/><path d="M9.43163 0.707153L16.0004 7.27597L9.43162 13.8448" stroke="%230081FF" stroke-width="2"/></svg>');
    transition: .3s;
}

@media (max-width: 991px) {
    .vc-starter-point-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .vc-starter-point-item {
        width: 100%;
    }
}