/* Follow Us Section Styles */
.ev-followus-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-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-handle-link {
  color: #23282d !important;
  text-decoration: none !important;
}
.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 20px 32px 20px;
  }
  .ev-followus-title {
    font-size: 28px;
  }
  .ev-followus-handle {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .ev-followus-images {
    gap: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0px;
  }
  .ev-followus-img {
    width: 48vw;
    height: 48vw;
    min-width: 60px;
    min-height: 60px;
    border-radius: 0;
    box-shadow: none;
  }
} 