/* ============================================
   Contact Cards Redesign - grapplestream.com
   ============================================ */

/* Grid layout: 2x2 on desktop */
.message-module__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 640px) {
  .message-module__info {
    grid-template-columns: 1fr;
  }
}

/* Social block spans full width */
.message-module__social {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

/* Remove old margin-bottom from individual cards */
.message-module__infoCard {
  margin-bottom: 0 !important;
}

/* Card base - centered vertical layout */
.message-module__infoCard.Card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.message-module__infoCard.Card:hover {
  border-bottom-color: #f59e0b;
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Icon wrapper - amber circle */
.message-module__infoCard .Card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.message-module__infoCard.Card:hover .Card-icon {
  background: rgba(245, 158, 11, 0.22);
  transform: scale(1.08);
}

.message-module__infoCard .Card-icon svg {
  width: 32px;
  height: 32px;
}

/* Content - no extra padding */
.message-module__infoCard .Card-content {
  padding: 0;
  width: 100%;
}

.message-module__infoCard .Card-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-primary, #0f172a);
  margin-bottom: 0.5rem;
}

.message-module__infoCard .Card-description {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 0.4rem;
  color: var(--text-secondary, #64748b);
}

.message-module__infoCard .Card-hint {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0;
}
