/* =========================================
   Helpful Links – Clean Single-Column Layout
========================================= */

.vw-links-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 3rem auto 0 auto;
}

/* Individual link card */
.vw-link-card {
  background: #ffffff;
  border: 1px solid #e3ded6;
  border-radius: 0.95rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);

  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.vw-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}

/* Card heading */
.vw-link-card h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.vw-link-card h3 i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Link text */
.vw-link-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #14212b;
}

.vw-link-card a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.vw-link-card a:hover {
  color: #0a4d78;
}

/* =========================================
   Back to Top
========================================= */

.back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 0 3rem;
  text-decoration: underline;
  font-weight: 600;
}

.back-top:hover {
  color: #b8923f;
}

/* =========================================
   Mobile Refinements
========================================= */

@media (max-width: 700px) {
  .vw-links-list {
    gap: 1rem;
  }

  .vw-link-card {
    padding: 1.1rem 1.25rem;
  }

  .vw-link-card h3 {
    font-size: 1rem;
  }

  .vw-link-card p {
    font-size: 0.95rem;
  }
}
