  .book-card {
        width: 100%;
        background: #fff;
        margin: 2em 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 8px;
    }
    .book-card__inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
        margin-bottom: 12px;
    }
    .book-card__cover-link {
        flex-shrink: 0;
        display: block;
        line-height: 0;
    }
    .book-card__cover {
        width: 170px !important;
        min-width: 170px !important;
        max-width: 170px !important;
        display: block;
    }
    .book-card__title {
        font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        margin: 0 0 6px 0;
        color: #111;
        letter-spacing: 0.5px;
    }
    .book-card__author {
        font-family: 'PT Sans', Arial, sans-serif;
        font-size: 0.95rem;
        color: #555;
        margin: 0 0 16px 0;
    }
    .book-card__link {
        font-family: 'PT Sans', Arial, sans-serif;
        color: #e67e22;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid #e67e22;
        padding-bottom: 2px;
    }
    .book-card__label {
        font-family: 'PT Sans', Arial, sans-serif;
        font-size: 11px;
        color: #999;
        text-align: left;
    }
    @media (max-width: 640px) {
        .book-card__inner {
            gap: 20px;
            flex-wrap: nowrap;
            margin-bottom: 10px;
        }
        .book-card__cover {
            width: 130px !important;
            min-width: 130px !important;
            max-width: 130px !important;
        }
        .book-card__title {
            font-size: 1.2rem;
        }
        .book-card__author {
            font-size: 0.85rem;
            margin-bottom: 12px;
        }
        .book-card__link {
            font-size: 0.85rem;
        }
    }