.site-footer {
  background-color: #191919;
  padding: 3rem 2rem 1rem;
  font-family: "firago-mediumitalic";
  color: #333;
  
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 130px;
}

.footer-social a {
  margin-left: 1rem;
  
  display: inline-block;
  display: none;
}

.footer-social img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.link-column {
  min-width: 150px;
}

.link-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #969696;
  font-family: "firago-mediumitalic";

}

.link-column a {
  display: block;
  color: #cecece;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  font-family: "firago-bookitalic";
}

.link-column a:hover {
  color: #e3e3e3;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 0.05px solid #616161;
}

.footer-bottom a {
  color: #999;
  font-size: 0.85rem;
  text-decoration: none;
  font-family: "firago-bookitalic";
}

.footer-bottom a:hover {
  color: #cdcdcd;
}


@media screen and (max-width: 480px) {

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  
  
}

.link-column {
  min-width: 120px;
  flex-direction: row;
}

.link-column h4 {
 font-size: 1rem;
}

.link-column a {
  font-size: 0.92rem;
  margin-bottom: 3px;
}


  
}