/* ══════════════════════════
   PAGE: CONTACT
══════════════════════════ */
.contact_modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 16px calc(var(--bottom-h) + 20px);
  width: 100%;
  overflow-y: auto;
}

.contact {
  display: flex;
  width: 100%;
  max-width: 560px;
  min-height: 80px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
  background: var(--card);
  border: 1px solid var(--border);
  align-items: center;
  gap: 0;
  overflow: hidden;
  transition: border-color .18s;
}

.contact:hover {
  border-color: rgba(240, 192, 64, .2);
}

.contact .contact_profile {
  width: 80px;
  min-width: 80px;
  align-self: stretch;
  border-radius: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.contact .name_and_role {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 10px;
  font-size: 0.95rem;
  overflow: hidden;
}

.contact .name_and_role name,
.contact .name_and_role role {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact .name_and_role name {
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 15px);
  color: var(--text);
}

.contact .name_and_role role {
  font-size: clamp(12px, 0.9vw, 13px);
  color: var(--muted);
}

.Contact_links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  flex-shrink: 0;
}

.Contact_links a {
  padding: 8px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(240, 192, 64, .2);
  border-radius: var(--r-sm);
  color: var(--gold);
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

.Contact_links a:hover {
  background: rgba(240, 192, 64, .2);
}

.Disclaimer {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* ══════════════════════════
   RESPONSIVE — PHONE (≤ 480px)
══════════════════════════ */
@media (max-width: 480px) {
  .contact .contact_profile {
    width: 64px;
    min-width: 64px;
  }

  .contact .name_and_role {
    font-size: 0.85rem;
    padding: 10px 8px;
  }

  .Contact_links { padding: 0 8px; }

  .Contact_links a {
    padding: 6px 10px;
    font-size: 11px;
  }
}
