/* Floating "Book Spotlight" widget */
#bn-book-spotlight {
    position: fixed;
    right: 15px !important;
    left: auto !important;
    bottom: 120px !important;
    z-index: 9999;
    max-width: 260px;
    font-family: inherit;
}


.bn-book-spotlight-inner {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-size: 14px;
}

.bn-book-spotlight-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    margin-bottom: 6px;
}

.bn-book-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.bn-book-spotlight a {
    text-decoration: none;
}

.bn-book-spotlight a:hover .bn-book-title {
    text-decoration: underline;
}

.bn-book-series {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

.bn-book-hook {
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.bn-book-cta {
    display: inline-block;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 999px;
    border: 1px solid #333;
    background: #333;
    color: #fff !important;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.bn-book-cta:hover {
    background: #fff;
    color: #333 !important;
}

/* On small screens, make it full-width at bottom */
@media (max-width: 768px) {
    #bn-book-spotlight {
        position: static;
        max-width: none;
        margin: 10px 10px 0 10px;
    }

    .bn-book-spotlight-inner {
        border-radius: 8px;
    }
}
