.vcr-header-favorites{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:2rem;
    height:2rem;
    margin-left:.35rem;
    color:inherit;
    text-decoration:none;
    position:relative;
    opacity:.9;
}
.vcr-header-favorites:hover{
    color:inherit;
    opacity:1;
    text-decoration:none;
}
.vcr-favorites-icon{
    font-size:1.3rem;
    line-height:1;
}
.vcr-favorites-badge{
    position:absolute;
    top:.1rem;
    right:-.15rem;
    min-width:1rem;
    height:1rem;
    padding:0 .2rem;
    border-radius:999px;
    background:var(--color-primary,#f50);
    color:#fff;
    font-size:.65rem;
    font-weight:700;
    line-height:1rem;
    justify-content:center;
    align-items:center;
}
#header-search-form{
    gap:.1rem;
}
.vcr-favorites-page{
    margin:1rem 0 2rem;
}
.vcr-favorites-head{
    margin-bottom:1rem;
}
.vcr-favorites-title{
    margin-bottom:.25rem;
}
.vcr-favorites-subtitle{
    opacity:.75;
}
.vcr-favorites-loading,
.vcr-favorites-empty{
    padding:1.25rem 1rem;
    border:1px solid rgba(140,150,160,.18);
    border-radius:.75rem;
    background:rgba(140,150,160,.05);
}
.vcr-favorites-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:1rem;
}
.vcr-favorites-card{
    border:1px solid rgba(140,150,160,.18);
    border-radius:.9rem;
    overflow:hidden;
    background:rgba(140,150,160,.04);
    transition:transform .18s ease, box-shadow .18s ease;
}
.vcr-favorites-card:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.vcr-favorites-card-link{
    color:inherit;
    text-decoration:none;
    display:block;
    height:100%;
}
.vcr-favorites-card-link:hover{
    color:inherit;
    text-decoration:none;
}
.vcr-favorites-card-media{
    aspect-ratio:16/10;
    background:rgba(140,150,160,.12);
    overflow:hidden;
}
.vcr-favorites-card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.vcr-favorites-card-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    opacity:.55;
}
.vcr-favorites-card-body{
    padding:.85rem .95rem 1rem;
}
.vcr-favorites-card-type{
    font-size:.78rem;
    opacity:.65;
    margin-bottom:.35rem;
}
.vcr-favorites-card-title{
    margin:0;
    font-size:1rem;
    line-height:1.35;
}
@media (max-width: 991px){
    .vcr-header-favorites{ margin-left:.15rem; }
}
