.card-container.svelte-6vztta {
  container: card-container/inline-size;
  width: 100%;
  position: relative;
}

.card-component.svelte-6vztta {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  box-sizing: border-box;
  background: var(--color-tertiary-white);
  box-shadow: var(--shadow-cards);
  height: 100%;
  width: 100%;
}
@container card-container (width > 16rem) {
  .card-component.svelte-6vztta {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}
.card-component.disabled.svelte-6vztta {
  opacity: 50%;
  pointer-events: none;
}
.card-component.svelte-6vztta .content:where(.svelte-6vztta) {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-component.svelte-6vztta .line:where(.svelte-6vztta) {
  width: 100%;
  border: 1px solid var(--color-tertiary-grey-light);
}.aspect.svelte-1kptqjq {
  width: 100%;
  aspect-ratio: 8/10;
}