/**
 * JamWatHQ Notice Banner Standard Component - REDESIGNED
 * Refined Tropical Noir design with layered depth
 * Created: 2026-01-18 (UX-20260118-NOTICE-BANNERS)
 * Redesigned: 2026-02-10 (DZP-2026-0210 T3)
 *
 * Used on: news.html, agencies.html, community.html
 * Pattern: Icon box + Content with gradient accent stripe
 */

/* ================================================
   NOTICE BANNER STANDARD COMPONENT
   ================================================ */
.notice-banner-standard {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  margin: 1.5rem auto;
  max-width: 1120px;
  background: #000000;
  border: 1px solid rgba(255, 238, 0, 0.12);
  border-left: none;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notice-banner-standard:hover {
  border-color: rgba(255, 238, 0, 0.25);
}

/* Gradient gold-to-green left accent stripe */
.notice-banner-standard::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #ffee00 0%, #e4d400 50%, #28a745 100%);
  border-radius: 12px 0 0 12px;
}

/* Subtle top-right geometric accent */
.notice-banner-standard::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 238, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Icon box */
.notice-banner-standard .notice-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 238, 0, 0.15);
  border: 1px solid rgba(255, 238, 0, 0.15);
  border-radius: 6px;
  color: #ffee00;
  font-size: 1.25rem;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notice-banner-standard:hover .notice-icon {
  background: rgba(255, 238, 0, 0.30);
  transform: scale(1.05);
}

.notice-banner-standard .notice-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.notice-banner-standard .notice-title {
  margin: 0 0 0.6rem 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffee00;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.notice-banner-standard .notice-message {
  margin: 0 0 0.85rem 0;
  line-height: 1.7;
  color: #e8e8e8;
  font-size: 0.95rem;
  font-weight: 400;
}

.notice-banner-standard .notice-message:last-child {
  margin-bottom: 0;
}

.notice-banner-standard .notice-message strong {
  color: #ffee00;
  font-weight: 600;
}

/* Notice warning callout */
.notice-banner-standard .notice-warning {
  position: relative;
  padding: 0.85rem 1rem;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.18);
  border-radius: 6px;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Source list - card-like rows */
.notice-banner-standard .notice-list {
  margin: 0.85rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.notice-banner-standard .notice-list li {
  position: relative;
  padding: 0.6rem 0.85rem;
  padding-left: 1.75rem;
  background: #141414;
  border: 1px solid rgba(255, 238, 0, 0.06);
  border-radius: 6px;
  color: #e8e8e8;
  font-size: 0.92rem;
  line-height: 1.6;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notice-banner-standard .notice-list li:hover {
  border-color: rgba(255, 238, 0, 0.15);
  background: rgba(255, 238, 0, 0.03);
}

.notice-banner-standard .notice-list li::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ffee00;
  border-radius: 50%;
}

.notice-banner-standard .notice-list li strong {
  color: #ffffff;
  font-weight: 600;
}

/* Notice links */
.notice-banner-standard .notice-link {
  color: #28a745 !important;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notice-banner-standard .notice-link:hover {
  color: #218838 !important;
  border-bottom-color: #218838;
}

.notice-banner-standard .notice-link:focus-visible {
  outline: 2px solid #ffee00;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ================================================
   RESPONSIVE: TABLET & MOBILE
   ================================================ */
@media (max-width: 768px) {
  .notice-banner-standard {
    flex-direction: column;
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
  }

  .notice-banner-standard .notice-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .notice-banner-standard .notice-title {
    font-size: 1.15rem;
  }

  .notice-banner-standard .notice-message {
    font-size: 0.9rem;
  }

  .notice-banner-standard .notice-list li {
    font-size: 0.88rem;
    padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  }
}

/* ================================================
   REDUCED MOTION ACCESSIBILITY
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  .notice-banner-standard:hover .notice-icon {
    transform: none;
  }
}
