
.psnmedia-row.row-cols-md-1 > .col > .card > .card-view,
.psnmedia-row.row-cols-md-3 > .col > .card > .list-view {
    display: none;
}
.card-img-top,
.card-img-left {
    object-fit: cover; /* Bild vollständig anzeigen */
    aspect-ratio: 4/3;
    width: 100%; /* Stellt sicher, dass das Bild die Breite ausfüllt */
    background: #3bbcbc;
    border-radius: 0;
}
.card-content-top,
.card-content-left {
    object-fit: cover; /* Bild vollständig anzeigen */
    aspect-ratio: 4/3;
    width: 100%; /* Stellt sicher, dass das Bild die Breite ausfüllt */
    background: #3bbcbc;
    color: #fff;
    font-size: 8rem;
    border-radius: 0;
}
.btn-mediathek-active {
    border-color: #94bd43;
}
.psnmedia-container .card {
    background: transparent;
    border: 0;
    border-radius: 0;
}
.psnmedia-container .card h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 84px;
}
.psnmedia-container .card {
    border-bottom: 5px solid var(--light-gray);
}
.list-view {
    margin-bottom: 1.5rem;
}
.psnmedia-container .card .card-body p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #fff;
}

.psnmedia-select-category {
    font-size: 18px;
    display: inline-block;
    padding: 10px 40px 10px 40px;
    border-radius: 30px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background-color: transparent;
    color: white;
    border: 2px solid var(--white-color);

}
/* Überschreiben der Bootstrap-Stile für .form-select */
.psnmedia-select-category.form-select {
    appearance: none; /* Entfernt das native Dropdown-Styling */
    -webkit-appearance: none; /* Für Webkit-Browser */
    -moz-appearance: none; /* Für Firefox */
    background-color: transparent; /* Hintergrund der Selectbox */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"></path></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center; /* Position des Pfeils */
    background-size: 1rem; /* Größe des Pfeils */
    color: #ffffff; /* Textfarbe */
    padding-right: 2.5rem; /* Abstand damit der Pfeil nicht in den Text ragt */
    border: 1px solid #ffffff; /* Weißer Rand */
}
.psnmedia-select-category.form-select option{
    background-color: var(--body-bg);
}


.psnmedia-search {
    font-size: 18px;
    display: inline-block;
    padding: 10px 40px 10px 40px;
    border-radius: 30px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background-color: transparent;
    color: white;
    border: 2px solid var(--white-color);
}