.c-main-cards-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 30px;
    margin: 30px 0;
}

.c-main-cards-v2__item {
    position: relative;
    background: #fff;
    text-decoration: none;
    text-align: center;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-main-cards-v2__item:hover {
    color: #111;
    text-decoration: none;
}

.c-main-cards-v2__img {
    width: 100%;
    height: auto;
    order: 1;
}

.c-main-cards-v2__title {
    font-weight: 600;
    font-size: 18.5px;
    line-height: 25px;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
    max-width: 240px;
    transition: color 0.3s;
}

.c-main-cards-v2__item:hover .c-main-cards-v2__title {
    color: #ffae2a;
}

.c-main-cards-v2__title:after {
    content: "";
    height: 1px;
    left: 35%;
    position: absolute;
    width: 30%;
    background: #333;
    bottom: -19px;
    transition: background-color 0.3s;
}

.c-main-cards-v2__item:hover .c-main-cards-v2__title:after {
    background-color: #ffae2a;
}

.c-main-cards-v2__text {
    line-height: 18px;
    overflow: hidden;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .c-main-cards-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 0;
    }
}

@media (max-width: 640px) {
    .c-main-cards-v2 {
        grid-template-columns: 1fr;
    }
}
