
/* =========================================================
   Domestic Violence Page
========================================================= */
/* Intro Section */

.dv-intro {
  width: 100%;
  margin: 2rem auto 0 auto;
}

.dv-intro p {
  padding: 1rem;
}

.intro-p-divider {
  border: none;
  border-top: 1px solid var(--gold);
  width: 50%;
  margin: 1rem auto;
}

/* Base Content Styles */

.dv-content {
  margin: 0 auto;
  line-height: 1.65;
  font-size: 1.05rem;
  color: var(--text);
}

.dv-content p {
  margin-bottom: 1.25rem;
}

.dv-content strong {
  color: var(--navy);
}

/* Headings & hierarchy */

.dv-content h3 {
  margin: 2.75rem 0 1rem;
  font-size: 1.35rem;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 0.75rem;
}

/* Legal emphasis inside paragraphs */

.dv-content p strong:first-child {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

/* Add breathing room before new sections */

.dv-content > * + h3 {
  margin-top: 3rem;
}

/* DV Information Cards */

.dv-info {
  max-width: 900px;
  margin: 2rem auto;
  line-height: 1.7;
}

.dv-info h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #1f3a5f;
}

.dv-item {
  background: #fff;
  padding: 20px 24px;
  margin-bottom: 16px;
  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;
}

.dv-item:hover {
  transform: translateX(5px);
}

.dv-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #1f3a5f;
  border: none;
}

.dv-item p {
  margin: 0;
  font-size: 1rem;
}

/* Supporting Image */

.dv-image {
  display: flex;
  justify-content: center;
  margin: 3rem auto;
  width: 66%;
}

.dv-image img {
  width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .dv-image img {
    max-width: 900px;
  }
}

/* Reporting Section */

.dv-reporting {
  margin: 2rem auto;
}

.dv-reporting h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #1f3a5f;
}

.dv-reporting h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: #1f3a5f;
}

/* Agency grid */

.agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.agency-card {
  background: #fff;
  padding: 16px 18px;
  border: 2px solid #1f3a5f;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.agency-card:hover {
  transform: translateY(-5px);
}

.agency-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #1f3a5f;
}

.agency-card p {
  margin: 0;
  line-height: 1.5;
}

.agency-card p + p {
  margin-top: 6px;
}

/* Resource Sections */

.dv-resources {
  max-width: 1000px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.dv-block {
  margin: 2rem auto;
}

.dv-block h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1f3a5f;
}

.dv-block p {
  margin-bottom: 12px;
}

/* Protective order links */

.dv-links {
  list-style: none;
  padding-left: 0;
}

.dv-links li {
  margin-bottom: 8px;
}

.dv-links a {
  color: #1f3a5f;
  text-decoration: underline;
}

/* Resource cards */

.resource-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.resource-item {
  background: #fff;
  padding: 16px 18px;
  border: 2px solid #1f3a5f;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.resource-item:hover {
  transform: translateY(-5px);
}

.resource-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #1f3a5f;
}

.resource-item p {
  margin: 0;
}

.resource-item p + p {
  margin-top: 6px;
}

/* Links & Accessibility */

.dv-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dv-content a:hover {
  color: #0a4d78;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
  .dv-item {
    padding: 16px 18px;
  }

  .dv-info h2 {
    font-size: 1.2rem;
  }
}

/* Print Safety */

@media print {
  .dv-content {
    max-width: 100%;
    font-size: 11pt;
  }

  .vw-subnav,
  .quick-navbar {
    display: none;
  }
}