:root{
  --bg:#07080c;
  --card:#0f1117;
  --border:rgba(255,255,255,.08);
  --text:#e9eef6;
  --muted:rgba(233,238,246,.65);
  --pink:#ff4fd8;
  --blue:#3fd1ff;
  --radius:18px;
  --container:1180px;
}

*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial}
.container{width:min(var(--container),calc(100% - 48px));margin:0 auto}

.hero{
  min-height: 80vh;
  display:flex;
  align-items:center;
  position:relative;
  background: url('../img/hero.jpg') center/cover no-repeat;
}
.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(60% 60% at 50% 30%, rgba(0,0,0,.35), rgba(0,0,0,.85));
}
.hero__content{position:relative; z-index:2; text-align:center; padding:70px 0}
.hero__title{font-size: clamp(46px,6vw,84px); margin:0 0 8px; letter-spacing:1px}
.grad-pink{background:linear-gradient(90deg,var(--pink),#b56bff); -webkit-background-clip:text; color:transparent}
.grad-blue{background:linear-gradient(90deg,#b56bff,var(--blue)); -webkit-background-clip:text; color:transparent}
.hero__subtitle{margin:0 0 22px; color:var(--muted); font-size:18px}

.countdown{
  display:flex; gap:14px; justify-content:center;
  margin: 18px 0 22px;
}
.count{
  width:92px; height:92px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  backdrop-filter: blur(10px);
}
.count .num{font-size:34px; font-weight:700}
.count .lbl{font-size:11px; color:var(--muted); margin-top:4px; letter-spacing:.6px; text-transform:uppercase}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  gap:8px;
}
.btn--primary{background:linear-gradient(90deg,var(--pink),var(--blue)); border:none; color:#07080c; font-weight:700}
.btn--ghost{background:rgba(0,0,0,.35)}

.section{padding: 54px 0}
.section__head h2{margin:0 0 6px; font-size:30px}
.section__head p{margin:0; color:var(--muted)}

.news-featured{
  margin-top: 22px;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid var(--border);
  background: var(--card);
  position:relative;
}
.news-featured img{width:100%; height:420px; object-fit:cover; display:block; filter:saturate(1.1)}
.news-featured__content{
  position:absolute; left:0; right:0; bottom:0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
}
.badge{
  display:inline-flex;
  padding: 4px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}
.badge--official{background: rgba(33, 255, 128, .18); border-color: rgba(33,255,128,.35); color:#7dffb8}
.news-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:30px;
}

.news-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}

.news-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.news-card__content{
  padding:16px;
}

.news-card h4{
  margin:6px 0 8px;
  font-size:16px;
}

.news-card p{
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 1000px){
  .news-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 600px){
  .news-grid{
    grid-template-columns:1fr;
  }
}
.section__head--row{display:flex;align-items:flex-end;justify-content:space-between;gap:16px}
.section__link{color:var(--pink);text-decoration:none;font-weight:600}
.section__subhead{margin:24px 0 12px;font-size:18px;color:rgba(233,238,246,.9)}

.filter{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0 18px}
.chip{
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:rgba(233,238,246,.8);
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  font-size:13px;
}
.chip.is-active{
  background:linear-gradient(90deg,var(--pink),var(--blue));
  color:#07080c;
  border-color:transparent;
  font-weight:700;
}

.grid--gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media (max-width: 1000px){.grid--gallery{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 600px){.grid--gallery{grid-template-columns:1fr}}

.media-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--card);
}
.media-card img{width:100%;height:190px;object-fit:cover;display:block}
.media-card__link{display:block;color:inherit;text-decoration:none}

.media-card .badge{position:absolute;top:12px;right:12px}
.media-card__play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.media-card__play::before{
  content:"";
  width:54px;height:54px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(8px);
}
.media-card__play::after{
  content:"";
  position:absolute;
  width:0;height:0;
  border-left:14px solid rgba(255,255,255,.9);
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  margin-left:4px;
}
.social-layout{
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap:18px;
  margin-top:18px;
}
@media (max-width: 1000px){
  .social-layout{grid-template-columns:1fr}
}

.social-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}
@media (max-width: 700px){
  .social-grid{grid-template-columns:1fr}
}

.social-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  min-height: 210px;
}

