/* General Styling for the About Page */
/* Signature Styling */
.signature-name {
  font-variant: small-caps;
  letter-spacing: 0.02em;
}

/* Optional: Subtle interaction for the company link if you choose to wrap it in an <a> tag */
.signature-name + p span:hover {
  text-decoration: underline;
  cursor: default;
}

/* Ensure the image doesn't stretch */
img.rounded-full {
  object-fit: cover;
}
.author-photo {
  width: clamp(80px, 12vw, 90px);
  height: clamp(80px, 12vw, 90px);
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.author-photo.grayscale {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.author-photo.grayscale:hover {
  filter: grayscale(0%);
}
