/* ======================================================
   BLOG JOBSY
====================================================== */

.jobsy-container{
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:0 24px;
    box-sizing:border-box;
}

.jobsy-blog{

    padding:80px 0;

}

.jobsy-blog-hero{

    margin-bottom:60px;

}

.jobsy-blog-label{

    display:inline-block;

    font-size:13px;

    font-weight:700;

    letter-spacing:.12em;

    text-transform:uppercase;

    color:#f6c343;

    margin-bottom:16px;

}

.jobsy-blog-hero h1{

    font-size:54px;

    margin:0 0 20px;

}

.jobsy-blog-hero p{

    max-width:700px;

    font-size:20px;

    line-height:1.7;

}


/* ===== BLOG ===== */

.jobsy-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.jobsy-blog{
    padding:60px 0;
}

.jobsy-blog-hero{
    margin-bottom:40px;
}

.jobsy-blog-label{
    color:#f5b942;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.jobsy-blog-hero h1{
    margin:10px 0;
    font-size:46px;
}

.jobsy-blog-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:32px;
}

@media (max-width:768px){

    .jobsy-blog-grid{

        grid-template-columns:1fr;

    }

}

.jobsy-post-card{
    background:#111827;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    transition:.25s;
}

.jobsy-post-card:hover{
    transform:translateY(-5px);
}

.jobsy-post-thumb img{
    width:100%;
    display:block;
}

.jobsy-post-content{
    padding:20px;
}

.jobsy-post-title{
    margin:12px 0;
    font-size:28px;
}

.jobsy-post-title a{
    color:#fff;
    text-decoration:none;
}

.jobsy-post-category a{
    color:#60a5fa;
    text-decoration:none;
    font-size:13px;
    text-transform:uppercase;
    font-weight:700;
}

.jobsy-post-meta{
    color:#9ca3af;
    font-size:14px;
    margin-bottom:15px;
}

.jobsy-read-more{
    display:inline-block;
    margin-top:15px;
    color:#3b82f6;
    text-decoration:none;
    font-weight:600;
}

.jobsy-pagination{
    margin-top:50px;
    text-align:center;
}


/* ===== Poprawki listy bloga ===== */

.jobsy-blog-grid{
    max-width: 760px;
    margin: 0 auto;
}

.jobsy-post-thumb{
    display:block;
    overflow:hidden;
}

.jobsy-post-thumb img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.jobsy-post-title{
    font-size:26px;
    line-height:1.25;
}

.jobsy-post-excerpt{
    line-height:1.7;
    color:#9ca3af;
}

.jobsy-blog-hero{
    max-width:760px;
    margin:0 auto 40px;
}

.jobsy-blog-hero p{
    max-width:600px;
}


.jobsy-post-excerpt{

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

}

/* ======================================================
   KOMENTARZE - BLOG JOBSY
====================================================== */

#comments,
.comment-respond{
    max-width:820px;
    margin:60px auto 0;
}

.comment-respond{

    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:32px;

    box-sizing:border-box;

}

.comment-reply-title{

    color:#fff;
    font-size:30px;
    margin-bottom:25px;

}

.comment-reply-title a{

    color:#f5b942;

}

.logged-in-as{

    color:#9ca3af;
    margin-bottom:25px;

}

.logged-in-as a{

    color:#60a5fa;

}

.comment-form label{

    display:block;
    margin-bottom:10px;

    color:#d1d5db;

    font-weight:600;

}

.comment-form textarea{

    width:100%;
    min-height:220px;

    background:#0b1220 !important;

    color:#fff;

    border:1px solid rgba(255,255,255,.12);

    border-radius:12px;

    padding:16px;

    resize:vertical;

    box-sizing:border-box;

}

.comment-form textarea:focus{

    border-color:#3b82f6;
    outline:none;

}

.comment-form input[type="submit"]{

    background:#2563eb;

    color:#fff;

    border:none;

    border-radius:10px;

    padding:14px 24px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.comment-form input[type="submit"]:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}

.comment-notes,
.required-field-message{

    color:#9ca3af;

}

.required{

    color:#f5b942;

}

/* ======================================================
   WYMUSZENIE CIEMNEGO TŁA FORMULARZA KOMENTARZY
====================================================== */

.comment-respond,
#respond,
.comment-form {
    background: #111827 !important;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
}

.comment-respond *,
#respond * {
    background: transparent;
}

.comment-form textarea {
    background: #0b1220 !important;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    background: #0b1220 !important;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
}