/* =========================================================
   GENRE ARCHIVE
========================================================= */

.tokki-genre-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.tokki-genre-header {
    margin-bottom: 24px;
}

.tokki-genre-header h1 {
    margin: 0 0 10px;
    color: #E6E6E7;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.tokki-genre-header p {
    max-width: 760px;
    margin: 0;
    color: rgba(230,230,231,.78);
    font-size: 17px;
    line-height: 1.6;
}

.tokki-genre-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 14px;

    margin-bottom: 24px;
    padding: 14px 18px;

    border-radius: 14px;
    background: #222124;

    color: rgba(230,230,231,.78);
    font-size: 14px;
}

.tokki-genre-novel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tokki-genre-novel-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #222124;
}

.tokki-genre-novel-link {
    display: block;
    position: relative;
    color: #E6E6E7;
    text-decoration: none !important;
}

.tokki-genre-novel-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.tokki-genre-novel-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tokki-genre-novel-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 70px 16px 16px;

    background: linear-gradient(
        to top,
        rgba(30,30,30,1) 0%,
        rgba(30,30,30,.92) 36%,
        rgba(30,30,30,.45) 70%,
        rgba(30,30,30,0) 100%
    );
}

.tokki-genre-novel-content h2 {
    margin: 0 0 8px;
    color: #E6E6E7;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tokki-genre-novel-content span {
    color: rgba(230,230,231,.72);
    font-size: 13px;
    line-height: 1.3;
}

.tokki-genre-pagination {
    margin-top: 32px;
}

.tokki-empty {
    color: rgba(230,230,231,.75);
}

/* ===== HEADER DE GENERO ===== */

.tokki-genre-header {
    text-align: center;
    margin-bottom: 18px;
}

.tokki-genre-header h1 {
    color: #B98BDD !important;
    font-size: 42px !important;
    font-weight: 700;
    margin-bottom: 8px;
}

.tokki-genre-header p {
    font-size: 16px;
    color: #E6E6E7;
    margin: 0 auto;
    max-width: 620px;
}

/* ===== CONTADOR "X NOVELAS" ===== */

.tokki-genre-toolbar {
    margin-bottom: 28px;
}

.tokki-genre-toolbar span {
    font-size: 18px !important;
    color: #E6E6E7;
    font-weight: 500;
}

/* ===== TITULO DE NOVELA ===== */

.tokki-genre-novel-content h2 {
    line-height: 1.35;
    letter-spacing: -0.1px;
    font-size: 18px !important;
}


/* MOBILE */
@media (max-width: 768px) {

    .tokki-genre-archive {
        padding: 28px 14px 46px;
    }

    .tokki-genre-header h1 {
        font-size: 28px;
    }

    .tokki-genre-header p {
        font-size: 15px;
    }

    .tokki-genre-toolbar {
        flex-direction: column;
        font-size: 13px;
    }

    .tokki-genre-novel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tokki-genre-novel-card {
        border-radius: 14px;
    }

    .tokki-genre-novel-content {
        padding: 56px 12px 12px;
    }

    .tokki-genre-novel-content span {
        font-size: 12px;
    }
    
    .tokki-genre-header h1 {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .tokki-genre-toolbar span {
        font-size: 15px !important;
    }
    
    .tokki-genre-novel-content h2 {
        font-size: 14px !important;
        line-height: 1.35;
    }

}


