.footer-social-icons {
  display: grid;
  /*grid-template-rows: auto 1fr; 
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));*/
 /* Updated grid-template-columns 
  /*grid-row-gap: 10px;*/
  padding-bottom: 40px;
  /*max-width: 500px;*/
}

.footer-social-icons svg {
  max-width: 3.5rem; /* Add max-width and max-height for SVG icons */
  max-height: 3.5rem;
  width: 100%; /* Set width and height to 100% for responsiveness */
  height: 100%;
}

.grid-wrapper {
  display: grid;
  justify-content: center;
}

.social-headline {
 grid-column: 1 / span 5;
  grid-row: 1 / span 1;
}

.social-headline h2 {
  text-align: center;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 0px;
}



.social-icon label {
  margin-top: 5px;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
}

.facebook {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}

.twitter {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}

.instagram {
  grid-column: 3 / span 1;
  grid-row: 2 / span 1;
}

.youtube {
  grid-column: 4 / span 1;
  grid-row: 2 / span 1;
}

.linkedin {
  grid-column: 5 / span 1;
  grid-row: 2 / span 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

ul.social-icons {
    margin-top: 10px;
}

.social-icons li {
    vertical-align: top;
    height: 100px;
}

/* Add a CSS transition for smooth scaling */
.social-icon svg {
  transition: transform 0.3s ease;
}

/* Scale the SVG icon on hover */
.social-icon:hover svg {
  transform: scale(1.2);
}

