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

h1 {
    margin-bottom: 30px;
}

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

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

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

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

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

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

.flex-asymmetric {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-start;
    gap: 20px;
    
}

.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 > h2 {
    font-size: 3rem;
    line-height: calc(3rem * 1.5);
    margin-bottom: 0;
}

.specs-container:hover {
    background-color: #FAFAFA;
    border-color: grey;
}
.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.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;
    margin-top: 30px;
    margin-bottom: 40px;
    width: 200px;
    text-align: center;
    cursor: pointer;
    align-self: center;
}
.p-special {
    font-size: 2.6rem;
    line-height: calc(2.6rem * 1.5);
    font-weight: 600;
    margin-bottom: 10px;
}
.bubble-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.bubble-list > li {
    box-shadow: 0 0 2px rgb(0 0 0 / 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: 200ms ease-in-out;
}
.bubble-list > li:hover {
    background-color: #FAFAFA;
    border-color: grey;
}
.bubble-list > li > h3 {
    text-align: center;
    justify-self: center;
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: calc(2rem * 1.2);
    font-weight: 700;
}
.list-heading {
    font-weight: 600;
    margin-bottom: 4px;
}
.problem-list {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 20px;
    margin-bottom: 10px;
}
.problem-list:last-child {
    margin-bottom: 0;
}
.problem-list > li {
    font-size: 1.6rem;
    line-height: calc(1.6rem * 1.3);
    margin-bottom: 4px;
}
.problem-list > li:last-child {
    margin-bottom: 0;
}
: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 {
        justify-self: center;
    }
    .specs-container {
        justify-content: center;
    }
    .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%);
    }
    .features :is(strong, p) {
        font-size: 1.4rem;
        line-height: calc(1.4rem * 1.5);
    }
    .bubble-list > li > h3 {
        font-size: 1.8rem;
        line-height: calc(1.8rem * 1.2);
    }
    .problem-list > li {
        font-size: 1.4rem;
        line-height: calc(1.4rem * 1.3);
    }
}