/* =========================================================
   KLUB 1991 COMMUNITY
   SÖTÉTKÉK + ARANY KLUBHANGULAT
========================================================= */

.klub-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    width:100%;
    max-width:100%;
    margin:0;
}

/* BAL OLDALI KÉRDÉS BLOKK */

.klub-glass{
    background:linear-gradient(135deg,#1f3354,#304f82);
    border:1px solid rgba(244,210,122,.55);
    border-radius:24px;
    padding:28px;
    box-shadow:0 14px 34px rgba(31,51,84,.28);
    box-sizing:border-box;
    min-height:340px;
    color:#ffffff;
}

/* JOBB OLDALI VÁLASZ BLOKK */

.community-wall{
    background:#fffaf0;
    border:1px solid #ead59b;
    border-radius:24px;
    padding:28px;
    box-shadow:0 10px 26px rgba(31,51,84,.12);
    box-sizing:border-box;
    min-height:340px;
}

/* CÍMEK */

.klub-glass h4{
    margin:0 0 24px;
    font-size:28px;
    font-weight:800;
    color:#f4d27a;
}

.community-wall h4{
    margin:0 0 24px;
    font-size:28px;
    font-weight:800;
    color:#243b63;
}

/* KÉRDÉS */

#question{
    font-size:24px;
    font-weight:700;
    line-height:1.45;
    color:#ffffff;
    margin-bottom:26px;
}

/* FORM */

.answer-form input,
.answer-form textarea{
    width:100%;
    box-sizing:border-box;
    border:1px solid rgba(244,210,122,.65);
    border-radius:14px;
    padding:14px 16px;
    margin-bottom:14px;
    font-size:15px;
    background:rgba(255,255,255,.96);
    color:#1f3354;
}

.answer-form input::placeholder,
.answer-form textarea::placeholder{
    color:#6b7280;
}

.answer-form input:focus,
.answer-form textarea:focus{
    outline:none;
    border-color:#f4d27a;
    box-shadow:0 0 0 3px rgba(244,210,122,.28);
}

.answer-form textarea{
    min-height:100px;
    resize:vertical;
}

/* GOMB */

.answer-form button{
    border:none;
    background:#f4d27a;
    color:#1f3354;
    font-size:16px;
    font-weight:800;
    padding:14px 24px;
    border-radius:14px;
    cursor:pointer;
    transition:.25s ease;
    box-shadow:0 6px 14px rgba(0,0,0,.18);
}

.answer-form button:hover{
    background:#ffd978;
    transform:translateY(-2px);
}

/* VÁLASZ SZÁMLÁLÓ */

#answers-count{
    margin-bottom:16px;
    color:#6b5a2e;
    font-size:14px;
    font-weight:600;
}

/* VÁLASZ KÁRTYÁK */

.card{
    background:#ffffff;
    border:1px solid #ead59b;
    border-left:5px solid #f4d27a;
    border-radius:16px;
    padding:15px;
    margin-bottom:13px;
    box-shadow:0 5px 14px rgba(36,59,99,.08);
}

.card p{
    margin:0 0 8px;
    color:#243b63;
    line-height:1.55;
}

.card small{
    color:#7a6a3a;
    font-size:13px;
    font-weight:600;
}

/* VÁLASZLISTA */

#answers{
    max-height:290px;
    overflow-y:auto;
    padding-right:5px;
}

#answers::-webkit-scrollbar{
    width:8px;
}

#answers::-webkit-scrollbar-thumb{
    background:#d8bf73;
    border-radius:10px;
}

/* HOVER */

.klub-glass:hover{
    box-shadow:0 18px 42px rgba(31,51,84,.36);
}

.community-wall:hover{
    box-shadow:0 14px 34px rgba(36,59,99,.16);
}

/* MOBIL */

