/* Social Post Card Section (replaces FOLLOW US) */
.ev-social-post-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #F1F3F6;
  padding: 80px 0 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ev-social-post-title {
  font-size: 44px;
  font-weight: 700;
  color: #23282d;
  margin-bottom: 8px;
  text-align: center;
}

.ev-social-post-handle {
  font-size: 18px;
  color: #23282d;
  margin-bottom: 24px;
  text-align: center;
}

.ev-social-post-handle-link {
  color: #23282d !important;
  text-decoration: none !important;
}

.ev-social-post-handle-link.is-hidden {
  display: none;
}

.ev-social-post-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  justify-content: center;
}

.ev-social-post-tab {
  background: transparent;
  border: 1px solid #23282d;
  color: #23282d;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.ev-social-post-tab:hover {
  background: rgba(35, 40, 45, 0.08);
}

.ev-social-post-tab.is-active {
  background: #23282d;
  color: #fff;
}

.ev-social-post-panel {
  display: none;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
}

.ev-social-post-panel.is-active {
  display: block;
}

.ev-social-post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 32px;
}

.ev-social-post-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ev-social-post-card:hover {
  text-decoration: none;
  color: inherit;
}

.ev-social-post-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.ev-social-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ev-social-post-card-title {
  margin-top: 12px;
  font-size: 14px;
  color: #23282d;
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 900px) {
  .ev-social-post-section {
    padding: 32px 0 32px 0;
  }
  .ev-social-post-title {
    font-size: 28px;
  }
  .ev-social-post-handle {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .ev-social-post-tabs {
    gap: 8px;
    margin-bottom: 20px;
  }
  .ev-social-post-tab {
    padding: 6px 18px;
    font-size: 14px;
  }
  .ev-social-post-panel {
    padding: 0 12px;
  }
  .ev-social-post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 0;
  }
  .ev-social-post-card-title {
    font-size: 12px;
    margin-top: 8px;
  }
}
