/* =========================================
   PUBLIKASI HERO — Floating Geometric Ambient Background (100vh)
   ========================================= */
#publikasi-hero {
  min-height: 100vh;
  background-color: #121316;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1.5px,
    transparent 1.5px
  );
  background-size: 24px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px;
  z-index: 1;
}

/* #publikasi-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #E67835;
  z-index: 3;
} */

/* Floating Rectangles Layer */
.hero-geo-shape {
  position: absolute;
  background-color: rgba(28, 29, 32, 0.7); /* Subtle translucent block */
  border: 1px solid #2b2e34;
  backdrop-filter: blur(4px); /* Adds depth illusion */
  z-index: -1;
  pointer-events: none;
  /* animation: float-ambient 8s ease-in-out infinite; */
}

.geo-shape-1 {
  bottom: -50%;
  left: 2%;
  width: 400px;
  height: 400px;
}

.geo-shape-2 {
  top: -80px;
  right: -20px;
  width: 350px;
  height: 350px;
}

.geo-shape-3 {
  top: 30%;
  right: 25%;
  width: 150px;
  height: 150px;
}

.geo-shape-4 {
  bottom: 60%;
  left: 15%;
  width: 150px;
  height: 150px;
}

.publikasi-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.publikasi-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);
}

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


.publikasi-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);
}

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

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

.publikasi-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;
}

.publikasi-hero-meta {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.pub-meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 16px;
  border-left: 2px solid rgba(230, 120, 53, 0.5);
  gap: 10px;
}

.pub-meta-val {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1;
}

.pub-meta-label {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.article-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.article-image-container {
  width: 100%;
  max-height: 60vh;
  overflow: hidden;
  margin: 0 auto 60px;
  border-radius: 8px;
}

.article-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-content-body {
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 80px;
}

.article-content-body h2,
.article-content-body h3 {
  color: var(--color-white);
  margin-top: 2em;
  margin-bottom: 1em;
  font-family: var(--font-heading);
}

.article-content-body p {
  margin-bottom: 1.5em;
}

.article-content-body ul {
  margin-bottom: 1.5em;
  padding-left: 20px;
  list-style-type: disc;
}

.article-content-body li {
  margin-bottom: 0.5em;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  transition: color 0.3s;
}

.back-btn:hover {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .hero-geo-shape {
display: none;
}
}