.productContainer {
    display: flex;
}

.productIcon {
    max-width: 250px;
    padding: 6px;
    overflow: hidden;
}

.productIcon img {
    max-width: 220px;

}


.productIcon img.greyed {
    filter: blur(6px) saturate(0);
}

.productLinks {
    width: 80%;
    padding: 0 10px;
}

.productLink {
    width: 60%;
    border-bottom: 2px solid var(--ultra-light-grey);
    padding: 4px;
}

.productLink:last-child {
    border-bottom: none;
}

img.iconLink {
    width: 30px;
    margin-right: 15px;
}

.productLink a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s ease;
}

.productLink a:hover {
    color: var(--link-blue);
}

h2 a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s ease;
}

h2 a:hover {
    color: var(--link-blue);
}

/* RESPONSIVE */

@media screen and (max-width: 1800px) {
    .productLink {
        width: 80%;
    }
}

@media screen and (max-width: 1300px) {
    .productLink {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .productIcon {
        display: none;
    }
    .productLinks {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .productLink {
        font-size: 14px;
    }
}