.listing-logo {
    height: 60px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 30px;
}

.subtitle {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 40px;
    display: block;
}

.main-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.main-description {
    flex-basis: 460px;
    flex-grow: 1;
}

.main-description>p:not(:last-child) {
    margin-bottom: 10px;
}

.main-flex>img {
    width: 500px;
    border-radius: 4px;
    transition: 500ms ease-in-out;
}

.main-flex>img:hover {
    transform: scale(102%);
}

.specs-container {
    box-shadow: 0 0 2px rgb(0 0 0 / 0.5);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: 200ms ease-in-out;
    width: fit-content;
}
.specs-container:hover {
    background-color: #FAFAFA;
    border-color: grey;
}
.specs-container > h2 {
    font-size: 3rem;
    line-height: calc(3rem * 1.5);
    margin-bottom: 0;
}
.specs {
    width: 100%;
    text-align: left;
    vertical-align: middle;
    gap: 20px;
}
.specs th {
    font-weight: 600;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 2px;
}
.specs tr {
    /* display: grid;
    justify-items: left;
    align-items: center;
    grid-template-columns: auto auto;
    column-gap: 20px;
    margin: 4px 0px; */
    position: relative;
}
.specs td {
    vertical-align: middle;
    padding-top: 12px;
    padding-bottom: 2px;
}
.specs :is(th, td) {
    font-size: 1.6rem;
    line-height: calc(1.6rem * 1.5);
}
.specs tr::after {
    display: block;
    content: "";
    background: linear-gradient(to right, rgb(from var(--brand-color) r g b), rgb(from var(--brand-color) r g b / 0) 100%);
    height: 2px;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 4px;
}

.product-form-button {
    display: block;
    background-color: #FFFFFF;
    width: fit-content;
    border-radius: 2px;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 6px 0px;
    transition: 100ms ease-in-out;
    border: 1px solid lightgrey;
    box-shadow: 0px 0px 2px rgb(0, 0, 0, 0.2);
    text-transform: uppercase;
    margin-top: 30px;
    width: 180px;
    text-align: center;
    cursor: pointer;
    align-self: center;
}
:is(.product-form-button, .download-button):hover, :is(.product-form-button, .download-button):focus {
    background-color: #EEEEEE;
}

@media only screen and (max-width: 950px) {
    .subtitle {
        text-align: center;
    }
    .main-flex {
        justify-content: center;
    }
    .product-form-button {
        justify-self: center;
    }
    .specs-container {
        margin: auto;
    }
    .specs-container > h2 {
        font-size: 2.4rem;
        line-height: calc(2.4rem * 1.5);
    }
    .specs {
        text-align: center;
    }
    .specs :is(th, td) {
        font-size: 1.4rem;
        line-height: calc(1.4rem * 1.5);
    }
    .specs tr::after {
        background: linear-gradient(to right, rgb(from var(--brand-color) r g b / 0) 0%, rgb(from var(--brand-color) r g b) 50%, rgb(from var(--brand-color) r g b / 0) 100%);
    }
}