body {
    --container-padding: 24px;
}

.listing-logo {
    height: 60px;
    margin-bottom: 60px;
}
a:has(.listing-logo) {
    display: block;
    width: fit-content;
}

.info-container {
    box-shadow: 0px 0px 2px rgb(0 0 0 / 0.5);
    border-radius: 20px;
    padding: var(--container-padding);
    transition: 100ms ease-in-out;
    margin: 40px 0px;
    border: 2px solid rgb(255 255 255 / 0);
}
.info-container:hover {
    background-color: #FAFAFA;
    border-color: grey;
}

.info-container > p {
    margin-bottom: 20px;
}

.info-container > img {
    width: 400px;
    justify-self: center;
    transition: 500ms ease-in-out;
}
.info-container:hover > img {
    transform: scale(102%);
}

.product-form-button, .download-button {
    display: block;
    background-color: #FFFFFF;
    width: fit-content;
    border-radius: 2px;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 6px 0px;
    transition: 100ms ease-in-out;
    border: 1px solid var(--brand-color);
    box-shadow: 0px 0px 2px rgb(from var(--brand-color) r g b / 0.5);
    text-transform: uppercase;
    width: 200px;
    text-align: center;
    margin-top: 20px;
}

:is(.product-form-button, .download-button):hover, :is(.product-form-button, .download-button):focus {
    background-color: #EEEEEE;
}
.download-button>img {
    height: 18px;
    display: inline;
    vertical-align: text-bottom;
    margin-left: 2px;
}




.specs {
    margin: 30px 0px;
}

.specs, .specs tbody {
    display:block;
    max-width: 100%;
}
.specs tr {
    display: block;
    margin: 10px 0px;
    width: 600px;
    max-width: 100%;
}
.specs tr::after {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgb(from var(--brand-color) r g b / 1.0), rgb(from var(--brand-color) r g b / 0) 100%);
    content: "";
    display: block;
    border-radius: 4px;
}
.specs th {
    text-align:left;
    width: 300px;
    font-weight: 500;
}

.list-heading {
    font-weight: 600;
    margin-top: 40px;
}

.easy-features {
    list-style-type: disc;
    padding-left: var(--container-padding);
    font-size: 1.8rem;
    line-height: calc(1.8rem * 1.5);
}

.easy-features li {
    margin-bottom: 10px;
}


@media only screen and (max-width: 950px) {
    .listing-logo {
        height: 50px;
    }

    .info-container > p {
        text-align: center;
    }

    .specs,
    .specs tbody {
        width: 100%;
        display: block;
    }


    .specs tr {
        width: 100%;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .specs tr:after {
        background: linear-gradient(to right, rgb(0 0 0 / 0) 0%, rgb(from var(--brand-color) r g b) 50%, rgb(0 0 0 / 0) 100%);
    }

    .specs th {
        width: 250px;
        flex-basis: 50%;
        text-align: center;
    }

    .specs td {
        width: 70px;
        flex-basis: 50%;
        text-align: center;
    }

    .specs :is(td, th) {
        font-size: 1.4rem;
        display: block;
    }

    .product-form-button {
        justify-self: center;
        font-size: 1.6rem;
        width: 160px;
    }

    .easy-features {
        font-size: 1.6rem;
        line-height: calc(1.6rem * 1.5);
        text-align: center;
    }
}