/* GLASS CARD */
.article-card {
  display: flex;
  gap: 20px;

  background: var(--glass);
  backdrop-filter: blur(14px);

  border: 1px solid var(--border);
  border-radius: var(--radius);

  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.article-card:hover {
  transform: translateY(-6px) scale(1.01);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* IMAGE */
.article-card img {
  width: 280px;
  height: 230px;
  object-fit: cover;
  transition: 0.4s ease;
}

.article-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.article-content {
  padding: 20px;
}

.article-content p {
  color: var(--muted);
}

/* HERO */
.hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* GRADIENT OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #020617);
}

/* ARTICLE DETAIL */
.article {
  width: 70%;
  margin: -120px auto 60px;

  background: var(--glass);
  backdrop-filter: blur(16px);

  border: 1px solid var(--border);
  border-radius: var(--radius);

  padding: 50px;
}

/* BUTTON */
.button {
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: white;
  transition: 0.2s;
}

.button:hover {
  background: rgba(255,255,255,0.1);
}