.article-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}
.article-hero-image {
    width: 100%;
    height: 400px;
    max-height: 400px;
    object-fit: cover;
    display: block;
}
@@media (max-width: 768px) {
    .article-hero-image {
        height: 260px;
    }
}
.article-teaser {
    font-weight: 300;
    font-style: Light;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
}

.custom-favorite-button {
    width: 38px;
    height: 38px;
    padding-top: 0.1rem !important;
    padding-bottom: 0.2rem !important;
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
    border-radius: 50%;
    margin-left: 15px;
}

.share-button {
    border-color: #ccc;
    padding: 0.4rem 1.6rem !important;
}

.custom-icon-image {
    max-width: 34px;
    height: 34px;
    width: 34px;
    max-height: 34px;
}

.product-teaser__text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.product-teaser__text.is-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.product-teaser__text.is-expanded {
    display: block;
}

.product-teaser__toggle {
    margin-top: 4px;
    padding: 0;
    background: none;
    border: 0;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

.search-expandable {
    z-index: 20;
    height: 46px;
    border-radius: 50rem;
}

.search-button {
    width: 46px;
    height: 46px;
    border-radius: 50rem;
}

.search-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 90vh;
    max-width: 320px;
    z-index: 1000;
}

.form-check-input:checked {
    background-color: #E41F26 !important;
    border-color: #E41F26 !important;
}

.post-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1450px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}
