/* =========================
   BookFairy Review Box
========================= */

.bf-review-box {
    margin: 45px 0;
    padding: 35px 0;
    border-top: 1px solid #e7dfeb;
    border-bottom: 1px solid #e7dfeb;
}


/* =========================
   VERDICT TITLE
========================= */

.bf-verdict-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 700;
    color: #6F2DBD;
    margin-bottom: 18px;
}


/* =========================
   BOOK TITLE
========================= */

.bf-book-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 700;
    color: #222222;
}


.bf-book-author {
    font-family: "Lora", serif;
    font-size: 17px;
    font-style: italic;
    margin-bottom: 25px;
    color: #555555;
}


/* =========================
   FAIRY RATING
========================= */

.bf-rating-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}


.bf-fairy {
    display: inline-flex;
    width: 56px;
    height: 56px;
}


.bf-fairy svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* =========================
   GENRES
========================= */

.bf-genres-list {
    margin-top: 12px;
}


.bf-review-genre {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 12px 0;
    font-family: "Lora", serif;
    font-size: 24px;
    font-style: italic;
    color: #C62828;
}


/* =========================
   GENRE ICON
========================= */

.bf-genre-icon svg {
    width:70px;
    height:70px;
    display:inline-block;
    vertical-align:middle;
}

.bf-genre {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

/* =========================
   GENRE TEXT
========================= */

.bf-genre-text {
    line-height: 1.2;
}
/* BookFairy genre thumbnail image */

.bf-review-box .bf-genre-thumbnail {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 20px 0;
}
/* =========================
   BookFairy Genre Image Thumbnail
========================= */

.bf-review-box img {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover;
    display: block;
    margin: 20px 0;
    border-radius: 10px;
}
/* FORCE SVG GENRE ICON SIZE */

.bf-genre-icon {
    display: inline-block !important;
    width: 70px !important;
    height: 70px !important;
    overflow: hidden !important;
}

.bf-genre-icon svg {
    display: block !important;
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
}
/* =========================
   GENRE ICON IMAGE FIX
========================= */

.bf-genre-icon {
    display: inline-flex !important;
    width: 70px !important;
    height: 70px !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.bf-genre-icon img {
    width: 70px !important;
    height: 70px !important;
    display: block !important;
    object-fit: contain !important;
}
/* FORCE ALL GENRE ICONS */

.bf-genre {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.bf-genre-icon {
    display: inline-flex !important;
    width: 70px !important;
    height: 70px !important;
    flex: 0 0 70px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
}

.bf-genre-icon svg,
.bf-genre-icon img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    display: block !important;
}