.studio-site-footer {
  width: 100%;
  padding: 40px 0 20px 0;
  background-color: var(--studio-footer-bg);
  color: var(--studio-footer-text);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  background-color: #393737;
}

.studio-site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.studio-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.studio-footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.studio-footer-copyright {
  text-align: left;
}

.studio-footer-copyright p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--studio-footer-text);
  margin: 5px 0;
  line-height: 1.4;
}

.studio-footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.studio-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.studio-footer-socials a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.studio-footer-socials img {
  max-height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.studio-footer-links {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.studio-footer-links a {
  color: var(--studio-footer-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.studio-footer-links a:hover {
  color: white;
}

.studio-footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.studio-footer-links a:hover::after {
  width: 100%;
}

.studio-footer-separator {
  margin: 0 16px;
  opacity: 0.5;
}

.studio-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 20px 0;
}

.studio-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-footer-bottom p {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 768px) {
  .studio-site-footer {
    padding: 30px 0 15px 0;
    margin-top: 40px;
  }

  .studio-footer-container {
    padding: 0 15px;
  }

  .studio-footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .studio-footer-copyright,
  .studio-footer-links {
    text-align: center;
  }

  .studio-footer-socials {
    order: -1;
  }

  .studio-footer-links {
    justify-content: center;
  }

  .studio-footer-links a {
    display: block;
    margin: 5px 0;
  }

  .studio-footer-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .studio-site-footer {
    padding: 25px 0 10px 0;
  }

  .studio-footer-container {
    padding: 0 10px;
  }

  .studio-footer-content {
    gap: 20px;
  }

  .studio-footer-socials {
    gap: 12px;
  }

  .studio-footer-socials a {
    width: 40px;
    height: 40px;
  }

  .studio-footer-socials img {
    max-height: 18px;
  }
}
