/* Start custom CSS for shortcode, class: .elementor-element-d824c85 */.single-book-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background-color: #fff;
    color: #111;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.book-cover {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}

.book-cover img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.book-info {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.book-info h1 {
    font-size: 2rem;
    margin: 0;
    color: #000;
}

.book-info h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.book-info h3 {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.book-info h4 {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
    margin-top: 10px;
}

#btn-descargar {
    margin: 15px 0;
    align-self: flex-start;
    text-decoration: none;
}

#descargar {
    background-color: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.2s ease;
}

#descargar:hover {
    background-color: #333;
}

.book-info p {
    line-height: 1.6;
    font-size: 1rem;
    color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
    .single-book-container {
        flex-direction: column;
        padding: 20px;
    }

    .book-cover, .book-info {
        max-width: 100%;
    }

    .book-info h1 {
        font-size: 1.5rem;
    }
}/* End custom CSS */