.psa-news{
    max-width:1400px;
    margin:0 auto;
    padding:80px 30px;
}

.psa-news-header{
    margin-bottom:50px;
}

.psa-news-header h1{
    font-size:clamp(48px,6vw,72px);
    margin-bottom:30px;
}

.psa-news-filters{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.psa-news-filter{
    border:none;
    background:#f3f3f3;
    padding:12px 22px;
    border-radius:999px;
    cursor:pointer;
    transition:.3s;
}

.psa-news-filter:hover,
.psa-news-filter.active{
    background: var(--psa-home2-menuitemfontcolor);
    color:#fff;
}

.psa-news-loader-box {
	font-size: 1.5rem;
	color: var(--psa-home2-menuitemfontcolor);
}

.psa-news-grid{
    display:grid;
    grid-template-columns:
	repeat(auto-fill,minmax(340px,1fr));
    gap:32px;
}

.psa-news-card{
    display:block;
    text-decoration:none;
    color:inherit;
    overflow:hidden;
    border-radius:24px;
    background:#fff;

    transition:.35s;

    box-shadow:
    0 8px 30px rgba(0,0,0,.05);
}

.psa-news-card:hover{
    transform:translateY(-8px);
}

.psa-news-image{
    aspect-ratio:10/10;
    overflow:hidden;
}

.psa-news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.psa-news-card:hover img{
    transform:scale(1.08);
}

.psa-news-content{
    padding:24px;
}

.psa-news-date{
    display:block;
    margin-bottom:10px;
    font-size: 1.5rem;
    opacity:.6;
}

.psa-news-content h3{
    margin:0 0 12px;
    line-height:1.2;
}

.psa-news-content p{
    margin:0;
    opacity:.8;
}

/* LOADER */

#psa-news-loader{

    position:fixed;
    inset:0;

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(5px);

    z-index:99999;

    display:flex;

    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

#psa-news-loader.active{

    opacity:1;
    visibility:visible;
}

.psa-news-loader-box{

    background:#fff;

    padding:20px 30px;

    border-radius:16px;

    box-shadow:
    0 20px 60px
    rgba(0,0,0,.08);

    font-weight:600;
}



.psa-single{
    padding:100px 30px 60px;
    background:#fff;
}

.psa-single-inner{
    max-width:900px;
    margin:0 auto;
}

.psa-single-back{
    display:inline-block;
    margin-bottom:30px;
    text-decoration:none;
    color:#111;
    opacity:.6;
    font-size: 1.4rem;
    line-height: 1.2em;
    transition:.2s;
}

.psa-single-back:hover{
    opacity:1;
}

.psa-single-meta{
    display:flex;
    gap:12px;
    font-size:13px;
    opacity:.6;
    margin-bottom:20px;
}

.psa-single-title{
    font-size:clamp(36px,4vw,64px);
    line-height:1.1;
    margin-bottom:30px;
}

.psa-single-content{
    font-size:18px;
    line-height:1.7;
}

.psa-single-content p{
    margin-bottom:20px;
}

/* RELATED */

.psa-related{
    background:#f7f7f7;
    padding:80px 30px;
}

.psa-related-inner{
    max-width:1200px;
    margin:0 auto;
}

.psa-related h2{
    font-size:32px;
    margin-bottom:40px;
}

.psa-related-grid{
    display:grid;
    grid-template-columns:
	repeat(auto-fill,minmax(320px,1fr));
    gap:30px;
}

.psa-related-inner h2 {
	color: var(--psa-home2-menuitemfontcolor);
}

.psa-related-btn{
    display:inline-block;
    margin-top:40px;
    padding:14px 24px;
    background: var(--psa-home2-menuitemfontcolor);
    color:#fff;
    text-decoration:none;
    border-radius:999px;
    transition:.3s;
    font-size: 1.6rem;
    font-weight: 600
}

.psa-related-btn:hover{
    transform:translateY(-3px);
}


.psa-single-cats{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.psa-single-cat{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:#f2f2f2;
    font-size:13px;
    text-decoration:none;
    color:#111;
    transition:.2s;
}

.psa-single-cat:hover{
    background:#111;
    color:#fff;
}


.psa-single-meta{
    display:flex;
    align-items:center;  
    gap:16px;
    flex-wrap:wrap;     
    margin-bottom:20px;
}

/* Datum */
.psa-single-date{
    font-size:13px;
    opacity:.6;
    white-space:nowrap;
}

/* Kategorien Container */
.psa-single-cats{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
}

/* Kategorie Pill */
.psa-single-cat{
    display:inline-flex;
    align-items:center;
    padding:6px 12px;
    border-radius:999px;
    background:#f2f2f2;
    font-size:12px;
    text-decoration:none;
    color:#111;
    line-height:1;
    transition:.2s;
}

.psa-single-cat:hover{
    background:#111;
    color:#fff;
}