/* Tile CSS -- aka the library/catalog comic display button */

.hh-comic-tile {

}

.hh-comic-tile-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hh-comic-tile-cover {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;  /* 1:1.5 */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hh-comic-tile-cover--placeholder {
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hh-comic-tile-link:hover .hh-comic-tile-cover {
    transform: scale(1.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.hh-comic-tile-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0.6rem 0 0;
    transition: color 0.15s ease;
}

.hh-comic-tile-link:hover .hh-comic-tile-title {
    color: var(--comic-tile-accent, #c64e8b);
}