/**************************/
/* ANNOUNCEMENT BANNER */
/**************************/

.announcement-banner {
  background: linear-gradient(135deg, #e67e22 0%, #eb984e 100%);
  padding: 1.6rem 0;
  position: relative;
  overflow: hidden;
}

.announcement-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.banner-content {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}

.banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
  backdrop-filter: blur(10px);
}

.banner-text p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.banner-btn {
  display: inline-block;
  background-color: #fff;
  color: #e67e22;
  padding: 1.2rem 2.4rem;
  border-radius: 10rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.banner-btn:hover {
  background-color: #fdf2e9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.banner-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/**************************/
/* RESPONSIVE */
/**************************/

@media (max-width: 944px) {
  .announcement-banner {
    padding: 2rem 0;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.6rem;
  }

  .banner-text {
    flex-direction: column;
    gap: 1.2rem;
  }

  .banner-text p {
    font-size: 1.5rem;
  }

  .banner-btn {
    font-size: 1.5rem;
  }
}

@media (max-width: 544px) {
  .announcement-banner {
    padding: 1.6rem 0;
  }

  .banner-icon {
    width: 3.6rem;
    height: 3.6rem;
  }

  .banner-icon svg {
    width: 20px;
    height: 20px;
  }

  .banner-text p {
    font-size: 1.4rem;
  }

  .banner-btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}
