/* ============================================
   KÖNYVLISTA OLDAL – TELJES CSS (A–Z)
   ============================================ */

/* ----- Általános tipográfia ----- */
.subtitle {
    max-width: 720px;
    margin: 8px auto 16px auto;
    text-align: justify;
    font-size: 16px;
    color: #444;
}

/* --------------------------------------------
   SZŰRŐ SÁV
-------------------------------------------- */
.book-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: flex-end;
    padding: 15px 0 5px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 18px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.filter-group select {
    padding: 4px 6px;
    font-size: 14px;
    border: 1px solid #bbb;
    border-radius: 4px;
    background: #fff;
}

/* Szűrő gomb */
.filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Szűrő gomb */
.filter-actions button {
    appearance: none !important;
    -webkit-appearance: none !important;

    background: #e4e4e4;        /* világos szürke háttér */
    color: #333;                /* jól olvasható sötétszürke szöveg */
    padding: 4px 12px;          /* vékony gomb */
    border: 1px solid #ccc;     /* finom keret */
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;           /* ← félkövér szöveg */
    cursor: pointer;

    line-height: 1.2;
    height: auto;               /* nincs kényszerített magasság */
}

.filter-actions button:hover {
    background: #d3d3d3;        /* kicsit sötétebb hover */
}

.reset-link {
    font-size: 14px;
    color: #444;
    text-decoration: underline;
}

/* MOBILOS SZŰRŐ */
@media (max-width: 480px) {
    .book-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .filter-actions button {
        padding: 5px 10px;
    }
}

/* --------------------------------------------
   GRID
-------------------------------------------- */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

/* --------------------------------------------
   KÖNYVKÁRTYA
-------------------------------------------- */
.book-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: row;
    gap: 14px;
    height: 100%;
}

.book-cover img {
    width: 95px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Kártya jobb oldala */
.book-card__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* ne tolja szét mobilon */
}

/* Cím */
.book-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

/* Szerző */
.book-card__author {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

/* Meta jelvények */
.meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.chip {
    background: #f3f3f3;
    padding: 3px 7px;
    border-radius: 6px;
    font-size: 12px;
    color: #444;
}

/* Leírás – levágva, hogy ne nyúljon ki */
.book-card__desc {
    color: #444;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 10px;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Footer a kártya alá ragasztva */
.book-card__footer {
    margin-top: auto; /* !!! EZ TESZI EGYSÍKÚVÁ A KÁRTYÁKAT !!! */
}

.btn-link {
    font-size: 14px;
    text-decoration: underline;
    color: #0066cc;
}

/* --------------------------------------------
   LAPOZÓ
-------------------------------------------- */
.pagination {
    text-align: center;
    margin: 25px 0;
    font-size: 15px;
}

.pg-btn {
    padding: 6px 10px;
    margin: 0 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pg-btn:hover {
    background: #efefef;
}

.pg-btn.active {
    background: #444;
    color: #fff;
    border-color: #444;
}

.pg-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* --------------------------------------------
   MOBILOS KÁRTYA
-------------------------------------------- */
@media (max-width: 600px) {
    .book-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .book-cover img {
        width: 150px;
        height: 220px;
    }

    .meta-chips {
        justify-content: center;
    }

    .book-card__footer {
        text-align: center;
    }

    .book-card__desc {
        text-align: left;
        width: 100%;
    }
}
/* ĂÂĂÂltalĂÂĂÂnos H1 a tartalom-terĂÂÄšĹletre */
.content-area h1,
.post h1 {
    font-size: 1.9rem !important;
    line-height: 1.3;
    font-weight: 700;
    margin: 1.2rem 0 0.8rem;
    text-align: center;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;  /* kb. 24px */
    line-height: 1.25;
    margin-top: 0.75rem;
  }
}