.products__header {
    margin-bottom: 30px;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 25px 25px 35px;
    background: var(--white);
    border: 1px solid var(--light-blue);
    border-radius: 30px;
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-card__icon {
    width: 47px;
    height: 53px;
    margin-bottom: 19px;
}

.product-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__title {
    font-size: 20px;
    line-height: normal;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.product-card__title a:hover {
    color: var(--orange);
}

.product-card__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.product-card__links li {
    font-size: 18px;
    line-height: normal;
    color: var(--blue);
}

.product-card__links li a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.product-card__links li a:hover {
    color: var(--orange);
}

.product-card__links svg {
    flex-shrink: 0;
}

.product-card:last-child .product-card__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 12px;
}

.product-card__btn {
    margin-top: 27px;
    align-self: flex-start;
}

@media (max-width: 1200px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products__grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 20px;
    }

    .product-card__title {
        font-size: 18px;
        line-height: normal;
    }

    .product-card__links li {
        font-size: 16px;
    }

    .products__header {
        margin-bottom: 20px;
    }

    .product-card__icon {
        width: 40px;
        height: 45px;
    }
}
