/* Follow Us Section Styles */
.ev-followus-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fff;
  padding: 80px 0 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.ev-followus-title {
  font-size: 44px;
  font-weight: 700;
  color: #23282d;
  margin-bottom: 8px;
  text-align: center;
}
.ev-followus-handle {
  font-size: 18px;
  color: #23282d;
  margin-bottom: 32px;
  text-align: center;
}
.ev-followus-images {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 80px;
}
.ev-followus-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 1100px) {
  .ev-followus-img {
    width: 22vw;
    height: 22vw;
    min-width: 120px;
    min-height: 120px;
    max-width: 1fr;
    max-height: 1fr;
  }
}
@media (max-width: 900px) {
  .ev-followus-section {
    padding: 32px 0 32px 0;
  }
  .ev-followus-title {
    font-size: 28px;
  }
  .ev-followus-handle {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .ev-followus-images {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ev-followus-img {
    width: 48vw;
    height: 48vw;
    min-width: 60px;
    min-height: 60px;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Remove any extra spacing after follow us section */
.ev-followus-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Ensure no extra spacing on homepage after follow us */
body.front_page .ev-followus-section {
  margin-bottom: 0;
} 