@media(max-width:900px){
    .klub-layout{
        grid-template-columns:1fr;
    }
.progress-loader{
    width:100%;
    height:10px;
    background:rgba(255,255,255,.15);
    border-radius:20px;
    overflow:hidden;
}

.progress-bar{
    height:100%;
    width:40%;
    background:#f4d27a;
    border-radius:20px;
    animation:progressMove 1.2s infinite;
}

@keyframes progressMove{

    0%{
        transform:translateX(-120%);
    }

    100%{
        transform:translateX(300%);
    }
/* ==========================================
   ВСЕ ОТВЕТЫ GOMB
========================================== */

.community-more{
    margin-top:25px;
    text-align:center;
}

.community-more .community-btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    min-width:180px;

    padding:14px 24px !important;

    background:#f4d27a !important;
    color:#1f3354 !important;

    border:2px solid #f4d27a !important;
    border-radius:14px !important;

    text-decoration:none !important;

    font-size:15px;
    font-weight:700;

    box-shadow:0 6px 16px rgba(0,0,0,.15);

    transition:.25s ease;
}

.community-more .community-btn:hover{

    background:#ffd978 !important;

    color:#1f3354 !important;

    transform:translateY(-2px);

    box-shadow:0 10px 22px rgba(0,0,0,.20);
/* Beírt szöveg színe */

.answer-form textarea{
    width:100%;
    box-sizing:border-box;

    min-height:52px;
    height:52px;

    padding:14px 16px;

    border:1px solid rgba(244,210,122,.65);
    border-radius:14px;

    background:rgba(255,255,255,.96);

    color:#1f3354 !important;

    font-size:15px;
    font-family:inherit;

    resize:vertical;
}

/* Placeholder szöveg */

.answer-form textarea::placeholder,
.answer-form input::placeholder{
    color:#7a7a7a !important;
/* Válasz mező javítás */

.klub-glass .answer-form textarea,
.klub-glass .answer-form textarea:focus{
    background:#ffffff !important;
    color:#1f3354 !important;
    border:1px solid rgba(244,210,122,.85) !important;
    border-radius:14px !important;
    padding:14px 16px !important;
    font-size:15px !important;
    font-family:inherit !important;
    min-height:100px !important;
    box-shadow:none !important;
}

.klub-glass .answer-form textarea::placeholder{
    color:#7a7a7a !important;
}

.klub-glass .answer-form input,
.klub-glass .answer-form input:focus{
    background:#ffffff !important;
    color:#1f3354 !important;
}
/* ==========================================
   ВСЕ ОТВЕТЫ OLDAL - SÖTÉTKÉK + ARANY
========================================== */

.klub-all-answers{
    max-width:1100px;
    margin:40px auto;
}

.klub-all-answers h2{
    background:linear-gradient(135deg,#1f3354,#304f82);
    color:#f4d27a;
    padding:26px 30px;
    border-radius:24px;
    margin:0 0 28px;
    box-shadow:0 14px 34px rgba(31,51,84,.25);
}

.all-question-box{
    background:#fffaf0;
    border:1px solid #ead59b;
    border-radius:22px;
    padding:26px;
    margin-bottom:24px;
    box-shadow:0 8px 22px rgba(31,51,84,.10);
}

.all-question-box h3{
    color:#243b63;
    font-size:24px;
    margin:0 0 18px;
}

.no-answers{
    color:#7a6a3a;
    font-style:italic;
}

.all-answer-card{
    background:#ffffff;
    border:1px solid #ead59b;
    border-left:5px solid #f4d27a;
    border-radius:16px;
    padding:18px;
    margin-bottom:14px;
    box-shadow:0 5px 14px rgba(36,59,99,.08);
}

.all-answer-card p{
    color:#243b63;
    line-height:1.6;
    margin:0 0 10px;
}

.all-answer-card span{
    color:#7a6a3a;
    font-weight:700;
    font-size:14px;
}
.klub-all-answers h2{
    background:red !important;
}
.all-answer-count{
    color:#7a6a3a;
    font-weight:700;
    margin-bottom:14px;
}

.all-open-btn{
    display:inline-block;
    background:#243b63;
    color:#f4d27a !important;
    text-decoration:none !important;
    padding:10px 16px;
    border-radius:12px;
    font-weight:800;
    margin-bottom:18px;
    box-shadow:0 5px 14px rgba(31,51,84,.18);
}

.all-open-btn:hover{
    background:#1f3354;
    color:#ffffff !important;
}
.page-id-1431 .hero-section,
.page-id-1431 .entry-header,
.page-id-1431 .ct-page-title,
.page-id-1431 .page-title,
.page-id-1431 h1.entry-title{
    display:none !important;
}
/* ==========================================
   ПОПУЛЯРНЫЕ ОТВЕТЫ
========================================== */

.klub-top-answers{
    max-width:1100px;
    margin:20px auto 34px;
}

.klub-top-answers h2{
    background:linear-gradient(135deg,#6b1e2c,#8f2d3f);
    color:#f4d27a;
    padding:24px 30px;
    border-radius:24px;
    margin:0 0 22px;
    box-shadow:0 12px 28px rgba(107,30,44,.25);
}

.top-answer-card{
    background:#fffaf0;
    border:1px solid #ead59b;
    border-left:6px solid #f4d27a;
    border-radius:20px;
    padding:20px;
    margin-bottom:16px;
    box-shadow:0 8px 20px rgba(31,51,84,.10);
}

.top-rank{
    width:32px;
    height:32px;
    border-radius:50%;
    .top-rank{
    background:#8f2d3f;
    color:#f4d27a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:16px;
    margin-bottom:12px;
}

.top-question{
    color:#243b63;
    font-weight:800;
    font-size:18px;
    margin-bottom:12px;
}

.top-answer-text{
    background:#ffffff;
    border-left:4px solid #f4d27a;
    border-radius:12px;
    padding:14px;
    margin-bottom:12px;
    color:#243b63;
    line-height:1.6;
}

.top-meta{
    color:#7a6a3a;
    font-weight:700;
    font-size:14px;
}