a:focus-visible {
  outline: 2px dashed #c8102e;
  outline-offset: 4px;
}

/* Boxed layout for better readability */
main > section.container:not([data-hero]) {
  padding: 1.5rem;
  margin-block: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Alternating section backgrounds */
main > section:nth-of-type(even):not([class*="bg-"]):not([data-hero]) {
  background-image: linear-gradient(to bottom, #ffffff, #7e7b7a);
}
main > section:nth-of-type(odd):not([class*="bg-"]):not([data-hero]) {
  background-image: linear-gradient(to bottom, #9e8a81, #ffffff);
}
/* Icon hover zoom & rotate */
i[data-lucide],
.icon {
  transition: transform 0.3s;
}
i[data-lucide]:hover,
.icon:hover {
  transform: scale(1.1) rotate(60deg);
}
