/* Adam Video Archiv - kompakte Thumbnails, weiße Schrift, olivgrüner Tarnfarben-Look */

.adam-video-archiv {
    background:
        radial-gradient(circle at 20% 20%, rgba(111, 128, 61, .35), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(51, 68, 32, .45), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(120, 110, 60, .25), transparent 35%),
        #26351f;
    padding: 28px;
    border-radius: 18px;
    color: #ffffff;
}

.adam-video-archiv-title {
    color: #ffffff !important;
    font-size: clamp(32px, 5vw, 54px);
    margin: 0 0 8px;
    line-height: 1.05;
    text-shadow: 2px 2px 6px rgba(0,0,0,.85);
    font-weight: 800;
    letter-spacing: .03em;
}

.adam-video-archiv-intro {
    color: #ffffff !important;
    font-size: 17px;
    margin: 0 0 22px;
    text-shadow: 1px 1px 4px rgba(0,0,0,.8);
}

.adam-video-toolbar {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.adam-video-search {
    min-width: 220px;
    flex: 1;
    background: #172111;
    color: #ffffff;
    border: 1px solid #73834a;
    border-radius: 999px;
    padding: 11px 15px;
    outline: none;
}

.adam-video-search::placeholder {
    color: rgba(255,255,255,.75);
}

.adam-video-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.adam-video-filters button {
    background: #5f6f35;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: 9px 13px;
    cursor: pointer;
    font-weight: 700;
}

.adam-video-filters button:hover,
.adam-video-filters button.active {
    background: #8a7a3f;
    color: #ffffff;
}

.adam-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.adam-video-card {
    background: rgba(19, 28, 14, .92);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,.28);
    transition: transform .22s ease, box-shadow .22s ease;
}

.adam-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,.38);
}

.adam-video-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    max-height: 140px;
    overflow: hidden;
    background: #111;
}

.adam-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.adam-video-card:hover .adam-video-thumb img {
    transform: scale(1.035);
}

.adam-video-play-badge {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,.68);
    color: #ffffff;
    font-size: 19px;
    border: 2px solid rgba(255,255,255,.75);
}

.adam-video-card-body {
    padding: 10px;
}

.adam-video-category {
    color: #ffffff;
    background: #556b2f;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 700;
}

.adam-video-title,
.adam-video-title a {
    color: #ffffff !important;
    margin: 8px 0 6px;
    font-size: 18px;
    line-height: 1.25;
    text-decoration: none;
    text-shadow: 1px 1px 4px rgba(0,0,0,.75);
}

.adam-video-title a:hover {
    text-decoration: underline;
}

.adam-video-excerpt {
    color: #ffffff !important;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0,0,0,.75);
}

.adam-video-empty {
    color: #ffffff;
    margin-top: 18px;
    font-weight: 700;
}

/* Blog- und Archivseiten: Videovorschau kompakt halten */
.blog .adam-video-archiv,
.archive .adam-video-archiv,
.category .adam-video-archiv,
.search .adam-video-archiv {
    padding: 18px;
}

.blog .adam-video-grid,
.archive .adam-video-grid,
.category .adam-video-grid,
.search .adam-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}

.blog .adam-video-thumb,
.archive .adam-video-thumb,
.category .adam-video-thumb,
.search .adam-video-thumb {
    max-height: 120px;
}

.blog .adam-video-card-body,
.archive .adam-video-card-body,
.category .adam-video-card-body,
.search .adam-video-card-body {
    padding: 8px;
}

.blog .adam-video-title,
.blog .adam-video-title a,
.archive .adam-video-title,
.archive .adam-video-title a,
.category .adam-video-title,
.category .adam-video-title a,
.search .adam-video-title,
.search .adam-video-title a {
    font-size: 16px;
}

.blog .adam-video-excerpt,
.archive .adam-video-excerpt,
.category .adam-video-excerpt,
.search .adam-video-excerpt {
    display: none;
}

/* Einzelner Blogbeitrag: Video bleibt sichtbar, aber nicht riesig */
.adam-video-single {
    max-width: 760px;
    margin: 0 auto 24px;
}

.adam-video-consent {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16 / 9;
    max-height: 430px;
}

.adam-video-consent img,
.adam-video-consent iframe,
.adam-video-single video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
}

.adam-video-consent-box {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 18px;
    background: rgba(0,0,0,.55);
    color: #ffffff;
    text-align: center;
}

.adam-video-consent-box p {
    color: #ffffff !important;
    max-width: 560px;
    margin: 0;
}

.adam-video-play {
    font-size: 40px;
}

.adam-video-consent-box button {
    background: #7d8843;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    padding: 11px 16px;
    cursor: pointer;
    font-weight: 800;
}

@media (max-width: 900px) {
    .adam-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .adam-video-archiv {
        padding: 18px;
        border-radius: 14px;
    }

    .adam-video-toolbar {
        display: block;
    }

    .adam-video-search {
        width: 100%;
        margin-bottom: 12px;
    }

    .adam-video-grid {
        grid-template-columns: 1fr;
    }

    .adam-video-thumb {
        max-height: 180px;
    }
}
