/* =========================================================
   Drug Crimes 
========================================================= */
/* Intro Section */
.drug-intro {
  width: 75%;
  margin: 2rem auto;
}

.drug-intro p {
  padding: 1rem;
}
/* Base Content */

.drug-content {
  margin: 0 auto;
  line-height: 1.65;
  font-size: 1.05rem;
  color: var(--text);
}

.drug-content p {
  margin-bottom: 1.25rem;
}

.drug-intro p {
  margin-bottom: 0;
}

.drug-intro ul {
  padding: 1rem;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
  border: .25px solid var(--navy);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.drug-intro li {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.drug-content strong {
  color: var(--navy);
}

/* Section Headings */

.drug-content h2 {
  font-size: 1.35rem;
  margin: 3rem 0 1.25rem;
  color: var(--navy);
}

/* Information Cards */

.drug-info {
  max-width: 900px;
  margin: 2.5rem auto;
}

.drug-item {
  background: #fff;
  padding: 20px 24px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.drug-item:hover {
  transform: translateX(4px);
}

.drug-item p:last-child {
  margin-bottom: 0;
}

/* Lists inside cards */

.drug-item ul {
  margin: 0;
  padding-left: 1.2rem;
}

.drug-item li {
  margin-bottom: 0.4rem;
}

/* Links & Accessibility */

.drug-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.drug-content a:hover {
  color: #0a4d78;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
  .drug-intro {
    width: 100%;
  }

  .drug-item {
    padding: 16px 18px;
  }

  .drug-hero h1 {
    font-size: 1.75rem;
  }
}

/* Print Safety */

@media print {
  .drug-hero,
  .quick-navbar,
  .vw-subnav {
    display: none;
  }

  .drug-content {
    font-size: 11pt;
  }
}
