/* =========================================
   PENGUMUMAN HERO — Alert Industrial Notice (100vh)
   ========================================= */
#pengumuman-hero {
  min-height: 100vh;
  background-color: #121316;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px;
}

#pengumuman-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C0392B);
  z-index: 3;
}

#pengumuman-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: #C0392B;
  z-index: 3;
}

.pengumuman-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pengumuman-hero-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
      radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.pengumuman-hero-canvas-geo {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-52%);
  width: min(600px, 55vw);
  height: min(600px, 55vw);
  border-left: 1.5px solid rgba(255,255,255,0.04);
  border-bottom: 1.5px solid rgba(255,255,255,0.04);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(
      160deg,
      transparent 40%,
      rgba(192, 57, 43, 0.12) 100%
  );
}

.pengumuman-hero-inner {
  position: relative;
  z-index: 1;
}

.pengumuman-hero-eyebrow {
  font-family: monospace;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--spacing-3);
}

.pengumuman-hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.pengumuman-hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: var(--spacing-5);
}

.pengumuman-hero-title .t2 {
  color: transparent;
  -webkit-text-stroke: 2px #E67835;
}

.pengumuman-hero-lower {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pengumuman-hero-desc {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
}

.pengumuman-hero-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-pill);
  font-family: monospace;
  font-size: 0.8rem;
  color: #FBBF24;
  margin-left: auto;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: #FBBF24;
  border-radius: 50%;
  animation: statusPulseAnim 2s infinite ease-in-out;
}

@keyframes statusPulseAnim {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 10px #FBBF24;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.pdf-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: #1e1e1e;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  border-left: 4px solid #ff3b1d;
  transition: all 0.3s ease;
  /* font-weight: bold; */
}

.pdf-btn:hover {
  background: #2a2a2a;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 59, 29, 0.2);
}

.pdf-btn i {
  color: #ff3b1d;
  font-size: 1.2rem;
}

.modal-pdf {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-pdf-content {
  background-color: #121212;
  margin: 2% auto;
  padding: 20px;
  border: 1px solid #333;
  width: 90%;
  max-width: 1000px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.close-pdf {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-pdf:hover,
.close-pdf:focus {
  color: #ff3b1d;
  text-decoration: none;
}

.flexc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.noscroll {
  overflow: hidden;
  transition: 0.2s;
}

a {
  text-decoration: none;
  color: inherit;
}