/* Contact page only. Loaded alongside core.css. */

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: var(--space-xl);
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(10,46,74,0.12);
  background: rgba(10,46,74,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--primary);
}
.contact-detail-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
