.tile-link {
    text-decoration: none;
    color: inherit;
}

.portrait-tile {
    width: 100%;
    max-width: 240px;
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: var(--md-default-bg-color);
    display: flex;
    flex-direction: column;
    margin: auto;
}

.portrait-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.2);
}

.portrait-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.portrait-tile-label {
    padding: 0rem 1rem 0rem;
    text-align: center;
}
