.su-protocols-grid{

    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(360px,1fr));
    gap:15px;

}

.su-protocol-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:.25s;

}

.su-protocol-card:hover{

    transform:translateY(-4px);

}

.su-protocol-image img{

    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    display:block;

}

.su-protocol-content{

    padding:25px 20px;

}

.su-protocol-content h3{

    margin:0 0 15px;
	color: #000;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    text-transform:uppercase;
	font-weight: 600;
	line-height: 1.2em;

}

.su-protocol-content p{

    font-family: "Manrope", sans-serif;
    color: #5A5A5A;
    line-height:1.5;
    margin-bottom:30px;
	font-size: 14px;
	font-weight: 400;

}

.su-protocol-button{

    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;

    height:auto;

    border-radius:8px;

    background:#F7F8FB;

    color:#000;

    text-decoration:none;

    font-family:"Oswald",sans-serif;

    text-transform:uppercase;

    font-weight:500;

    transition:.2s;
	
	font-size: 14px;

	padding: 12px 0px 15px 0px!important;

}

.su-protocol-button:hover{

    background:#000;
    color:#fff;

}

/* ==========================================
   Priradenie protokolu (tréner)
========================================== */

.su-protocol-assign{

    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    margin-bottom:20px;

}

.su-protocol-search{

    flex:1;
    min-width:220px;
    max-width:320px;
    padding:10px 14px;
    border:1px solid #e2e2e6;
    border-radius:10px;
    font-family:"Manrope", sans-serif;
    font-size:14px;
    color:#000;
    box-sizing:border-box;

}

.su-protocol-assign-btn{

    font-family:"Oswald", sans-serif;
    text-transform:uppercase;
    padding:11px 24px;
    border:none;
    border-radius:10px;
    background:#111;
    color:#fff;
    font-size:13px;
    font-weight:600;
    cursor:pointer;

}

.su-protocol-status{

    font-family:"Manrope", sans-serif;
    font-size:13px;
    color:#585c6b;

}

.su-protocol-remove{

    margin-top:10px;
    width:100%;
    padding:10px 0;
    border:1px solid #ef4444;
    border-radius:8px;
    background:#fff;
    color:#ef4444;
    font-family:"Oswald", sans-serif;
    text-transform:uppercase;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;

}

.su-protocol-remove:hover{

    background:#ef4444;
    color:#fff;

}

/* ==========================================
   Mobil
========================================== */

@media (max-width:768px){

    .su-protocols-grid{

        grid-template-columns:1fr;

    }

    .su-protocol-search{

        max-width:none;

    }

}