/* 
========================================
CONTACT PAGE STYLES
========================================
*/
.contact-intro-card {
  padding: 2.5rem 2rem;
  text-align: left;
  margin-bottom: 2rem;
}
.contact-intro-text {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.contact-intro-highlight {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--title-color) !important;
}
.contact-intro-note {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #4b5563;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}
.contact-card {
  padding: 2.5rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--color-action);
}
.contact-card-body {
  flex: 1 0 auto;
}
.contact-card h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--title-color);
}
.contact-card ol {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  line-height: 1.7;
  color: #374151;
}
.contact-card ol li {
  margin-bottom: 0.5rem;
}
.contact-card-action {
  margin-top: auto;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-card-footer {
  font-size: 0.9rem;
  line-height: 1.5;
  border-top: 1px solid #e5e7eb;
  padding-top: 1.25rem;
  color: #4b5563;
  min-height: 5.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-card-footer p {
  margin-bottom: 0;
}
.contact-link {
  color: var(--title-color) !important;
  text-decoration: none;
  font-weight: 600;
}
.contact-card .btn {
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
}
@media (max-width: 640px) {
  .contact-card {
    padding: 1.75rem 1.25rem;
  }
  .contact-card .btn {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  .contact-card-footer {
    min-height: auto;
  }
}
@media (max-width: 400px) {
  .contact-card .btn {
    padding: 10px 10px;
    font-size: 0.82rem;
  }
}