/* ===================================================
   AKTUALNOŚĆ
=================================================== */

.news-article{
    max-width:1100px;
    margin:auto;
    padding:40px 25px 70px;
}


/* ===================================================
   POWRÓT
=================================================== */

.article-back{
    margin-bottom:35px;
}

.article-back a{
    text-decoration:none;
    color:#0059b3;
    font-weight:600;
    transition:.3s;
}

.article-back a:hover{
    color:#f39c12;
}


/* ===================================================
   HEADER
=================================================== */

.article-header{
    text-align:center;
    margin-bottom:40px;
}

.article-category{
    display:inline-block;
    background:#0059b3;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:.8px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.article-header h1{
    color:#003366;
    font-size:2.6rem;
    line-height:1.3;
    margin-bottom:20px;
}

.article-meta{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    color:#666;
    font-size:1rem;
}


/* ===================================================
   HERO IMAGE
=================================================== */

.article-hero-image{
    margin-bottom:45px;
}

.article-hero-image img{
    width:80%;
    border-radius:18px;
    display:block;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    margin-left: auto;
    margin-right: auto;
}


/* ===================================================
   TREŚĆ
=================================================== */

.article-content{
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin-bottom:50px;
}

.article-content p{
    line-height:1.9;
    font-size:1.08rem;
    color:#444;
    text-align:justify;
    margin-bottom:22px;
}

.article-content strong{
    color:#003366;
}


/* ===================================================
   CYTAT
=================================================== */

.article-content blockquote{
    margin:40px 0;
    padding:25px 35px;
    background:#eef6ff;
    border-left:6px solid #0059b3;
    font-size:1.15rem;
    font-style:italic;
    color:#003366;
    border-radius:12px;
}


/* ===================================================
   GALERIA
=================================================== */

.article-gallery{
    margin-bottom:60px;
}

.article-gallery h2{
    text-align:center;
    color:#003366;
    margin-bottom:30px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid a{
    display:block;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:.35s;
}

.gallery-grid img:hover{
    transform:scale(1.04);
}


/* ===================================================
   ZAŁĄCZNIKI
=================================================== */

.article-files{
    margin-bottom:60px;
}

.article-files h2{
    color:#003366;
    text-align:center;
    margin-bottom:30px;
}

.file-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.file-list a{
    display:block;
    text-decoration:none;
    background:#f7f9fc;
    color:#003366;
    padding:18px 25px;
    border-radius:12px;
    border-left:5px solid #0059b3;
    transition:.3s;
    font-weight:600;
}

.file-list a:hover{
    background:#eef6ff;
    transform:translateX(6px);
}


/* ===================================================
   NAWIGACJA
=================================================== */

.article-navigation{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    margin-top:70px;
    padding-top:30px;
    border-top:2px solid #e6e6e6;
}

.article-navigation a{
    flex:1;
    text-align:center;
    text-decoration:none;
    color:#003366;
    font-weight:700;
    background:#f7f9fc;
    padding:16px;
    border-radius:10px;
    transition:.3s;
}

.article-navigation a:hover{
    background:#003366;
    color:#fff;
}


/* ===================================================
   RESPONSYWNOŚĆ
=================================================== */

@media(max-width:900px){

    .article-header h1{
        font-size:2.1rem;
    }

    .article-content{
        padding:35px;
    }

}


@media(max-width:768px){

    .news-article{
        padding:30px 15px 60px;
    }

    .article-header h1{
        font-size:1.8rem;
    }

    .article-meta{
        flex-direction:column;
        gap:10px;
    }

    .article-content{
        padding:25px;
    }

    .article-content blockquote{
        padding:20px;
        font-size:1.05rem;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid img{
        height:260px;
    }

    .article-navigation{
        flex-direction:column;
    }
}


@media(max-width:480px){

    .article-category{
        font-size:.8rem;
        padding:7px 16px;
    }

    .article-header h1{
        font-size:1.55rem;
    }

    .article-content p{
        font-size:1rem;
        line-height:1.8;
    }

    .file-list a{
        padding:15px 18px;
    }

}