body[data-page="socials"] .detail-body {
  max-width: none;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.social-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.social-profile {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px 14px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-strong);
}

.social-profile svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-body .social-profile h2 {
  margin: 0;
  font-family: var(--tech-font);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 400;
}

.social-profile > span {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.social-profile:hover,
.social-profile:focus-visible {
  background: #061624;
}

.social-latest {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  overflow-wrap: anywhere;
}

.detail-body .social-latest p {
  margin: 0;
}

.social-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-item {
  width: 100%;
}

.social-item h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.45;
}

.social-item:hover h3,
.social-item:focus-visible h3 {
  color: var(--accent-strong);
}

.social-preview {
  position: relative;
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.social-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--text);
}

.social-description,
.social-latest time {
  font-size: 0.9rem;
}

.social-latest time {
  color: var(--muted);
}

.social-action {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.9rem;
}

.social-card a:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: -2px;
}

@media (max-width: 800px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

  .detail-body .social-profile h2 {
    font-size: 1.3rem;
  }
}
