.module-product {
    padding: 40px 0;
}

@media only screen and (min-width: 768px) {
    .module-product-content-inner {
        display: flex;
        justify-content: space-between;
        gap: 60px;
        max-width: 800px;
        margin: 0 auto;
    }
}

.module-product-image img {
    height: auto;
    width: 185px;
}

@media only screen and (min-width: 768px) {
    .module-product-primary {
        flex: 1 200px;
        max-width: none;
    }
}

@media only screen and (min-width: 768px) {
    .module-product-secondary {
        flex: 1 80%;
    }
}

.module-product-heading {
    font-family: var(--f-primary);
    color: var(--c-primary);
    font-weight: 600;
    font-size: 2em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.module-product-link {
    font-family: var(--f-primary);
    color: var(--c-gray-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5em;
    text-transform: uppercase;
    margin-top: 15px;
    display: block;
}
.module-product-link:focus,
.module-product-link:hover {
    text-decoration: underline;
}

.module-product-link-v2 {
    margin-top: 20px;
}