/* ======================================================
   TOP 1 KATEGORIE - 7 KARET V JEDNOM ŘÁDKU
   ====================================================== */

.top-categories{
    display:grid;
    grid-template-columns:repeat(7, minmax(0, 1fr));
    gap:10px;
    margin-bottom:30px;
}

.top-category-card{
    position:relative;
    display:block;
    height:260px;
    overflow:hidden;
    border-radius:12px;
    background:#dfe5ec;
    color:#fff;
    text-decoration:none;
    box-shadow:0 3px 10px rgba(25,40,60,.10);
    transition:transform .2s ease, box-shadow .2s ease;
}

.top-category-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(25,40,60,.18);
}

.top-category-image{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.top-category-card:hover .top-category-image{
    transform:scale(1.045);
}

/* Náhradní obrázek, pokud článek nemá fotografii */
.top-category-placeholder{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.top-category-placeholder::before{
    content:"";
    position:absolute;
    inset:-10px;
    background:url("../images/placeholder/most-placeholder-bg.jpg") center center / cover no-repeat;
    filter:blur(2px);
    opacity:.55;
    transform:scale(1.10);
}

.top-category-placeholder::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.25);
}

.top-category-placeholder-icon{
    position:relative;
    z-index:1;
    width:130px;
    height:130px;
    object-fit:contain;
    filter:
        drop-shadow(0 0 2px rgba(255,255,255,1))
        drop-shadow(0 0 6px rgba(255,255,255,.9))
        drop-shadow(0 0 12px rgba(255,255,255,.7));
}

.top-category-label{
    position:absolute;
    top:8px;
    left:0;
    z-index:3;

    display:flex;
    align-items:center;
    gap:3px;

    padding:3px 8px 3px 5px;

    background:rgba(255,255,255,.92);

    border-left:3px solid var(--category-color);
    border-radius:0 8px 8px 0;

    color:var(--category-color);

    font-size:12px;
    line-height:1.1;
    font-weight:700;
}

.top-category-label-icon{
    width:26px;
    height:26px;
    object-fit:contain;
    flex:0 0 26px;
}

/* Pruh s titulkem přes spodní část obrázku */
.top-category-title{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    min-height:88px;
    display:flex;
    align-items:flex-end;
    padding:30px 12px 12px;
    background:linear-gradient(
        to bottom,
        rgba(10,15,22,0),
        rgba(10,15,22,.88)
    );
    color:#fff;
    font-size:17px;
    font-weight:700;
    line-height:1.25;
    text-shadow:0 1px 2px rgba(0,0,0,.45);
}

/* Menší displeje zatím pouze horizontálně posouvají 7 karet */
@media (max-width:1100px){
    .top-categories{
        display:flex;
        overflow-x:auto;
        padding-bottom:8px;
    }

    .top-category-card{
        flex:0 0 210px;
    }
}





/* ======================================================
   Úprava čitelnosti TOP karet
   ====================================================== */

.top-category-card::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:rgba(35,42,50,.32);
    pointer-events:none;
}

.top-category-image{
    filter:grayscale(35%) brightness(.72);
}

.top-category-title{
    z-index:3;
    min-height:115px;
    padding:45px 12px 14px;
    background:linear-gradient(
        to bottom,
        rgba(5,8,12,0),
        rgba(5,8,12,.72) 35%,
        rgba(5,8,12,.96) 100%
    );
    font-size:18px;
    line-height:1.3;
    text-shadow:0 2px 4px rgba(0,0,0,.95);
}

@media (max-width:1600px){
    .top-category-label{
        top:8px;
        padding:2px 7px 2px 4px;
        font-size:11px;
    }

    .top-category-label-icon{
        width:22px;
        height:22px;
    }
    .top-category-title{
        font-size:16px;
        line-height:1.2;
    }
}

.top-category-label{
    z-index:3;
}

.top-category-title{
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.top-category-title-text{
    width:100%;
    margin-top:4px;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
    overflow:hidden;
}

.top-category-meta-vertical{
    width:100%;
    margin-bottom:6px;
    text-align:left;
}

.top-category-source{
    font-size:11px;
    font-weight:500;
    color:rgba(220,220,220,.90);
    line-height:1.2;
    text-align:left;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
}

.top-category-date{
    margin-top:3px;
    margin-bottom:6px;

    font-size:10px;
    color:rgba(190,190,190,.90);
    line-height:1.2;

    text-align:left;
}

.top-category-title-text{
    width:100%;
}
