.tj-notification-banner-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Notification Banner Component */
.tj-notification-banner {
  position: relative;
  width: 100%;
  background: rgba(240, 240, 240, 1);
  border-bottom: 1px solid rgba(68, 174, 207, 1);
  padding: 0.93rem 3rem;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease, margin 0.35s ease;
  will-change: max-height, opacity, transform;
}

.tj-notification-banner.is-hidden {
  display: none;
}

.tj-notification-banner + .tj-notification-banner {
  border-top: 1px solid rgba(68, 174, 207, 0.35);
}

.tj-notification-banner.is-closing {
  opacity: 0;
  transform: translateY(-12px);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  transition: opacity 0.35s ease, max-height 0.35s ease, transform 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.tj-notification-banner .tj-notification-banner__container {
  position: relative;
  width: 100%;
  max-width: 108.75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.56rem;
}
.tj-notification-banner .tj-notification-banner__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 70.12rem;
    margin: 0 auto;
  }
.tj-notification-banner .tj-notification-banner__text {
  font-family: 'Kanit', sans-serif;
  font-size: 1.12rem;
  line-height: 1.33;
  text-align: center;
  color: rgba(76, 76, 76, 1);
}

.tj-notification-banner .tj-notification-banner__text b,
.tj-notification-banner .tj-notification-banner__text strong {
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
}

.tj-notification-banner .tj-notification-banner__text-highlight {
  font-weight: 500;
  color: rgba(235, 87, 87, 1);
}

.tj-notification-banner .tj-notification-banner__text-footer {
  max-width: 29.56rem;
  margin: 0 auto;
}

.tj-notification-banner .tj-notification-banner__close {
  flex-shrink: 0;
  width: 1.12rem;
  height: 1.12rem;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(51, 51, 51, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.tj-notification-banner .tj-notification-banner__close:hover {
  color: rgba(235, 87, 87, 1);
  transform: scale(1.1);
}

.tj-notification-banner .tj-notification-banner__close svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1439px) {
  .tj-notification-banner .tj-notification-banner__container {
    gap: 1rem;
  }
}

@media (max-width: 1023px) {
  .tj-notification-banner {
    padding: 0.75rem 1.75rem;
  }
}

@media (max-width: 767px) {
  .tj-notification-banner {
    padding: 1rem;
  }
  .tj-notification-banner .tj-notification-banner__content,
  .tj-notification-banner .tj-notification-banner__text,
  .tj-notification-banner .tj-notification-banner__text-footer{
    text-align: left;
  }
  .tj-notification-banner .tj-notification-banner__container{
    align-items: flex-start;
  }
}

@media (max-width: 649px) {

  .tj-notification-banner .tj-notification-banner__text-footer {
    max-width: 100%;
  }
}

@media (max-width: 449px) {
  .tj-notification-banner .tj-notification-banner__container {
    gap: 0.75rem;
  }

  .tj-notification-banner .tj-notification-banner__text-footer {
    max-width: 100%;
  }
}
