/**
 * Series Section Styles
 *
 * @package Author_Theme
 */

.series-section {
  position: relative;
  text-align: center;
  padding: 2rem 0;
}

.series-section::before {
  content: "📚";
  position: absolute;
  top: 20px;
  right: 10%;
  font-size: 4rem;
  opacity: 0.1;
}

.series-section::after {
  content: "☕";
  position: absolute;
  bottom: 20px;
  left: 10%;
  font-size: 4rem;
  opacity: 0.1;
}

.series-main {
  margin: 0;
  font-size: var(--text-4xl);
  font-family: "Allura", cursive !important;
}

.series-tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-xl);
}

.series-book-card {
  text-align: center;
}

.series-book-link {
  color: inherit;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-out);
}

.series-book-link:hover {
  transform: translateY(-2px);
}

.series-book-cover {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  transition: box-shadow var(--duration-fast) var(--ease-out);
}

.series-book-link:hover .series-book-cover {
  box-shadow: var(--shadow-md);
}

.series-book-cover--placeholder {
  background: linear-gradient(160deg, var(--accent-200), var(--accent-400));
}

.series-book-title {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.35;
}
