.product-subtitle {
    font-size: 2rem;
    line-height: calc(2rem * 1.5);
    font-weight: 600;
    display: blocK;
    margin-bottom: 40px;
}


.flex-side-by-side {
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.flex-side-by-side .product-banner {
    max-height: 360px;
    flex: 0 1 auto;
}
.flex-side-by-side .container-invisible {
    flex: 0 1 auto;
}

.applications-title {
    font-size: 2rem;
    line-height: calc(2rem * 1.5);
    margin-bottom: 10px;
}

.applications-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.applications-list > li {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
}

.applications-list > li > img {
    height: 2rem;
}
.applications-list > li > span {
    display: block;
    font-size: 1.8rem;
    line-height: calc(1.8rem * 1.2);
}


.grid-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 20px;
}

.bubble-container ul {
    margin-bottom: 40px;
}
.bubble-container ul:last-child {
    margin-bottom: 0;
}

.bubble-container p {
    margin-bottom: 6px;
}

.bubble-container p:last-child {
    margin-bottom: 0;
}

.bubble-container  li {
    font-size: 1.8rem;
    line-height: calc(1.8rem * 1.5);
    font-weight: unset;
    margin-bottom: 6px;
}
.bubble-container b {
    font-weight: 600;
}

.link-button {
    display: block;
    border: 1px solid var(--brand-color);
    font-weight: 600;
    box-shadow: 0 0 2px rgb(from var(--brand-color) r g b / 0.5);
}


@media only screen and (max-width: 950px) {
    .bubble-container li {
        font-size: 1.6rem;
        line-height: calc(1.6rem * 1.5);
    }

    .applications-title {
        text-align: unset;
        justify-self: unset;
    }

    .link-button {
        justify-self: center;
    }

    .bubble-container > figure {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .bubble-container figcaption {
        text-align: center;
        font-size: 1.4rem;
        line-height: calc(1.4rem * 1.5);
    }
}