
/* BS – Countdown Strip (Block) v1.2.2 */
.bs-countdown-strip{
  width: 100%;
  background: var(--bs-cs-bg, #0b0b0b);
  color: #ffffff;
  padding: 18px 16px;
  margin: 30px 0; /* requested spacing */
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.bs-cs-wrap{ display:block; color:inherit; text-decoration:none; }
.bs-cs-wrap--disabled{ cursor:default; pointer-events:none; opacity:.95; }

.bs-cs-inner{ max-width:1160px; margin:0 auto; }

/* Title + subtitle stacked */
.bs-cs-top{
  display:flex;
  flex-direction:column;
  gap: 6px;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  text-align:center;
}

.bs-cs-pretitle{
  font-weight:700;
  font-size:26px;
  line-height:1.15;
  letter-spacing:0;
  opacity:1;
  text-transform:uppercase; /* requested */
  color:#ffffff;
}

.bs-cs-subtitle{
  font-size:14px;
  opacity:1;
  color:#ffffff;
}

.bs-cs-counter{
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:stretch;
  flex-wrap:wrap;
}

/* Cards: desktop big, radius 8px */
.bs-cs-card{
  background: var(--bs-cs-card, #141414);
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  padding:18px 21px;
  min-width:126px;
  text-align:center;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.bs-cs-num{
  font-size:51px;
  line-height:1;
  font-weight:900;
  color: var(--bs-cs-num, #ffffff); /* configurable: numbers only */
}

/* time unit labels */
.bs-cs-label{
  margin-top:8px;
  font-size:15px;         /* requested (interpreting 15px as size) */
  font-weight:700;        /* keep readable on dark */
  opacity:1;
  color:#ffffff;
}

/* POST state */
.bs-cs-post{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:16px;
  align-items:center;
}
.bs-cs-post-media{ display:flex; justify-content:center; align-items:center; }
.bs-cs-img{
  width:100%; height:auto;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.bs-cs-post-title{ font-size:20px; font-weight:900; margin-bottom:6px; color:#ffffff; }
.bs-cs-post-text{ font-size:14px; opacity:1; color:#ffffff; }

.bs-cs-btn{
  display:inline-block;
  background: var(--bs-cs-accent, #1f8a5b);
  color:#fff;
  border-radius:12px;
  padding:10px 14px;
  font-weight:800;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

/* Mobile: smaller cards so they can fit side-by-side */
@media (max-width:480px){
  .bs-cs-counter{
    flex-wrap:nowrap;
    gap:8px;
  }
  .bs-cs-card{
    min-width:0;
    flex:1 1 0;
    padding:10px 8px;
    border-radius:8px;
  }
  .bs-cs-num{ font-size:28px; }
  .bs-cs-label{ font-size:11px; font-weight:700; margin-top:6px; }
}

/* Small tablets: allow wrap but smaller than desktop */
@media (min-width:481px) and (max-width:640px){
  .bs-cs-card{ min-width:96px; padding:14px 16px; border-radius:8px; }
  .bs-cs-num{ font-size:38px; }
  .bs-cs-label{ font-size:13px; font-weight:700; }
  .bs-cs-post{ grid-template-columns:1fr; text-align:center; }
}
@media (max-width:640px){
  .bs-cs-post{ grid-template-columns:1fr; text-align:center; }
}
