.card { display: inline-flex; justify-content: stretch; align-items: center; flex-direction: column; width: 350px; max-width: calc(100% - 20px - 20px); margin: 10px; background: var(--background); border-radius: var(--rounded); overflow: hidden; box-shadow: var(--shadow); vertical-align: top; } .card[data-style=small] { width: 250px; } .card-image img { aspect-ratio: 3/2; object-fit: cover; width: 100%; padding: 15px; } .card-text { display: inline-flex; justify-content: flex-start; align-items: center; flex-direction: column; gap: 15px; max-width: 100%; padding: 15px; } .card-text p { max-height: 400px; overflow: scroll; } .card-text > *, .card-text > .tags { margin: 0; } .card-title { font-family: var(--heading); font-weight: var(--semi-bold); } .card-subtitle { margin-top: -15px; font-style: italic; } /*# sourceMappingURL=card.css.map */