/* ============================================
   PROMOTIONAL TOP BANNER
   ============================================ */

.promo-banner {
  position: relative;
  width: 100%;
  height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff;
  transition: height .15s linear, opacity .15s linear;
}

.promo-banner__close {
  position: absolute;
  z-index: 30;
  top: .5rem;
  right: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.promo-banner__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .85);
  outline-offset: 2px;
}

.promo-banner__link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
}

.promo-banner__picture,
.promo-banner__picture img,
.promo-banner__image {
  display: block;
  width: 100%;
  height: 56px;
  object-fit: cover;
  object-position: center;
}

.promo-banner__countdown-wrap {
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: 761px;
  padding-inline: .75rem;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.promo-banner__countdown {
  display: flex;
  align-items: flex-start;
  gap: .15rem;
}

.promo-banner__countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .12rem;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(42, 93, 216, .35);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
}

.promo-banner__countdown-time {
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
  color: rgb(10, 61, 107);
}

.promo-banner__countdown-label {
  margin: 0;
  font-size: .58rem;
  font-weight: 900;
  line-height: 1;
  color: rgb(42, 93, 216);
}

@media (min-width: 768px) {
  .promo-banner__countdown {
    gap: .25rem;
  }

  .promo-banner__countdown-item {
    width: 44px;
    height: 44px;
  }

  .promo-banner__countdown-time {
    font-size: 1.125rem;
  }

  .promo-banner__countdown-label {
    font-size: .68rem;
  }
}

.promo-banner-edit__images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.promo-banner-edit__image-dropzone {
  min-height: 120px;
}

.promo-banner-edit__preview {
  width: 100%;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.promo-banner-edit__datetime {
  max-width: 320px;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgb(var(--color-primary-rgb) / .22);
  padding: .55rem .75rem;
}
