/*
Theme Name: Matthew Jones Child Theme
Description: Child theme for Matthew F. Jones author site
Author: Sam Crowe
Template: Divi
Version: 1.0.0
*/

/* ========================================
   MATTHEW F. JONES - 
   Clean, Modern Author Website Navigation
      ======================================== */

/* Book Reviews Section */
.book-reviews-section {
    margin: 30px 0;
    padding: 0;
}

.book-reviews-section h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
    padding-bottom: 8px;
}

.book-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.book-review-item {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.book-review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.book-review-item blockquote {
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 12px 0;
    position: relative;
}

.book-review-item blockquote:before {
    content: " ";
    font-size: 30px;
    color: #e74c3c;
    position: absolute;
    left: -12px;
    top: -8px;
    line-height: 1;
}

.book-review-item cite {
    font-style: normal;
    font-weight: bold;
    color: #666666;
    font-size: 13px;
    line-height: 1.4;
}

.book-review-item cite a {
    color: #666666;
    text-decoration: none;
}

.book-review-item cite a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.book-review-item .publication {
    font-weight: normal;
    font-style: italic;
    color: #888888;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .book-review-item {
        padding: 15px;
    }
    
    .book-review-item blockquote {
        font-size: 14px;
    }
    
    .book-review-item blockquote:before {
        font-size: 24px;
        left: -8px;
    }
}






