/* === News-Sammlung: max 2 nebeneinander + gleich große Cards === */
.news-holder {
    padding: var(--section-padding);
    width: 100%;
    display: flex;
    justify-content: center;
}
main .news-sammlung {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 640px) {
    main .news-sammlung {
        grid-template-columns: 1fr;
    }
	main .news-sammlung .nav-card{
		max-width: 500px;
	}
}

main .news-sammlung .nav-card {
    width: 100%;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

main .news-sammlung .nav-card .card-img-holder {
    aspect-ratio: 16 / 9;
}

main .news-sammlung .nav-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

main .news-sammlung .nav-card .nav-card__text-row {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

main .news-sammlung .nav-card .news-card__excerpt {
    margin: 0;
    padding: 0 1em 12px;
    color: var(--txt);
    display: block;
    overflow: visible;
}

main .news-sammlung .nav-card .news-read-more {
    display: inline-block;
    margin: 0 1em 12px;
    text-decoration: underline;
}

.single-holder {
    display: flex;
    justify-content: center;
    width: 100%;
}

.single h1 {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 4vw, 3rem);
    text-shadow: 0 0 10px var(--dark);
}

.single-content {
    font-family: var(--font-body);
    font-size: calc(.9rem + 0.2vw);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-text {
    padding: 50px 3em;
}

.news-read-more {
    text-decoration: none !important;
    position: relative;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-read-more::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
    height: 2px;
    background-color: var(--ac-clr);
    box-shadow: 0 0 5px var(--ac-clr);
    transition: all 0.4s ease;
}

.news-read-more:hover::after {
    width: 100%;
}

.arrow-read-more {
    fill: var(--light);
    width: 20px;
    height: 20px;
}

@media  (max-width: 800px) {
    .single-text {
        max-width: 532px;
        padding: var(--section-padding);
    }
}