.social-card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.social-card__user{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.social-card__meta{color:var(--muted); font-size:12px}
.social-card__verified{color:#7dffb8; font-size:12px}

.social-card__ext{
  color:rgba(233,238,246,.7);
  text-decoration:none;
  border:1px solid var(--border);
  padding:4px 10px;
  border-radius:10px;
}
.social-card__content{color:rgba(233,238,246,.9); font-size:14px; line-height:1.55}
.social-card__stats{
  display:flex;
  gap:14px;
  margin-top:14px;
  color:rgba(233,238,246,.65);
  font-size:13px;
}

.social-side{display:flex; flex-direction:column; gap:18px}
.side-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}
.side-card h3{margin:0 0 10px;font-size:16px}

.trending{margin:0;padding-left:0; list-style:none; display:flex; flex-direction:column; gap:10px}
.trending li{display:flex; gap:10px; color:rgba(233,238,246,.85); font-size:13px; line-height:1.4}
.trending li strong{
  width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:8px;background:rgba(255,255,255,.06);border:1px solid var(--border);
  font-size:12px;
}

.tags{display:flex;flex-wrap:wrap;gap:10px}
.tag{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  color:rgba(233,238,246,.75);
  font-size:12px;
}
.social-card__media{
  margin-top:14px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.social-card__media img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}

.social-card__mediaLink{display:block}

/* Social: layout polish */
.social-grid{
  align-items:stretch;
}

.social-card{
  display:flex;
  flex-direction:column;
}

.social-card__content{
  flex: 1;
}

.social-card__media{
  margin-top:14px;
}

.social-card__stats{
  margin-top:14px;
}
/* Social – Platform Badge dezenter */
.platform-badge{
  padding:6px 9px;
  font-size:11.5px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}

.platform-badge__icon{
  width:18px;
  height:18px;
  border-radius:7px;
}
.stat__i{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  opacity:.9;
}
.social-card__stats{
  letter-spacing:.2px;
}
.social-card__media img{
  height:190px; /* statt 210 */
}
.social-card__mediaLink:focus,
.social-card__ext:focus{
  outline:2px solid rgba(255,255,255,.25);
  outline-offset:2px;
  border-radius:12px;
}
.social-card__embed{
  margin-top:14px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}


.social-card__linkPreview{
  padding:10px 12px;
  font-size:13px;
  border-radius:12px;
}
.social-card__embed iframe{
  height:240px;
  border-radius:14px;
}
.platform-badge--youtube{
  background:rgba(255,0,0,.12);
  border-color:rgba(255,0,0,.35);
}
/* X Fake-Embed */
.x-embed{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:14px;
}

.x-embed__top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.x-embed__avatar{
  width:38px;
  height:38px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.12);
}

.x-embed__who{flex:1; min-width:0}
.x-embed__line{display:flex; align-items:center; gap:8px; color:rgba(233,238,246,.92)}
.x-embed__meta{color:rgba(233,238,246,.55); font-size:12px; margin-top:2px}

.x-embed__verified{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(90deg,var(--pink),var(--blue));
  box-shadow:0 0 0 3px rgba(255,255,255,.06);
}

.x-embed__open{
  width:34px;height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(233,238,246,.9);
  text-decoration:none;
}
.x-embed__open:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
}

.x-embed__text{
  color:rgba(233,238,246,.90);
  font-size:14px;
  line-height:1.6;
}
.x-embed__text p{margin:0 0 10px}
.x-embed__text p:last-child{margin-bottom:0}

.x-embed__media{
  margin-top:12px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.x-embed__media img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}
.social-card__embed{
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.pagination{
  margin-top:24px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pagination a,
.pagination span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:38px;
  padding:0 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(233,238,246,.85);
  text-decoration:none;
  font-size:13px;
}

.pagination .current{
  background:linear-gradient(90deg,var(--pink),var(--blue));
  border-color:rgba(255,255,255,.18);
  color:#0b0f18;
}
.single-article__head{max-width:900px;margin:0 auto 18px}
.single-article__meta{display:flex;gap:12px;align-items:center;color:rgba(233,238,246,.65);font-size:13px;margin-bottom:10px}
.single-article__title{font-size:42px;line-height:1.1;margin:0 0 10px}
@media (max-width:700px){.single-article__title{font-size:32px}}

.single-article__excerpt{color:rgba(233,238,246,.75);font-size:16px;line-height:1.6;margin:0}
.single-article__hero{margin:22px auto 0;max-width:1100px;border-radius:22px;overflow:hidden;border:1px solid rgba(255,255,255,.10)}
.single-article__hero img{width:100%;height:auto;display:block}

.single-article__content{max-width:900px;margin:22px auto 0;color:rgba(233,238,246,.9);font-size:15px;line-height:1.8}
.single-article__content h2,
.single-article__content h3{margin-top:28px}
.single-article__content a{color:var(--pink)}

.single-more{margin-top:46px}
.single-more h2{margin:0 0 16px}

/* Single (News) */
.single-article{
  max-width: 1100px;
  margin: 0 auto;
}

.single-article__head{
  max-width: 900px;
  margin: 0 auto 18px;
}

.single-article__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  color:rgba(233,238,246,.65);
  font-size:13px;
  margin-bottom:10px;
}

