.social-page {
  padding: 40px 20px 80px;
}

.social-hero {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.social-hero h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.social-hero p {
  color: #666;
  line-height: 1.8em;
}

.social-section {
  max-width: 1100px;
  margin: 40px auto 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9em;
}

.social-icon i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  padding: 4px;
}

.social-icon-text {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #4f2f7f;
  color: #fff;
  font-size: 0.8em;
  font-weight: 800;
}

.social-icon .fa-instagram {
  background: #125688;
}

.social-icon .fa-facebook {
  background: #3b5998;
}

.social-icon:hover {
  background: #eee;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.social-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  color: inherit;
  text-decoration: none;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.social-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f5f5f5;
}

.social-card .content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.social-card .title {
  font-weight: 800;
  font-size: 1.05em;
  line-height: 1.4em;
}

.social-card .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85em;
  color: #777;
}

.social-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f16921;
  color: #fff;
  font-size: 0.75em;
}

.social-note {
  margin-top: 12px;
  font-size: 0.85em;
  color: #777;
}

@media screen and (max-width: 660px) {
  .social-hero h1 {
    font-size: 1.8em;
  }

  .social-card img {
    height: 160px;
  }
}
