.elementor-139 .elementor-element.elementor-element-1c357e1{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-2306f9a */.book-category-section {
        --book-primary: #022236;
        --book-primary-hover: #0b3c57;
        --book-background: #f5f7f9;
        --book-card: #ffffff;
        --book-text: #17212b;
        --book-muted: #647481;
        --book-radius: 16px;

        width: 100%;
        padding: 32px 20px;
        background: var(--book-background);
        direction: rtl;
        font-family: inherit;
        box-sizing: border-box;
    }

    .book-category-section *,
    .book-category-section *::before,
    .book-category-section *::after {
        box-sizing: border-box;
    }

    .book-category-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }

    .book-category-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 24px;
    }

    .book-category-heading {
        margin: 0;
        color: var(--book-primary);
        font-size: clamp(22px, 2vw, 30px);
        font-weight: 800;
        line-height: 1.5;
    }

    .book-category-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 5px 13px;
        color: var(--book-muted);
        background: #ffffff;
        border: 1px solid #e2e8ec;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }

    .book-category-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 22px 18px;
    }

    .book-category-card {
        position: relative;
        min-width: 0;
        overflow: hidden;
        background: var(--book-card);
        border: 1px solid #e6ebee;
        border-radius: var(--book-radius);
        box-shadow: 0 8px 25px rgba(2, 34, 54, 0.06);
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            border-color 0.3s ease;
    }

    .book-category-card:hover {
        transform: translateY(-6px);
        border-color: rgba(2, 34, 54, 0.18);
        box-shadow: 0 16px 38px rgba(2, 34, 54, 0.13);
    }

    .book-category-cover-link {
        position: relative;
        display: block;
        overflow: hidden;
        background: #e9eef1;
        aspect-ratio: 3 / 4;
    }

    .book-category-cover {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

    .book-category-card:hover .book-category-cover {
        transform: scale(1.035);
    }

    .book-category-cover-link::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            transparent 60%,
            rgba(2, 34, 54, 0.18) 100%
        );
        pointer-events: none;
    }

    .book-category-content {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .book-category-title {
        min-height: 54px;
        margin: 0;
        color: var(--book-text);
        font-size: 15px;
        font-weight: 750;
        line-height: 1.8;
        text-align: right;
    }

    .book-category-title a {
        display: -webkit-box;
        overflow: hidden;
        color: inherit;
        text-decoration: none;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        transition: color 0.2s ease;
    }

    .book-category-title a:hover {
        color: var(--book-primary-hover);
    }

    .book-category-download {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        min-height: 42px;
        padding: 9px 12px;
        color: #ffffff;
        background: var(--book-primary);
        border: 1px solid var(--book-primary);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.4;
        text-decoration: none;
        transition:
            background-color 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease;
    }

    .book-category-download svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .book-category-download:hover {
        color: #ffffff;
        background: var(--book-primary-hover);
        box-shadow: 0 8px 20px rgba(2, 34, 54, 0.2);
        transform: translateY(-2px);
    }

    .book-category-download:focus-visible,
    .book-category-title a:focus-visible,
    .book-category-cover-link:focus-visible {
        outline: 3px solid rgba(2, 34, 54, 0.25);
        outline-offset: 3px;
    }

    @media (max-width: 1024px) {
        .book-category-section {
            padding: 28px 18px;
        }

        .book-category-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }
    }

    @media (max-width: 600px) {
        .book-category-section {
            padding: 22px 12px;
        }

        .book-category-header {
            align-items: flex-start;
            margin-bottom: 18px;
        }

        .book-category-heading {
            font-size: 21px;
        }

        .book-category-count {
            min-height: 30px;
            padding: 4px 10px;
            font-size: 11px;
        }

        .book-category-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px 10px;
        }

        .book-category-card {
            border-radius: 12px;
        }

        .book-category-content {
            gap: 10px;
            padding: 11px;
        }

        .book-category-title {
            min-height: 47px;
            font-size: 13px;
            line-height: 1.8;
        }

        .book-category-download {
            min-height: 38px;
            padding: 8px;
            border-radius: 8px;
            font-size: 13px;
        }

        .book-category-download svg {
            width: 16px;
            height: 16px;
            flex-basis: 16px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .book-category-card,
        .book-category-cover,
        .book-category-download {
            transition: none;
        }
    }
    
    /* Minimal Hero */
.book-library-hero {
    width: 100%;
    padding: 72px 20px 68px;
    color: #ffffff;
    background: #022236;
    direction: rtl;
    font-family: inherit;
    box-sizing: border-box;
}

.book-library-hero *,
.book-library-hero *::before,
.book-library-hero *::after {
    box-sizing: border-box;
}

.book-library-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.book-library-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.8;
}

.book-library-breadcrumb a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}

.book-library-breadcrumb a:hover {
    color: #ffffff;
}

.book-library-breadcrumb svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.book-library-hero-content {
    max-width: 790px;
}

.book-library-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #9dc2d3;
    font-size: 14px;
    font-weight: 700;
}

.book-library-eyebrow::before {
    content: "";
    width: 22px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

.book-library-title {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0;
}

.book-library-description {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 2;
}

.book-library-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.book-library-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 650;
}

.book-library-meta-item svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Description Section */
.book-library-about {
    width: 100%;
    padding: 64px 20px;
    color: #17212b;
    background: #ffffff;
    direction: rtl;
    font-family: inherit;
    box-sizing: border-box;
}

.book-library-about *,
.book-library-about *::before,
.book-library-about *::after {
    box-sizing: border-box;
}

.book-library-about-container {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 64px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.book-library-about-content {
    min-width: 0;
}

.book-library-about-label {
    display: block;
    margin-bottom: 10px;
    color: #397188;
    font-size: 13px;
    font-weight: 750;
}

.book-library-about-title {
    margin: 0 0 20px;
    color: #022236;
    font-size: clamp(23px, 2.5vw, 34px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: 0;
}

.book-library-about-content p {
    margin: 0 0 16px;
    color: #4e5f6a;
    font-size: 15px;
    line-height: 2.15;
    text-align: justify;
}

.book-library-about-content p:last-child {
    margin-bottom: 0;
}

.book-library-topics {
    align-self: start;
    padding: 24px;
    background: #f5f7f9;
    border: 1px solid #e5eaed;
    border-radius: 8px;
}

.book-library-topics-title {
    margin: 0 0 18px;
    color: #022236;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.6;
}

.book-library-topics-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.book-library-topics-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #40515d;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
}

.book-library-topics-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 5px;
    color: #19735b;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 800px) {
    .book-library-hero {
        padding: 54px 18px 50px;
    }

    .book-library-title {
        font-size: 32px;
    }

    .book-library-about {
        padding: 48px 18px;
    }

    .book-library-about-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .book-library-hero {
        padding: 42px 12px 40px;
    }

    .book-library-breadcrumb {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .book-library-title {
        margin-bottom: 12px;
        font-size: 27px;
        line-height: 1.5;
    }

    .book-library-description {
        font-size: 14px;
        line-height: 2;
    }

    .book-library-meta {
        align-items: stretch;
        margin-top: 22px;
    }

    .book-library-meta-item {
        flex: 1 1 140px;
        justify-content: center;
        font-size: 12px;
    }

    .book-library-about {
        padding: 38px 12px;
    }

    .book-library-about-title {
        font-size: 22px;
    }

    .book-library-about-content p {
        font-size: 14px;
        line-height: 2.1;
        text-align: right;
    }

    .book-library-topics {
        padding: 20px 16px;
    }
}/* End custom CSS */