.single-article__sep{opacity:.7}
.single-article__cats a{color:rgba(233,238,246,.75);text-decoration:none}
.single-article__cats a:hover{color:rgba(233,238,246,.95)}

.single-article__title{
  font-size:44px;
  line-height:1.08;
  margin:0 0 10px;
}
@media (max-width:700px){
  .single-article__title{font-size:32px}
}

.single-article__excerpt{
  color:rgba(233,238,246,.78);
  font-size:16px;
  line-height:1.65;
  margin:0;
}

.single-article__hero{
  margin:22px auto 0;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.single-article__hero img{width:100%;height:auto;display:block}

.single-article__content{
  max-width:900px;
  margin:22px auto 0;
  color:rgba(233,238,246,.90);
  font-size:15px;
  line-height:1.85;
}
.single-article__content h2,
.single-article__content h3{margin-top:28px}
.single-article__content a{color:var(--pink)}

.single-article__tags{max-width:900px;margin:18px auto 0;display:flex;flex-wrap:wrap;gap:10px}

.single-more{margin-top:46px}
.single-more h2{margin:0}

/* News Archiv */
.news-feature{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  margin-top:14px;
}

.news-feature__media img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  filter:saturate(1.05);
}

.news-feature__overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:22px;
  background:linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.08));
}

.news-feature__overlay h2{
  margin:10px 0 8px;
  font-size:38px;
  line-height:1.1;
}
@media (max-width:700px){
  .news-feature__media img{height:320px}
  .news-feature__overlay h2{font-size:28px}
}

.news-feature__overlay a{color:rgba(233,238,246,.95);text-decoration:none}
.news-feature__overlay p{margin:0;color:rgba(233,238,246,.75);max-width:80ch}
.news-feature__meta{margin-top:10px;display:flex;gap:10px;color:rgba(233,238,246,.65);font-size:13px}

.news-archive .news-grid{margin-top:18px}
.news-card__meta{margin-top:10px;color:rgba(233,238,246,.55);font-size:12px}

.news-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
  margin-bottom:18px;
}
.back-home{
  display:inline-block;
  margin-bottom:6px;
  font-size:13px;
  color:rgba(233,238,246,.6);
  text-decoration:none;
}
.back-home:hover{
  color:#fff;
}
<div class="news-footer">
  <a class="btn btn--ghost" href="<?php echo esc_url(home_url('/')); ?>">
    ← Zur Startseite
  </a>
</div>

/* ================================
   News Links: niemals blau/lila
   ================================ */

/* Standard */
.news-card a,
.news-feature__overlay a,
.news-grid a{
  color: rgba(233,238,246,.92);
  text-decoration: none;
}

/* Visited Links */
.news-card a:visited,
.news-feature__overlay a:visited,
.news-grid a:visited{
  color: rgba(233,238,246,.92);
}

/* Hover */
.news-card a:hover,
.news-feature__overlay a:hover,
.news-grid a:hover{
  color: #fff;
  text-decoration: none;
}

/* Fokus (Accessibility, aber ohne blau) */
.news-card a:focus,
.news-feature__overlay a:focus,
.news-grid a:focus{
  outline: none;
  color: #fff;
}
a{
  color: inherit;
}
a:visited{
  color: inherit;
}
/* =================================
   News Links: keine Unterstreichung
   ================================= */

.news-card a,
.news-feature__overlay a,
.news-grid a{
  text-decoration: none !important;
}

.news-card a:hover,
.news-feature__overlay a:hover,
.news-grid a:hover{
  text-decoration: none !important;
}

