/* EPI Threats Plugin Styles */
.epi-threats-section {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2rem;
  color: var(--ast-global-color-2, #fff);
  text-align: center;
}

.epi-threats-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: var(--ast-global-color-1, #fff);
}

.epi-threats-intro {
  max-width: 920px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  color: var(--ast-global-color-2, rgba(255,255,255,0.9));
}

.epi-threats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.epi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1rem;
  border-radius: 10px;
  min-height: 220px;
}

.epi-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.6rem;
  background: rgba(0,0,0,0.2);
}

.epi-card-title {
  font-weight: 600;
  margin: 0.4rem 0;
  color: var(--ast-global-color-2, #fff);
}

.epi-card-wide {
  grid-column: 1 / -1;
  display: block;
}

.epi-threats-text {
  margin-top: 1.25rem;
  text-align: left;
  color: var(--ast-global-color-2, #fff);
  line-height: 1.6;
}

.epi-threats-text p {
  margin-bottom: 0.6rem;
}

.epi-example {
  font-weight: 700;
  margin-top: 0.5rem;
}

.epi-seo-text {
  margin-top: 1.5rem;
  background: rgba(0,0,0,0.03);
  padding: 1rem;
  border-radius: 8px;
  text-align: left;
  color: var(--ast-global-color-2, #fff);
}

@media (max-width: 820px) {
  .epi-threats-grid {
    grid-template-columns: 1fr;
  }
  .epi-card img { height: 200px; }
}