/* px, not rem — see podcasts-public.css */

.hvp-tile {
    display: block;
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition:
        box-shadow 0.18s ease,
        transform 0.18s ease,
        border-color 0.18s ease;
}

.hvp-tile:hover,
.hvp-tile:focus {
    border-color: #c8ced6;
    box-shadow: 0 6px 20px rgba(20, 30, 45, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.hvp-tile__art {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: #eef1f4;
    overflow: hidden;
}

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

.hvp-tile__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 33, 0.82);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hvp-tile__body {
    display: block;
    padding: 14px 16px 16px;
}

.hvp-tile__meta {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #7a8592;
    margin-bottom: 8px;
}

.hvp-tile__dot {
    margin: 0 4px;
}

.hvp-tile__title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #16202c;
    margin-bottom: 8px;
}
.hvp-tile--large-text .hvp-tile__title {
    font-size: 19px;
}

.hvp-tile__excerpt {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: #5a6472;
}
