/*
 Theme Name: FictionFlock (OceanWP Child)
 Theme URI: https://fictionflock.com
 Description: Child theme for FictionFlock customizations
 Author: Veronica Jorden
 Template: oceanwp
 Version: 1.0.0
*/

/* Import parent theme styles */

/* Your custom CSS goes below */
/* ============================================================
   FictionFlock – Genre Guide Review Template Styles
   Applies to: single-ff_review.php
   ============================================================ */

/* Layout wrapper */
.ff-single-review .ff-review-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Back link spacing */
.ff-back-link {
    margin-bottom: 20px;
}

/* Two-column layout */
.ff-review-header {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* MOBILE collapse */
@media (max-width: 768px) {
    .ff-review-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===========================
   Left Column: Book Display
   =========================== */

.ff-review-book {
    text-align: center;
}

.ff-review-book-cover {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 6px;
    margin: 0 auto 20px auto;
    display: block;
}

.ff-no-cover {
    background: #f2f2f2;
    color: #777;
    padding: 50px 0;
    border-radius: 6px;
    font-size: 14px;
}

.ff-review-book-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ff-review-book-author {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* ===========================
   Right Column: Review Content
   =========================== */

.ff-review-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ff-review-byline {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.ff-review-rating {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ff-review-body {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

/* Edit button (visible to reviewer/admin only) */
.ff-review-edit {
    margin-top: 20px;
}

/* Buttons */
.ff-btn,
.ff-btn-secondary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

/* Primary button example (if needed later) */
.ff-btn-primary {
    background: #2a7ae2;
    color: #fff;
}

/* Secondary button */
.ff-btn-secondary {
    background: #efefef;
    color: #444;
    border: 1px solid #ccc;
}

.ff-btn-secondary:hover {
    background: #e6e6e6;
}
