.tab-link-component-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-inline: auto;
}

.main-section .tab-link-component {
  width: 100%;
}
@media (width >= 576px) {
  .main-section .tab-link-component {
    width: calc(50% - 16px / 2);
  }
}

.secondary-section .tab-link-component {
  width: 100%;
}
@media (width >= 576px) and (width <= 992px) {
  .secondary-section .tab-link-component {
    width: calc(50% - 16px / 2);
  }
}

.tab-link-component {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
  max-width: 500px;
  background: linear-gradient(45deg, black, transparent);
  background: #562C80;
  height: auto;
}
.tab-link-component:hover img {
  transform: scale(1.05);
}
.tab-link-component h3 {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: 0 1px 12px #2F2F2F;
  font-size: 1.125rem;
  z-index: 1;
}
.tab-link-component img {
  transition: transform 0.3s ease;
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.tab-link-component:not(.has-image)::after {
  content: "";
  width: 100%;
  aspect-ratio: 2/1;
  display: block;
}

/*# sourceMappingURL=tab-link-component-style.css.map */
