.social-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 111, 29, 0.15), transparent 34rem),
    linear-gradient(180deg, #eef2ff 0%, #f6f7f8 48%, #edf7f0 100%);
}

.social-shell {
  display: flex;
  flex-direction: column;
  width: min(500px, calc(100% - 2rem));
  min-height: 100vh;
  margin-inline: auto;
  padding: 1rem 0 1.25rem;
}

.social-header,
.social-footer {
  flex: 0 0 auto;
}

.social-header {
  display: flex;
  justify-content: center;
  padding: 0.2rem 0 0.85rem;
}

.social-brand {
  border-radius: 10px;
  padding: 0.3rem 0.45rem;
}

.social-logo {
  width: 38px;
  height: 38px;
}

main.social-main {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  width: 100%;
  padding: 0;
}

.social-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 19, 136, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15, 19, 136, 0.12);
  padding: clamp(1rem, 4vw, 1.35rem);
  text-align: center;
}

.social-mark {
  width: 86px;
  height: 86px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 19, 136, 0.16);
  object-fit: cover;
}

.social-card h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 9vw, 2.8rem);
}

.social-intro {
  max-width: 22rem;
  margin: 0.35rem auto 0;
  color: var(--muted);
}

.social-links {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.2rem;
  text-align: left;
}

.social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4.7rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.82rem 2.7rem 0.82rem 0.9rem;
  text-decoration: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.social-link::after {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  content: ">";
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.48rem;
  text-align: center;
  transform: translateY(-50%);
}

.social-link-featured {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.social-link-featured::after {
  color: var(--ink);
  background: #fff;
}

.social-link:hover {
  border-color: var(--accent);
  box-shadow: 0 9px 18px rgba(0, 111, 29, 0.12);
  transform: translateY(-1px);
}

.social-link strong,
.social-link small {
  display: block;
}

.social-link strong {
  font-size: 1rem;
  line-height: 1.2;
}

.social-link small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.social-link-featured small {
  color: rgba(255, 255, 255, 0.76);
}

.social-footer {
  color: var(--muted);
  font-size: 0.88rem;
  padding-top: 0.85rem;
  text-align: center;
}

@media (max-width: 420px) {
  .social-shell {
    width: min(100% - 1rem, 500px);
    padding-block: 0.65rem;
  }

  .social-header {
    padding-bottom: 0.55rem;
  }

  main.social-main {
    align-items: flex-start;
  }

  .social-card {
    padding: 0.9rem;
  }

  .social-mark {
    width: 72px;
    height: 72px;
  }

  .social-link {
    min-height: 4.45rem;
    padding-left: 0.75rem;
  }
}
