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

a:has(.listing-logo) {
    display: block;
    width: fit-content;
}

/* .grid-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 20px;
    align-items: start;
} */
.flex-side-by-side {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}
.flex-side-by-side > * {
    flex: 1 1 320px;
}
.main-text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.bubble-container {
    box-shadow: 0px 0px 2px rgb(0 0 0 / 0.5);
    border-radius: 20px;
    padding: 20px;
    transition: 100ms ease-in-out;
    border: 2px solid rgb(255 255 255 / 0);
}
.side-image {
    border-radius: 4px;
    margin-bottom: 10px;
}
.img-container > img {
    border-radius: 4px;
}
img {
    transition: 500ms ease-in-out;
}

:is(.bubble-container:hover, .bubble-container:has(*:focus)) img, img:hover {
    transform: scale(102%);
}

.bubble-container:hover {
    background-color: #FAFAFA;
    border-color: grey;
}

.bubble-container-title {
    font-size: 3rem;
    line-height: calc(3rem * 1.5);
    margin-bottom: 20px;
    display: block;
    justify-self: center;
    text-align: center;
    font-weight: 700;
}
.bubble-container-title-small {
    font-size: 2.4rem;
    line-height: calc(2.4rem * 1.5);
    margin-bottom: 10px;
    font-weight: 700;
}

.bubble-container-subtitle-small {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: calc(1.8rem * 1.5);
}

.bubble-container ul {
    list-style-type: disc;
}
.bubble-container li {
    font-size: 2rem;
    line-height: calc(2rem * 1.5);
    font-weight: 600;
    margin-left: 20px;
    
    margin-bottom: 10px;
}
.bubble-container li:last-child {
    margin-bottom: 0;
}

.grid-3-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    justify-items: center;
}


.link-button {
    background-color: white;
    border: 1px solid lightgrey;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 0.2);
    transition: 100ms ease-in-out;
    font-size: 1.8rem;
    line-height: calc(1.8rem * 1.3);
    padding: 10px;
    border-radius: 2px;
    min-width: 200px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}
.link-button:hover, .link-button:focus {
    background-color: #eeeeee;
}

.content-centered {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.no-margin-bottom {
    margin-bottom: 0;
}
.flex-stretch {
    align-items: stretch;
}

figure > img {
    margin-bottom: 10px;
}

figcaption {
    font-weight: 500;
}

.text-highlight {
    display: block;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: calc(1.8rem * 1.5);
}
.link-highlight {
    color: var(--company-color);
    transition: 200ms ease-in-out;
}
.link-highlight:hover, .link-highlight:focus {
    opacity: 0.8;
}

@media only screen and (max-width: 950px) {
    .listing-logo {
        height: 60px;
    }
    
    .bubble-container-title {
        font-size: 2.4rem;
        line-height: calc(2.4rem * 1.5);
    }

    .bubble-container-title-small {
        font-size: 2rem;
        line-height: calc(2rem * 1.5);
    }

    .bubble-container-subtitle-small {
        font-size: 1.6rem;
        line-height: calc(1.6rem * 1.5);
    }

    .bubble-container li {
        font-size: 1.8rem;
        line-height: calc(1.8rem * 1.5);
    }

    .link-button {
        font-size: 1.6rem;
        min-width: 180px;
    }

    .text-highlight {
        font-size: 1.6rem;
        line-height: calc(1.6rem * 1.5);
    }
    
}