
.banner {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #f8fafc 100%);
  border: 11px solid black;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
  color: #0f172a;
  box-sizing: border-box;
}





.showBannerBtn {
  appearance: none;
  border: 0;
  border-radius: ;
  padding: 10px 14px;
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  width: 100%;
}

.tile {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: #e2e8f0;
  border-radius: ;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  position: relative;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  width: 100%;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f1f5f9;
}

.tile.reveal {
  animation: tileIn 0.35s ease;
}

.copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 2px 2px 0;
  width: 100%;
  flex: 1 1 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #f97316;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.headline {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.promo {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.textLink {
  display: inline-block;
  margin-top: 2px;
  color: #2563eb;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.2s ease;
}

.textLink:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.fineprint {
  font-size: 12px;
  line-height: 1.4;
  color: #94a3b8;
}


.show-headline .headline {
  opacity: 1;
  transform: translateY(0);
}

.show-promo .promo {
  opacity: 1;
  transform: translateY(0);
}

.show-cta .textLink {
  opacity: 1;
  transform: translateY(0);
}

.is-collapsed .copy {
  display: none;
}

@keyframes tileIn {
  from {
    opacity: 0.45;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}




.bannerWrap {
  width: 100%;
}

.bannerActions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.actionBtn {
  appearance: none;
  border: 0;
  border-radius: ;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.actionBtn.secondary {
  background: #0f172a;
  color: #ffffff;
}

.actionBtn.secondary:hover {
  opacity: 0.9;
}




/*@import './base.css';

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  font-weight: normal;
}

a,
.green {
  text-decoration: none;
  color: hsla(160, 100%, 37%, 1);
  transition: 0.4s;
  padding: 3px;
}

@media (hover: hover) {
  a:hover {
    background-color: hsla(160, 100%, 37%, 0.2);
  }
}

@media (min-width: 1024px) {
  body {
    display: flex;
    place-items: center;
  }

  #app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 2rem;
  }
}
*/




