.dbcs-title{
  margin:0 0 8px;
  font-family: var(--e-global-typography-primary-font-family), sans-serif;
  font-size:20px;
  line-height:1.25;
  font-weight:700;
}

.dbcs-text{
  margin:0 0 14px;
  font-family: var(--e-global-typography-primary-font-family), sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:26px;
  color:#727272;
}

.dbcs-cta{
  display:inline-flex;
  gap:8px;
  font-weight:900;
  border-bottom:1px solid rgba(64,196,255,.55);
  padding-bottom:2px;
}

.dbcs-empty{
  grid-column: 1 / -1;
  padding:18px;
  border:1px dashed rgba(255,255,255,.25);
  border-radius:14px;
  opacity:.85;
  text-align:center;
}

/* Sidebar widgets (single page) */
.dbcs-widget{
  border:1px solid rgba(140,120,255,.25);
  background:rgba(10,14,22,.28);
  border-radius:18px;
  padding:16px;
  margin-bottom:16px;
}

.dbcs-widget-title{ margin:0 0 10px; font-weight:900; }

.dbcs-widget ul {
  list-style:none;
  padding:0;
  margin:0;
}

.dbcs-widget ul li {
  margin-bottom:8px;
}

.dbcs-widget ul li a {
  text-decoration:none;
  color:inherit;
  opacity:.85;
  transition:opacity .15s ease;
}

.dbcs-widget ul li a:hover {
  opacity:1;
}

