/* Basic styling */
.tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.tabs .line {
  height: 2px;
  width: 100%;
  background-color: var(--primary);
}
.tab {
  cursor: pointer;
  border-bottom: none;
  text-wrap: nowrap;
  padding: 2rem;
}
.tab.active {
  color: var(--primary);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* .tab-content-wrapper {
  display: grid;
} */
.card img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 2rem;
}

@media screen and (max-width: 768px) {
  .tabs {
    flex-direction: column;
    gap: unset;
    max-width: 100%;
  }
  .tab {
    width: 100%;
    padding: 2rem;
    text-align: center;
  }
}
