/* =========================================================
   DRM Custom Garage — social.css
   Richiede assets/css/base.css caricato prima di questo file
   ========================================================= */

.page-hero {
  padding: calc(var(--header-h) + 60px) 24px 60px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--muted);
  font-size: 1rem;
}

.social-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 100px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}
.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
}
.social-card:hover {
  border-color: rgba(255,43,43,0.35);
  transform: translateY(-4px);
}
.social-icon {
  width: 42px;
  height: 42px;
  color: var(--red);
}
.social-icon svg { width: 100%; height: 100%; }
.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.social-card p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}
.social-handle {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text);
}

.social-feed-note {
  max-width: 640px;
  margin: 0 auto 100px;
  padding: 0 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