.news-card a:visited,
.news-feature__overlay a:visited,
.news-grid a:visited{
  text-decoration: none !important;
}
.news-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
/* Featured News (groß): Link niemals unterstrichen */
.news-featured__content h3 a,
.news-featured__content h3 a:visited,
.news-featured__content h3 a:hover,
.news-featured__content h3 a:focus,
.news-featured__content h3 a:active{
  text-decoration: none !important;
  color: rgba(233,238,246,.92);
}
.news-featured__content h3 a:hover{
  color:#fff;
}
/* Featured News: Headline leicht reduziert */
.news-featured__content h3{
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.news-featured__content h3 a{
  font-size: inherit;
  line-height: inherit;
}

@media (min-width: 1024px){
  .news-featured__content h3{
    font-size: 36px;
}

.news-featured__content p{
  font-size: 16px;
  line-height: 1.6;
  opacity: .95;
}
.news-meta {
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    gap: 6px;
}

.news-author::before {
    content: "👤 ";
}

.news-date::before {
    content: "📅 ";
}
.single-meta{
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.65);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.single-meta .single-author,
.single-meta .single-date{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-card__meta {
  margin: 6px 0 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.news-card__author {
  font-weight: 500;
}
.news-card__date {
  margin-left: 4px;
}
.single-article__cats{
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  vertical-align: middle;
}
.single-article__cats a.single-article__cat{
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.single-article__cats a.single-article__cat:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}
/* Featured News – Kategorie Badge */
.news-featured__content a.badge--cat {
  text-decoration: none;
  font-weight: 700;
}

/* auch beim Hover keine Unterstreichung */
.news-featured__content a.badge--cat:hover {
  text-decoration: none;
}
.news-featured__content a.badge--cat {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
}
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 99999;

  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  background: rgba(10,10,14,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header.is-scrolled{
  background: rgba(0,0,0,0.88);
  border-bottom-color: rgba(255,255,255,0.10);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

/* Brand */
.brand{
  text-decoration:none;
  font-weight:800;
  letter-spacing:0.2px;
  color:#fff;
}
.brand__gta{
  color:#ff4fd8; /* optional: dein Pink */
}
.brand__portal{
  opacity:.85;
  margin-left:2px;
}

/* Nav */
.main-nav__list{
  list-style:none;
  display:flex;
  gap:12px;
  margin:0;
  padding:0;
  align-items:center;
}

.main-nav__list a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  color:rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

/* Hover */
.main-nav__list a:hover{
  color:#fff;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

/* Active (WP gibt current-menu-item) */
.main-nav__list .current-menu-item > a,
.main-nav__list .current_page_item > a{
  color:#fff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

body.admin-bar .site-header{ top: 32px; }
@media (max-width: 782px){ body.admin-bar .site-header{ top: 46px; } }
}

/* News-Kategorie-Chips: Underline IMMER entfernen (auch wenn es kein text-decoration ist) */
.news-filters .chip,
.news-filters .chip:visited,
.news-filters .chip:hover,
.news-filters .chip:focus,
.news-filters .chip:active,
.filter.news-filter .chip,
.filter.news-filter .chip:visited,
.filter.news-filter .chip:hover,
.filter.news-filter .chip:focus,
.filter.news-filter .chip:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}
/* News-Filter: Chips immer sichtbar machen */
.news-filters .chip,
.filter.news-filter .chip {
  color: rgba(255,255,255,.88) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Aktiver Chip (z.B. "Alle") */
.news-filters .chip.is-active,
.filter.news-filter .chip.is-active {
  color: #0b0b0f !important;          /* Text sichtbar auf hellem Verlauf */
  font-weight: 600;
}

/* Falls "Alle" als :visited anders gefärbt wird */
.news-filters .chip:visited,
.filter.news-filter .chip:visited {
  color: rgba(255,255,255,.88) !important;
}
/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}
.lightbox.is-open{ display: block; }

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
}

.lightbox__panel{
  position: relative;
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15,15,18,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.lightbox__close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox__content{
  padding: 12px;
}

.lightbox__content img,
.lightbox__content video,
.lightbox__content iframe{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.lightbox__content iframe{
  aspect-ratio: 16 / 9;
  height: auto;
}
.lightbox__content {
  width: min(1100px, 92vw);
  height: min(620px, 70vh);
}

.lightbox__content iframe,
.lightbox__content video,
.lightbox__content img {
  width: 100%;
  height: 100%;
  display: block;
}


