.uzel-fft-card,
.uzel-fft-card *{
    box-sizing:border-box;
}

.uzel-fft-card{
    width:100%;
    display:grid;
    grid-template-columns:156px minmax(0,1fr);
    gap:16px;
    align-items:stretch;
    min-height:124px;
    padding:12px;
    border:1px solid rgba(0,149,255,.14);
    border-radius:22px;
    background:#fff;
    color:#111827;
    text-decoration:none !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.uzel-fft-card:hover,
.uzel-fft-card:focus-visible{
    transform:translateY(-1px);
    border-color:rgba(0,149,255,.32);
    box-shadow:0 16px 42px rgba(15,23,42,.1);
    color:#111827;
    outline:none;
}

.uzel-fft-image-wrap{
    position:relative;
    display:block;
    width:100%;
    min-height:100px;
    border-radius:16px;
    overflow:hidden;
    background:linear-gradient(135deg,#eaf6ff 0%,#f7fbff 52%,#eef6ff 100%);
}

.uzel-fft-image-wrap img{
    width:100%;
    height:100%;
    min-height:100px;
    display:block;
    object-fit:cover;
}

.uzel-fft-image-placeholder{
    width:100%;
    height:100%;
    min-height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0095ff;
}

.uzel-fft-image-placeholder svg{
    width:42px;
    height:42px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
    opacity:.7;
}

.uzel-fft-content{
    min-width:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    padding:2px 2px 2px 0;
}

.uzel-fft-label{
    width:max-content;
    max-width:100%;
    display:inline-flex;
    align-items:center;
    min-height:24px;
    padding:4px 10px;
    border-radius:999px;
    background:rgba(0,149,255,.09);
    color:#0095ff;
    font-size:12px;
    line-height:1;
    font-weight:700;
    white-space:nowrap;
}

.uzel-fft-title{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    color:#0f172a;
    font-size:19px;
    line-height:1.16;
    font-weight:800;
    letter-spacing:-.02em;
}

.uzel-fft-excerpt{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    color:#64748b;
    font-size:13px;
    line-height:1.38;
}

.uzel-fft-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:2px;
}

.uzel-fft-meta{
    min-width:0;
    display:flex;
    align-items:center;
    gap:8px;
    color:#7b8798;
    font-size:12px;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
}

.uzel-fft-meta span{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
}

.uzel-fft-meta span:not(:last-child)::after{
    content:'•';
    margin-left:8px;
    color:#c3cfdd;
}

.uzel-fft-button{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    min-height:34px;
    padding:8px 12px;
    border-radius:999px;
    background:#0095ff;
    color:#fff;
    font-size:13px;
    line-height:1;
    font-weight:700;
    white-space:nowrap;
    transition:background .18s ease;
}

.uzel-fft-card:hover .uzel-fft-button,
.uzel-fft-card:focus-visible .uzel-fft-button{
    background:#007fe0;
}

.uzel-fft-button svg{
    width:15px;
    height:15px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.4;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.uzel-fft-empty{
    padding:14px 16px;
    border:1px dashed rgba(0,149,255,.32);
    border-radius:18px;
    background:#fff;
    color:#64748b;
    font-size:14px;
}

@media (max-width: 640px){
    .uzel-fft-card{
        grid-template-columns:98px minmax(0,1fr);
        gap:12px;
        min-height:112px;
        padding:10px;
        border-radius:20px;
    }

    .uzel-fft-image-wrap,
    .uzel-fft-image-wrap img,
    .uzel-fft-image-placeholder{
        min-height:92px;
    }

    .uzel-fft-content{
        gap:5px;
    }

    .uzel-fft-label{
        min-height:21px;
        padding:4px 8px;
        font-size:10.5px;
    }

    .uzel-fft-title{
        font-size:15.5px;
        line-height:1.2;
        -webkit-line-clamp:2;
    }

    .uzel-fft-excerpt{
        font-size:12px;
        line-height:1.3;
        -webkit-line-clamp:2;
    }

    .uzel-fft-bottom{
        gap:8px;
    }

    .uzel-fft-meta{
        font-size:11px;
        gap:6px;
    }

    .uzel-fft-meta span:first-child{
        display:none;
    }

    .uzel-fft-button{
        min-height:30px;
        padding:7px 10px;
        font-size:12px;
    }
}

@media (max-width: 420px){
    .uzel-fft-card{
        grid-template-columns:86px minmax(0,1fr);
        gap:10px;
    }

    .uzel-fft-image-wrap,
    .uzel-fft-image-wrap img,
    .uzel-fft-image-placeholder{
        min-height:86px;
    }

    .uzel-fft-title{
        font-size:14.5px;
    }

    .uzel-fft-excerpt{
        display:none;
    }

    .uzel-fft-meta{
        display:none;
    }
}
