.social-feeds {
  padding: 80px 0;
  position: relative;
}
.social-feeds::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2395b284' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.social-feeds .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}
.social-feeds .feed-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.social-feeds .feed-box:hover {
  transform: translateY(-5px);
}
.social-feeds .feed-box h3 {
  color: var(--primary-600);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.social-feeds .feed-box h3 i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.feed-content p {
  margin-bottom: 20px;
  color: #666;
}

.feed-link {
  color: var(--primary-400);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.feed-link:hover {
  color: var(--dark-green);
}/*# sourceMappingURL=homesocials.css.map */