/* gestione css dei regolamenti: 
    10.5 regolamenti
*/
/* ------------------------------------------------------------
   10.5 REGOLAMENTI
------------------------------------------------------------ */
.documents-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:25px;
}

.page-content{
    background:#d6d6d7;
    max-width: 900px;
    border-radius:15px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    padding-bottom:35px;
}

.document-card{
    background:#003366;
    color:white;
    padding:25px;
    border:3px solid #d6a437;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    text-align:center;
    transition:.25s ease;
}

.document-card h3{
    color:#d6a437;
    margin-bottom:15px;
}

.document-card p{
    color:white;
    line-height:1.7;
    margin-bottom:20px;
}

.document-item{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:10px;
    margin-top:18px;
}

.document-item img{
    width:28px;
    height:28px;
    display:block;
    transition:.2s ease;
}

.document-item a:hover img{
    transform:scale(1.12);
}

.document-link{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:white;
    text-decoration:underline;
    transition:.25s;
    font-weight:600;
}

.document-link img{
    width:28px;
    height:28px;
    transition:.2s ease;
}

.document-link:hover{
    color:#d90429;
}

.document-link:hover img{
    transform:scale(1.12);
}

.document-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.22);
}