.deck-container{margin-left:auto;margin-right:auto;padding:2rem 1rem;width:100%;overflow:hidden}.deck-grid{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));gap:2rem;justify-items:center;width:100%;position:relative}@media (min-width:768px){.deck-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.deck-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}.deck-card-link{width:100%;max-width:28rem;text-decoration:none}.deck-card{width:100%;height:100%;display:flex;flex-direction:column;border-radius:.75rem;transition:background-color .2s ease;transform-origin:center center}.deck-card-link:hover .deck-card{background-color:hsl(var(--muted))}.deck-card-header{flex:none}.deck-card-title{font-size:1.5rem;line-height:2rem;font-weight:600;color:var(--foreground)}.deck-card-subtitle{color:rgba(var(--muted-foreground),.7)}.deck-card-content{flex-grow:1;color:var(--foreground)}.deck-card-footer{flex:none;margin-top:auto;padding-top:1.5rem}.deck-link{color:var(--foreground);transition:color .2s}.deck-card-link:hover .deck-link{color:rgba(var(--muted-foreground),.8)}.card-animate{opacity:0;transform:translateX(50px);transition:opacity .8s cubic-bezier(.25,.46,.45,.94),transform .8s cubic-bezier(.25,.46,.45,.94);width:100%}.card-animate--visible{opacity:1;transform:translateX(0)}.card-animate .deck-card{transition:transform .3s cubic-bezier(.25,.46,.45,.94),box-shadow .3s cubic-bezier(.25,.46,.45,.94),background-color .2s ease}.card-animate:hover .deck-card{transform:scale(1.02);box-shadow:0 10px 20px rgba(0,0,0,.15)}