/* poster.css - RBI Compliance Banner (poster.tsx) */

#rbi-poster {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F8FAFC 0%, #ffffff 50%, rgba(239, 246, 255, 0.4) 100%);
  border-bottom: 1px solid #F1F5F9;
}

/* Decorative SVG elements */
.poster-circuit {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  opacity: 0.15;
  pointer-events: none;
}

.poster-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 256px;
  height: 192px;
  opacity: 0.4;
  pointer-events: none;
}

/* Main content */
.poster-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  min-height: 300px;
}

@media (min-width: 1024px) {
  .poster-content {
    flex-direction: row;
    align-items: center;
    padding: 64px 24px;
    gap: 0;
  }
}

/* Left column */
.poster-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Eyebrow */
.poster-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.poster-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
}

/* Heading */
.poster-heading {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  max-width: 672px;
  margin: 0;
}

@media (min-width: 1024px) {
  .poster-heading {
    font-size: 36px;
  }
}

.poster-heading .accent {
  color: var(--blue-600);
}

/* Description */
.poster-desc {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.7;
  max-width: 576px;
  margin: 0;
}

/* Feature tags */
.poster-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.poster-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.poster-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

.poster-tag.white {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #E5E7EB;
  color: #374151;
}

.poster-tag.emerald {
  background: #D1FAE5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}

.poster-tag.sky {
  background: #E0F2FE;
  border: 1px solid #BAE6FD;
  color: #0C4A6E;
}

.poster-tag.violet {
  background: #EDE9FE;
  border: 1px solid #DDD6FE;
  color: #4C1D95;
}

.poster-tag.yellow {
  background: #FEF9C3;
  border: 1px solid #FDE68A;
  color: #713F12;
}

/* Vertical divider */
.poster-divider {
  display: none;
  width: 1px;
  align-self: stretch;
  background-color: #E5E7EB;
  margin: 0 48px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .poster-divider {
    display: block;
  }
}

/* Right column */
.poster-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .poster-right {
    min-width: 280px;
  }
}

.poster-deadline {
  text-align: center;
}

.poster-deadline-text {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(135deg, #3B82F6 25%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

@media (min-width: 1024px) {
  .poster-deadline-text {
    font-size: 96px;
  }
}

.poster-deadline-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-top: 4px;
}

.poster-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #111827;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.poster-cta-btn:hover {
  background-color: #1F2937;
}
