.social-feed-section {
  background: #eeeadc;
  border-radius: 0;
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 5vw, 4.5rem);
}

.social-feed-section h2 {
  max-width: 1200px;
  margin: 0 auto .35rem;
}

.social-feed-note {
  max-width: 1200px;
  margin: 0 auto 2rem;
  color: #59645c;
  font-size: .85rem;
}

.social-feed-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  align-items: start;
}

.social-feed-column {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.social-feed-column:not(:last-child) .social-feed-card:last-child {
  margin-top: auto;
}

.social-feed-card {
  min-width: 0;
  padding: .85rem .9rem .7rem;
  background: #fff;
  border: 1px solid rgba(31, 55, 45, .1);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(45, 52, 38, .14);
  color: #202722;
  font-family: Manrope, Arial, sans-serif;
}

.social-feed-header {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.social-feed-avatar {
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 2.65rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
  border: 2px solid #f2f0e8;
}

.social-feed-initial-avatar {
  display: grid;
  place-items: center;
  background: #e3e9dd;
  color: #3b5540;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.social-feed-identity {
  min-width: 0;
  display: grid;
  gap: .08rem;
  line-height: 1.2;
}

.social-feed-identity strong {
  font-size: .86rem;
}

.social-feed-identity span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .7rem;
  color: #4d5b52;
}

.social-feed-identity small {
  color: #7c857f;
  font-size: .63rem;
}

.social-feed-more {
  margin-left: auto;
  align-self: flex-start;
  color: #6c756e;
  letter-spacing: .08em;
}

.social-feed-text {
  min-height: 0;
  margin: .9rem 0 .7rem;
  font-size: .9rem;
  line-height: 1.42;
}

.social-feed-actions {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  color: #667169;
  font-weight: 600;
  padding-top: .65rem;
  border-top: 1px solid #dfe3df;
  font-size: .7rem;
}

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

  .social-feed-column {
    display: contents;
  }

  .social-feed-column .social-feed-card:last-child {
    margin-top: 0;
  }
}

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

  .social-feed-column {
    display: contents;
  }

  .social-feed-text {
    min-height: 0;
  }
}
