a {
    color: #96aff4;
}

a:hover {
    color: #c3d0f5;
}

.jt-child-page-tiles .jt-page-tile {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.jt-child-page-tiles .jt-page-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.12);
}

.jt-child-page-tiles .jt-page-tile-image img {
    display: block;
}

.jt-child-page-tiles .card-body {
    padding: 1rem;
}

.photo-tile {
    display: block;
    text-decoration: none;
    color: inherit;
}

.photo-card {
    height: 140px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0) scale(1);
    transition: transform .18s ease, filter .18s ease;
    filter: drop-shadow(0 10px 12px rgba(0,0,0,.25));
}

.photo-img-placeholder {
    width: 100%;
    height: 100%;
}

.photo-title {
    margin-top: .5rem;
    font-size: small;
    text-align: center;
    opacity: .9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.photo-tile:hover .photo-card {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    border-color: rgba(255,255,255,.18);
}

.photo-tile:hover .photo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 14px 16px rgba(0,0,0,.32));
}

.photo-tile:focus-visible {
    outline: none;
}

.photo-tile:focus-visible .photo-card {
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.35), 0 12px 30px rgba(0,0,0,.28);
}
