/*
Theme Name: Swoonworthy Author - Divi Child Theme
Description: A custom child theme for Divi, designed specifically for authors and writers
Author: Swoonworthy Designs
Author URI: https://swoonworthydesigns.com
Template: Divi
Version: 2.0.0
*/
/* Import parent theme styles */
@import url("../Divi/style.css");

/* ========================================
   Series Covers Grid Styles
======================================== */

/* Make the container a horizontal flex row */
.swoonworthy-series-grid {
  display: flex;
  flex-wrap: wrap;        
  justify-content: center; 
  align-items: flex-start; 
  gap: 10px;               
}

/* Each cover (book) */
.swoonworthy-book-item {
  flex: 0 0 calc(25% - 10px); /* 4 columns on desktop */
  box-sizing: border-box;
  text-align: center;
}

/* Tablet: show 2 per row */
@media (max-width: 900px) {
  .swoonworthy-book-item {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Mobile: still 2 per row */
@media (max-width: 600px) {
  .swoonworthy-book-item {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Make covers look tidy and uniform */
.swoonworthy-book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Empty message styling */
.swoonworthy-series-empty {
  text-align: center;
  font-style: italic;
  color: #666;
  padding: 20px;
}