
.template-tile-list  {
    row-gap: 3rem;
}


.template-tile {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(130, 130, 130, 0.25);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.template-tile:hover {
    transform: translateY(-0.5rem);
    box-shadow: 3px 3px 0 0 #000 !important;
    border-color: rgb(33,37,41);
    transition-duration: .15s !important;
    border-radius: 12px !important;
    color: inherit;
    text-decoration: none;
}

.template-tile-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}

.template-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.template-tile-name {
    border-top: 1px solid rgba(130, 130, 130, 0.25);
    padding: 2rem;
    font-size: 1.25rem;
    letter-spacing: -.03rem;
    line-height: 1.2;
    color: #0e0e0f;
    font-weight: 700;
    text-align: center;
}
