.social-icon-links [class^="link"],
.social-icon-links [class^="link"]:hover,
.social-icon-links [class^="link"]:focus {
  text-decoration: none;
}

.social-icon-links a {
  text-decoration: none;
}

.site-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; /* ensures items are at the edges */
  gap: 1rem; /* optional: adds space between intro and logo */
}

.site-intro {
  flex: 1 1 0;
  min-width: 0;
}

.site-title {
  font-size: 4rem;
  max-width: 800px;
  display: block;
}

.site-subtitle {
  font-size: 2rem;
  max-width: 800px;
  display: block;
}

.site-logo {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* logo to the right */
  max-width: 600px; /* adjust as needed */
}

.site-logo img {
  width: 500px;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  /* Optional: for simple fade-in */
  animation: fade-in 2s ease-in forwards;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 576px) {
  .site-logo {
    width: 100px;
  }
}