.dbcs-wrap.dbcs-theme-dark{
  --dbcs-card-bg: #030303;
  --dbcs-border: rgba(8, 231, 234, 0.9);
  --dbcs-text: #ffffff;
  --dbcs-muted: rgba(255,255,255,.86);
  --dbcs-pill-bg: rgba(255,255,255,.08);
  --dbcs-pill-text: #ffffff;
  --dbcs-tab-text: #ffffff;
  --dbcs-tab-border: rgba(255,255,255,.78);
  --dbcs-tab-bg-active: rgba(255,255,255,.08);
  --dbcs-cta-accent: #08e7ea;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 24px;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-tab{
  appearance:none;
  background:transparent;
  border:1px solid var(--dbcs-tab-border);
  border-radius:999px;
  box-shadow:none;
  color:var(--dbcs-tab-text);
  cursor:pointer;
  font-size:14px;
  font-weight:700;
  line-height:1;
  padding:11px 16px;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-tab:hover,
.dbcs-wrap.dbcs-theme-dark .dbcs-tab:focus-visible,
.dbcs-wrap.dbcs-theme-dark .dbcs-tab.is-active{
  background:var(--dbcs-tab-bg-active);
  border-color:var(--dbcs-tab-text);
  color:var(--dbcs-tab-text);
  outline:none;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-grid{
  display:grid;
  gap:22px;
  grid-auto-columns:min(360px, 78vw);
  grid-auto-flow:column;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  padding-bottom:12px;
  scroll-snap-type:x proximity;
  scrollbar-width:thin;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-grid::-webkit-scrollbar{
  height:8px;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-grid::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.22);
  border-radius:999px;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card{
  background:#030303;
  border-radius:34px;
  min-width:0;
  overflow:hidden;
  position:relative;
  scroll-snap-align:start;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card::before{
  background:#030303;
  content:"";
  inset:0;
  position:absolute;
  z-index:0;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card::after{
  border:1.5px solid rgba(8, 231, 234, 0.9);
  border-radius:inherit;
  content:"";
  inset:0;
  pointer-events:none;
  position:absolute;
  z-index:3;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-link{
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none;
  color:var(--dbcs-text) !important;
  display:flex !important;
  flex-direction:column !important;
  min-height:545px !important;
  overflow:hidden !important;
  position:relative;
  text-decoration:none !important;
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease;
  z-index:1;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-link:hover,
.dbcs-wrap.dbcs-theme-dark .dbcs-link:focus-visible{
  border-color:#ffffff;
  box-shadow:0 18px 45px rgba(0,0,0,.28);
  outline:none;
  transform:translateY(-4px);
}

.dbcs-wrap.dbcs-theme-dark .dbcs-thumb{
  aspect-ratio:1 / .7;
  background:#050505 !important;
  overflow:hidden;
  position:relative;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-thumb::after{
  background:rgba(0,0,0,.8);
  content:"";
  inset:0;
  position:absolute;
  transition:opacity .22s ease;
  z-index:1;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-thumb img,
.dbcs-wrap.dbcs-theme-dark .dbcs-thumb-fallback{
  background:#050505 !important;
  display:block;
  height:100%;
  width:100%;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-thumb img{
  filter:brightness(.72);
  object-fit:cover;
  transform:scale(1.01);
  transition:transform .28s ease;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-thumb-fallback{
  background:linear-gradient(135deg, #111827 0%, #334155 100%);
}

.dbcs-wrap.dbcs-theme-dark .dbcs-thumb-meta{
  left:18px;
  opacity:1;
  position:absolute;
  top:18px;
  transition:opacity .2s ease, transform .2s ease;
  z-index:2;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-body{
  background:#030303 !important;
  display:flex !important;
  flex:1 1 auto !important;
  flex-direction:column !important;
  gap:12px !important;
  justify-content:flex-start !important;
  padding:14px 18px 16px !important;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-metric{
  color:#ffffff !important;
  font-size:clamp(54px, 5vw, 72px);
  font-weight:900;
  letter-spacing:-0.04em;
  line-height:.92;
  margin-top:8px;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-title{
  color:var(--dbcs-text) !important;
  font-size:clamp(17px, 1.2vw, 22px) !important;
  font-weight:700 !important;
  line-height:1.18 !important;
  margin:0 !important;
  max-width:100%;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-text{
  color:var(--dbcs-muted) !important;
  font-size:14px !important;
  line-height:1.42 !important;
  margin:0 !important;
  max-width:100%;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-cta{
  align-items:center;
  align-self:flex-start;
  color:#ffffff !important;
  font-size:16px !important;
  gap:10px;
  margin-top:6px !important;
  text-decoration:none !important;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-cta span[aria-hidden="true"]{
  color:var(--dbcs-cta-accent);
  font-size:22px;
  line-height:1;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-link:hover .dbcs-cta,
.dbcs-wrap.dbcs-theme-dark .dbcs-link:focus-visible .dbcs-cta{
  color:var(--dbcs-cta-accent);
}

.dbcs-wrap.dbcs-theme-dark .dbcs-link:hover .dbcs-thumb::after,
.dbcs-wrap.dbcs-theme-dark .dbcs-link:focus-visible .dbcs-thumb::after{
  opacity:.18;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-link:hover .dbcs-thumb-meta,
.dbcs-wrap.dbcs-theme-dark .dbcs-link:focus-visible .dbcs-thumb-meta{
  opacity:0;
  transform:translateY(-6px);
}

.dbcs-wrap.dbcs-theme-dark .dbcs-link:hover .dbcs-thumb img,
.dbcs-wrap.dbcs-theme-dark .dbcs-link:focus-visible .dbcs-thumb img{
  filter:brightness(1);
  transform:scale(1.04);
}

.dbcs-wrap.dbcs-theme-dark .dbcs-pill{
  align-self:flex-start;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#ffffff;
  font-size:12px;
  font-weight:700;
  line-height:1;
  padding:8px 11px;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card-dark-fallback .dbcs-link{
  min-height:unset !important;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card-dark-fallback .dbcs-thumb{
  aspect-ratio:1 / .5;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card-dark-fallback .dbcs-body{
  flex:0 0 auto !important;
  gap:8px !important;
  padding:16px 16px 14px !important;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card-dark-fallback .dbcs-title{
  font-size:clamp(14px, 1.05vw, 18px) !important;
  line-height:1.16 !important;
  margin-top:0 !important;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card-dark-fallback .dbcs-text{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
}

.dbcs-wrap.dbcs-theme-dark .dbcs-card-dark-fallback .dbcs-cta{
  font-size:14px !important;
  margin-top:6px !important;
}

@media (max-width: 767px){
  .dbcs-wrap.dbcs-theme-dark .dbcs-tab{
    font-size:13px;
    padding:10px 14px;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-grid{
    gap:16px;
    grid-auto-columns:min(84vw, 320px);
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-link{
    min-height:470px;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-body{
    gap:12px;
    padding:16px 16px 20px;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-metric{
    font-size:48px;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-thumb-meta{
    left:14px;
    top:14px;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-title{
    font-size:15px;
    max-width:100%;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-text,
  .dbcs-wrap.dbcs-theme-dark .dbcs-cta{
    font-size:14px;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-card-dark-fallback .dbcs-link{
    min-height:unset !important;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-card-dark-fallback .dbcs-thumb{
    aspect-ratio:1 / .46;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-card{
    border-radius:28px;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-link,
  .dbcs-wrap.dbcs-theme-dark .dbcs-thumb,
  .dbcs-wrap.dbcs-theme-dark .dbcs-thumb img,
  .dbcs-wrap.dbcs-theme-dark .dbcs-thumb-fallback{
    border-radius:0 !important;
  }

  .dbcs-wrap.dbcs-theme-dark .dbcs-body{
    border-radius:0 !important;
  }
}
