/* === Documents Strip === */
.documents-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto;
}

.document-card {
  background: color(--white);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  padding: 1rem 2rem;
  min-width: 22rem;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid var(--blue);
  margin-top: 1rem;
  border-radius: 20px;
}

.document-card p {
  font-family: var(--body-font);
  color: var(--white);
  font-size: var(--body-size-small);
  margin: 0;
  line-height: 1.25;
}

.document-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.13);
}

.document-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0rem;
  width: 100%;
}

.document-icon {
  font-size: 2rem;
  color: var(--blue);
  flex-shrink: 0;
}

.document-desc {
  font-family: var(--subtitle-font);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.document-card .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--body-font);
  font-size: var(--body-size-small);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.document-card .btn i {
  font-size: 1.1rem;
}

.document-card .btn:hover {
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 900px) {
  .documents-columns {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}