.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 { margin: 0.4rem 0 0; }

.section-heading > p {
  max-width: 42rem;
  margin: 0;
  color: #4b5964;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  position: relative;
  min-height: 14rem;
  padding: 1.3rem;
  border: 1px solid rgba(16, 42, 67, 0.18);
  background: #f8f4ea;
}

.social-card.is-live {
  border-top: 4px solid #2f6f59;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(7, 27, 44, 0.07);
}

.social-card.is-pending {
  border-color: #c6c5c0;
  color: #6c7076;
  background: #e9e8e3;
  box-shadow: none;
}

.social-card.is-pending h3,
.social-card.is-pending p,
.social-card.is-pending .platform-handle {
  color: #6c7076;
}

.social-card h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.35rem;
}

.social-card p { margin: 0.45rem 0; color: #4b5964; }

.social-card .platform-handle {
  color: #102a43;
  font: 600 0.78rem/1.4 "IBM Plex Mono", ui-monospace, monospace;
  overflow-wrap: anywhere;
}

.social-status {
  display: inline-block;
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  color: #6b5c42;
  background: #e9dfcd;
  font: 700 0.66rem/1 "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.is-live .social-status { color: #fff; background: #2f6f59; }
.is-pending .social-status { color: #5d6065; background: #d2d1cc; }

.channel-unavailable {
  display: inline-block;
  margin-top: 0.7rem;
  color: #777a80;
  font: 600 0.72rem/1.4 "IBM Plex Mono", ui-monospace, monospace;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  color: #102a43;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.contact-panel p { margin-bottom: 0; }

@media (max-width: 880px) {
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .section-heading { display: block; }
  .section-heading > p { margin-top: 0.8rem; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card { min-height: 0; }
}
