.banner-image {
    object-fit: cover;
    width: 100%;
    height: 240px;
    /* box-shadow: 0px 0px 2px rgb(0 0 0 / 0.5); */
    border-radius: 20px;
    margin-bottom: 40px;
}
.inline-navigation {
    margin: 20px 0px;
}

.inline-navigation > ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 4px;
}

.inline-navigation > ul > li > a {
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--company-color);
    text-transform: uppercase;
    transition: 100ms ease-in-out;
}
.inline-navigation > ul > li > a:hover, .inline-navigation > ul > li > a:focus {
    opacity: 0.8;
}

.inline-navigation>ul > li {
    border-right: 1px solid grey;
    padding: 2px 10px;
}

.inline-navigation > ul > li:last-child {
    border-color: transparent
}

.application-example {
    box-shadow: 0px 0px 2px rgb(0 0 0 / 0.5);
    margin: 20px 0px;
    border-radius: 20px;
    transition: 100ms ease-in-out;
    border: 2px solid transparent;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
}
.application-example:not(:has(> a:not(.featured))) {
    padding: 24px;
}

.application-example > a:not(.featured) {
    padding: 24px;
    width: 100%;
    height: 100%;
}
.application-example:hover, .application-example:has( > a:focus) {
    background-color: #FAFAFA;
        border-color: grey;
}

:is(.application-example, .application-example > a:not(.featured)) > h3 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 3.5rem;
}
:is(.application-example, .application-example > a:not(.featured), .logo-list) > img {
    height: 60px;
    align-self: flex-start;
}
.logo-small {
    width: 200px;
}
:is(.application-example, .application-example > a:not(.featured), .logo-list) > .logo-50 {
    height: 50px;
}
.application-example > img {
    margin-bottom: 10px;
}
:is(.application-example, .application-example > a:not(.featured)) .logo-list {
    margin-bottom: 10px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

:is(.application-example, .application-example > a:not(.featured)) > h3:not(:has(+span)) {
    margin-bottom: 20px;
}

.featured {
    position: relative;
    margin: 40px auto;
    z-index: 0;
    width: fit-content;
    height: fit-content;
    border-radius: 6px;
    overflow: hidden;
    padding: 3px;
    transition: 700ms ease-in-out;
    justify-self: center;
    max-width: 100%;
    
}
.featured-content {
    background-color: #FFFFFF;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 100ms ease-in-out;
}

.featured-content > img {
    width: 300px;
    max-width: 100%;
}

.featured::before {
    content: "";
    display: block;
    position: absolute;
    inset: -50%;
    z-index: -1;
    border-radius: 4px;
    transition: 700ms ease-in-out;
    
}
.featured.speedy-rain::before {
    --color: rgb(223 62 46);
    background: linear-gradient(to bottom right, hsl(from var(--color) h s calc(l * 0.3)) 30%, var(--color) 70%);
}

.featured:hover, .featured:focus {
    transform: scale(102%);
}
:is(.featured:hover, .featured:focus)::before {
    transform: rotate(360deg);
    filter: brightness(1.5) contrast(0.7) saturate(1.5);
}
:is(.application-example:hover, .application-example:focus) .featured-content {
    background-color: #FAFAFA;
}
:is(.featured:hover, .featured:focus) > .featured-content {
    background-color: #FAFAFA;
}
.featured-content > h4 {
    display: block;
    font-size: 2.4rem;
    line-height: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align:center;
}

.application-example > span {
    display: block;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.image-list {
    display:flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    transition: 500ms ease-in-out;
    flex-grow: 1;
}
.image-grow-container {
    width: 300px;
    max-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 500ms ease-in-out;
}
.image-grow-container > img {
    flex-basis: 1px;
    flex-grow: 1;
    max-width: 100%;
    max-height: 280px;
    border-radius: 4px;
}
.image-grow-fullsize {
    width: 100%;
}
.image-grow-dense {
    width: 120px;
    max-height: 220px;
}
.image-grow-dense > img {
    max-height: 220px; 
}

:is(.application-example:hover, .application-example:has( > a:not(.featured):focus)) .image-list:not(:has(>a:not(.featured))) {
    transform: scale(101%);
}

.link-highlight {
    border: 2px solid lightgrey;
    border-radius: 20px;
    padding: 10px;
    transition: 200ms ease-in-out;
}
.link-highlight img {
    transition: 500ms ease-in-out;
}
.link-highlight span {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 2.0rem;
    margin-bottom: 10px;
}

.link-highlight:hover, .link-highlight:focus {
    background-color: #FAFAFA;
    border-color: grey;
}
:is(.link-highlight:hover, .link-highlight:focus) img, .image-list > :is(a:not(.featured):hover, a:not(.featured):focus) img {
    transform: scale(102%);
    opacity: 0.9;
}

.cover-image {
    align-items: stretch;
}
.cover-image > .image-grow-container > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.inner-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.flex-wide {
    flex-basis:100%;
}
.flex-small {
    flex-basis: 500px;
    flex-grow: 1;
}

.heading-container {
    margin-bottom: 60px;
}

.heading-container > h4 {
    display: block;
    font-size: 2.4rem;
    line-height: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align:center;
}
.heading-container img {
    max-height: 220px;
    transition: 500ms ease-in-out;
}
.heading-container .image-list {
    justify-content: center;
}

.main-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    column-gap: 20px;
}

.heading-container:hover img {
    transform: scale(101%);
}


.product-form-button, .download-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: 40px;
    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;
}

.download-button>img {
    height: 18px;
    display: inline;
    vertical-align: text-bottom;
    margin-left: 2px;
    margin-right: 4px;
}

@media only screen and (max-width: 950px) {

    :is(.application-example, .application-example > a) {
        align-items: center;
    }

    :is(.application-example, .application-example > a) > h3 {
        text-align: center;
        font-size: 2.5rem;
        line-height: 3rem;
    }

    :is(.application-example, .application-example > a) > span {
        text-align: center;
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .logo-list {
        justify-content: center;
    }

    .image-grow-container {
        width: 260px;
    }

    :is(.application-example, .application-example > a) > img {
        justify-self: center;
    }

    :is(.application-example, .application-example > a, .logo-list) > img {
        align-self: unset;
        height: 50px;
    }

    .image-grow-fullsize {
        width: unset;
    }

    .heading-container {
        margin-bottom: 40px;
    }
    .product-form-button, .download-button {
        font-size: 1.4rem;
        width: 160px;
    }
    .logo-small {
        width: 180px;
    }
    :is(.application-example, .application-example > a, .logo-list) > .logo-50 {
    height: 40px;
    }
    .heading-container > h4 {
        font-size: 2rem;
        line-height: 2.2rem;
        margin-bottom: 16px;
    }
}