/*
Theme Name: Sarah Moulton Faux
Theme URI: https://sarahmoultonfaux.com
Author: Nico
Description: Custom theme for soprano Sarah Moulton Faux's professional website featuring an elegant lilac aesthetic with modern animations and interactive elements.
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smf-theme
*/

/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════ */
:root {
  /* Colors */
  --color-primary: #9b7bb3;
  --color-primary-dark: #6f4f91;
  --color-primary-light: #c9b7dd;
  --color-accent: #b59ac9;
  
  --color-text: #2c2c2c;
  --color-text-light: #666;
  --color-text-muted: #888;
  
  --color-bg: #fafafa;
  --color-bg-white: #ffffff;
  --color-bg-dark: #1a1a1a;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  --font-script: 'Herr Von Muellerhoff', cursive;
  
  /* Spacing */
  --section-padding: clamp(80px, 10vw, 120px);
  --container-width: 1200px;
  
  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.3s var(--ease-out-quart);
  --transition-medium: 0.5s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);
  
  /* Record Player */
  --record-size: 120px;
  --spin-speed: 3s;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Hide WordPress defaults */
.wp-post-image {
  display: none;
}

header:not(.site-header) {
  display: none;
}

#copyright {
  display: none;
}

/* ═══════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in from left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade-in from right */
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade-in scale */
.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.8s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Section fade wrapper */
.section-animate {
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo);
}

.section-animate.visible {
  opacity: 1;
}

/* ═══════════════════════════════════════
   SHINE EFFECTS
═══════════════════════════════════════ */
.silver-shine {
  position: relative;
  display: inline-block;
  color: #3a3a3a;
  background: linear-gradient(
    120deg,
    #3a3a3a 0%, #3a3a3a 30%,
    #8f8f8f 42%, #bfbfbf 50%, #8f8f8f 58%,
    #3a3a3a 70%, #3a3a3a 100%
  );
  background-size: 300% 100%;
  background-position: -120% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: silverSweep 12s var(--ease-out-quart) infinite;
}

.lilac-shine {
  position: relative;
  display: inline-block;
  color: #ffffff;
  background: linear-gradient(
    120deg,
    #ffffff 0%, #ffffff 30%,
    #d8cfe6 42%, #b8a7d1 50%, #d8cfe6 58%,
    #ffffff 70%, #ffffff 100%
  );
  background-size: 300% 100%;
  background-position: -120% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: silverSweep 12s var(--ease-out-quart) infinite;
}

@keyframes silverSweep {
  0% { background-position: -120% 0; }
  50% { background-position: 120% 0; }
  100% { background-position: 300% 0; }
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: background-color var(--transition-fast), backdrop-filter var(--transition-fast), border-color var(--transition-fast);
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 790px) {
  .main-nav .container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   HERO CAROUSEL
═══════════════════════════════════════ */
.hero-carousel {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.slide-1 .hero-bg { background-image: url('https://sarahmoultonfaux.com/wp-content/uploads/2025/12/Firefly_Gemini-Flash_Please-remove-all-text-and-symbols-from-image-and-leave-the-photo-of-the-two-humans-12995.png'); }
.slide-2 .hero-bg { background-image: url('https://sarahmoultonfaux.com/wp-content/uploads/2025/04/Sarah_new-3-scaled.jpg'); }
.slide-3 .hero-bg { background-image: url('https://sarahmoultonfaux.com/wp-content/uploads/2025/04/2025-Sarah-Moulton-Faux-Headshot-scaled.jpg'); }
.slide-4 .hero-bg { background-image: url('https://sarahmoultonfaux.com/wp-content/uploads/2025/04/Sarah-Moulton-Faux-Credit-Andrew-Brucker3-scaled.jpg'); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  animation: heroFadeIn 1.2s var(--ease-out-expo);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-content .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.25em;
  font-weight: 300;
  margin-bottom: 25px;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.8;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: rgba(155, 123, 179, 0.9);
  color: white;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(155, 123, 179, 0.4);
  background: var(--color-primary);
}

/* Carousel Controls */
.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.dot.active {
  background: white;
  width: 32px;
  border-radius: 5px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
  background: rgba(155, 123, 179, 0.8);
}

.carousel-arrow.prev { left: 30px; }
.carousel-arrow.next { right: 30px; }

@media (max-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .carousel-arrow.prev { left: 15px; }
  .carousel-arrow.next { right: 15px; }

  .hero-content {
    padding-top: 80px;
    margin-top: 60px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-content .subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
  }

  .hero-content p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

/* ═══════════════════════════════════════
   SECTION TITLES
═══════════════════════════════════════ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
.about-section {
  background: var(--color-bg);
  padding: var(--section-padding) 0;
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  position: relative;
}

/* Watermark */
.about-inner::before {
  content: "Sarah Moulton Faux";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "P22-Zaner-Pro-One", cursive;
  font-size: clamp(290px, 15vw, 340px);
  color: rgba(181, 154, 251, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.about-short {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.about-short strong {
  font-weight: 600;
}

/* Bio Toggle */
.bio-toggle {
  display: none;
}

.bio-toggle-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--color-primary);
  margin: 15px 0 30px;
  transition: color var(--transition-fast);
  position: relative;
  z-index: 1;
}

.bio-toggle-label:hover {
  color: var(--color-primary-dark);
}

.bio-toggle-open { display: inline-block; }
.bio-toggle-close { display: none; margin-top: 30px; }

.about-long {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s var(--ease-out-expo), opacity 0.5s ease;
  position: relative;
  z-index: 1;
}

.about-long p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.bio-toggle:checked ~ .bio-toggle-open { display: none; }
.bio-toggle:checked ~ .about-long {
  max-height: 2000px;
  opacity: 1;
}
.bio-toggle:checked ~ .about-long .bio-toggle-close { display: inline-block; }

/* ═══════════════════════════════════════
   FEATURED RELEASE
═══════════════════════════════════════ */
.featured-section {
  background: var(--color-bg-white);
  padding: var(--section-padding) 0;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.featured-cover {
  position: relative;
  cursor: pointer;
}

.vinyl-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

/* The vinyl record behind the sleeve */
.vinyl-record {
  position: absolute;
  top: 5%;
  left: 0;
  width: 90%;
  height: 90%;
  z-index: 1;
}

.vinyl-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.6s var(--ease-out-expo);
}

/* Album sleeve (cover) */
.album-sleeve {
  position: relative;
  z-index: 2;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.album-sleeve img {
  width: 100%;
  display: block;
  border-radius: 2px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Play album text */
.vinyl-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(calc(-100% - 20px));
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

/* Hover state - sleeve slides right, vinyl spins, text fades in */
.featured-cover:hover .album-sleeve {
  transform: translateX(15%);
  box-shadow: -10px 25px 70px rgba(0, 0, 0, 0.2);
}

.featured-cover:hover .vinyl-image {
  animation: vinylSpin 3s linear infinite;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.featured-cover:hover .vinyl-text {
  opacity: 1;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes textPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Click feedback - sleeve returns */
.featured-cover.clicked .album-sleeve {
  transform: translateX(0);
}

.featured-cover.clicked .vinyl-image {
  animation: none;
}

.featured-cover.clicked .vinyl-text {
  opacity: 0;
}

@media (max-width: 900px) {
  .featured-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-cover {
    max-width: 450px;
    margin: 0 auto;
  }

  .featured-cover:hover .album-sleeve {
    transform: translateX(12%);
  }
  
  .vinyl-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .vinyl-record {
    display: none;
  }

  .featured-cover:hover .album-sleeve {
    transform: none;
  }
}

.featured-info .award-badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: 25px;
}

.featured-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.featured-info p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 18px;
}

.listen-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.listen-link::after {
  content: " →";
  transition: margin-left var(--transition-fast);
}

.listen-link:hover {
  color: var(--color-primary-dark);
}

.listen-link:hover::after {
  margin-left: 5px;
}

/* ═══════════════════════════════════════
   EVENTS SECTION
═══════════════════════════════════════ */

/* 
 * The events section requires a wrapper element with class "events-section"
 * In the block editor, use a Group block and add "events-section" as an additional CSS class
 */
.events-section {
  position: relative;
  min-height: 100vh;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

/* Background with blur effect on scroll */
.events-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sarahmoultonfaux.com/wp-content/uploads/2025/12/background2smf.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  pointer-events: none;
  z-index: 1;
  transition: filter 0.4s ease-out;
  filter: blur(0px);
}

/* Blur state controlled by JavaScript */
.events-section.blur-active .events-bg {
  filter: blur(12px);
}

.events-content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* Section titles - centered with inline background */
/* Works with both h2.section-title and wp-block-heading */
.events-section h2,
.events-section .section-title,
.events-content h2,
.events-content .section-title {
  text-align: center;
  display: block;
  width: fit-content;
  margin: 0 auto 2rem auto;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.5em 1.2em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.events-content .section-title span {
  display: inline-block;
}

/* =====================================================
   EVENT GRID & CARDS - Plugin Output Styling
   Targets both evtsched-* (plugin) and event-* (legacy) classes
===================================================== */

/* Events grid - reduced size (50% of original) */
.events-grid,
.evtsched-events-grid {
  max-width: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-content: center;
}

/* Event cards - compact styling */
.event-card,
.evtsched-event-card {
  background: rgba(250, 250, 250, 0.94);
  padding: 14px 16px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.event-card::before,
.evtsched-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-primary);
  transition: height var(--transition-medium);
}

.event-card:hover::before,
.evtsched-event-card:hover::before {
  height: 100%;
}

.event-card:hover,
.evtsched-event-card:hover {
  transform: translateX(5px);
  background: white;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

/* Event date block - vertical layout */
.event-date,
.evtsched-event-date {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 300;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 55px;
  padding: 10px 8px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
  border-radius: 4px;
  text-align: center;
  flex-shrink: 0;
}

.event-date .event-month,
.evtsched-event-date .evtsched-date-month,
.evtsched-date-month {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--color-primary);
  order: 1;
}

.event-date .event-day,
.evtsched-event-date .evtsched-date-day,
.evtsched-date-day {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-primary);
  order: 2;
}

.event-date .event-year,
.evtsched-event-date .evtsched-date-year,
.evtsched-date-year {
  font-size: 0.95rem;
  opacity: 0.65;
  font-weight: 300;
  color: #888;
  order: 3;
  margin-top: 2px;
}

/* Event content area */
.evtsched-event-content {
  flex: 1;
  min-width: 0;
}

.event-title,
.evtsched-event-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.event-role,
.evtsched-event-role {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.event-location,
.evtsched-event-meta {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.evtsched-event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.evtsched-event-meta i {
  opacity: 0.6;
  font-size: 0.75rem;
  color: var(--color-primary-light);
}

.event-location a {
  color: var(--color-primary-light);
  transition: color var(--transition-fast);
}

.event-location a:hover {
  color: var(--color-primary);
}

/* Ticket button */
.event-button,
.evtsched-ticket-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: var(--color-primary-light);
  color: white !important;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), background-color var(--transition-medium);
}

.event-button::before,
.evtsched-ticket-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-out-expo), height 0.5s var(--ease-out-expo);
}

.event-button:hover::before,
.evtsched-ticket-button:hover::before {
  width: 200px;
  height: 200px;
}

.event-button:hover,
.evtsched-ticket-button:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 123, 179, 0.35);
}

/* Past events styling */
.evtsched-past-event {
  opacity: 0.85;
}

/* No events message */
.evtsched-no-events {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .events-grid,
  .evtsched-events-grid {
    max-width: 280px;
  }

  .event-card,
  .evtsched-event-card {
    padding: 12px 14px;
  }

  .event-date .event-day,
  .evtsched-date-day {
    font-size: 1.8rem;
  }

  .event-date .event-month,
  .evtsched-date-month {
    font-size: 1rem;
  }

  .event-button,
  .evtsched-ticket-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .event-card,
  .evtsched-event-card {
    flex-direction: column;
    gap: 12px;
  }

  .event-date,
  .evtsched-event-date {
    flex-direction: row;
    gap: 8px;
    padding: 10px 15px;
    align-self: flex-start;
  }

  .evtsched-date-year {
    margin-top: 0;
    margin-left: 4px;
  }

  .evtsched-event-meta {
    flex-direction: column;
    gap: 6px;
  }
}

/* ═══════════════════════════════════════
   DISCOGRAPHY
═══════════════════════════════════════ */
.discography-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}

.discography-header {
  text-align: center;
  margin-bottom: 3rem;
}

.decorative-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--color-primary-light);
  opacity: 0.6;
  margin-top: 0.5rem;
}

.decorative-line::before,
.decorative-line::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-primary-light);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.album-card {
  background: #faf8f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  cursor: pointer;
}

.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.album-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.album-card:hover .album-cover img {
  transform: scale(1.05);
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.9), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
}

.album-card:hover .album-overlay {
  opacity: 1;
}

.album-links {
  display: flex;
  gap: 1rem;
}

.album-links a {
  color: var(--color-primary-light);
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.album-links a:hover {
  color: white;
  transform: scale(1.15);
}

/* Album click hint text */
.album-click-hint {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.album-card:hover .album-click-hint {
  opacity: 1;
  transform: translateY(0);
}

.album-info {
  padding: 1.5rem;
}

.album-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.album-ensemble {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.album-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ═══════════════════════════════════════
   VIDEOS SECTION
═══════════════════════════════════════ */
.videos-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg-white);
}

.videos-section .section-title {
  text-align: center;
  display: block;
  width: 100%;
}

.videos-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 35px;
  padding: 0 clamp(20px, 5vw, 40px);
  justify-content: center;
}

.video-card {
  background: var(--color-bg);
  overflow: hidden;
  transition: all var(--transition-medium);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 22px;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.video-description {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ═══════════════════════════════════════
   MODALS
═══════════════════════════════════════ */
.smf-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 24, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 20px;
}

.smf-modal.active {
  display: flex;
}

.smf-modal-content {
  background: var(--color-bg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(30px, 5vw, 60px);
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: modalFade 0.4s var(--ease-out-expo);
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.smf-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.smf-modal-close:hover {
  color: var(--color-text);
}

.smf-modal-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  align-items: start;
}

.smf-modal-cover img {
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.smf-modal h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.smf-modal p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 15px;
}

.smf-modal h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 25px 0 12px;
  letter-spacing: 0.08em;
}

.smf-review {
  font-style: italic;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.smf-review-source {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.smf-modal-links {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

.smf-modal-links a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.smf-modal-links a:hover {
  color: var(--color-primary-dark);
}

.smf-modal-press {
  margin-top: 25px;
}

.smf-modal-press h5 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.smf-modal-press a {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.smf-modal-press a:hover {
  color: var(--color-primary-dark);
}

/* Spotify Modal Specific */
.spotify-modal-content {
  max-width: 500px;
  text-align: center;
}

.spotify-modal-content h3 {
  margin-bottom: 8px;
}

.spotify-modal-content > p {
  margin-bottom: 25px;
  color: var(--color-text-muted);
}

.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
}

.spotify-embed iframe {
  display: block;
}

@media (max-width: 768px) {
  .smf-modal {
    display: none !important;
  }

  .smf-modal-body {
    grid-template-columns: 1fr;
  }

  .smf-modal-cover {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════
   FLOATING RECORD PLAYER - UPDATED
   Replace the existing record player section in style.css with this
═══════════════════════════════════════ */

.record-player {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: var(--record-size);
  height: var(--record-size);
  z-index: 9999;
  cursor: pointer;
}

.record-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.record-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  /* Always spinning slowly by default */
  animation: spin 8s linear infinite;
  transition: box-shadow 0.3s ease;
}

/* On hover: STOP spinning, show play button */
.record-player:hover .record-image {
  animation-play-state: paused;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* When playing: spin FASTER */
.record-shell.playing .record-image {
  animation: spin 2s linear infinite;
  animation-play-state: running;
}

/* Keep spinning even on hover when playing */
.record-player:hover .record-shell.playing .record-image {
  animation-play-state: running;
}

/* Play/Pause button overlay */
.record-control {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Show control button on hover */
.record-player:hover .record-control {
  opacity: 1;
}

.control-button {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.record-player:hover .control-button {
  transform: scale(1.05);
}

.record-player:active .control-button {
  transform: scale(0.95);
}

/* Play icon (triangle) */
.icon-play {
  width: 0;
  height: 0;
  border-left: 14px solid #000;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

/* Pause icon (two bars) */
.icon-pause {
  display: flex;
  gap: 5px;
}

.icon-pause span {
  width: 5px;
  height: 16px;
  background: #000;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .record-player {
    display: none;
  }
}

/* ═══════════════════════════════════════
   EMAIL SIGNUP SECTION
═══════════════════════════════════════ */
.signup-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--color-bg);
  text-align: center;
  overflow: hidden;
}

/* Mist layers */
.signup-section::before,
.signup-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  bottom: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* Base mist layer - slower, more opaque */
.signup-section::before {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(213, 208, 220, 0.2) 20%,
    rgba(168, 163, 176, 0.5) 45%,
    rgba(107, 102, 114, 0.75) 70%,
    var(--color-bg-dark) 100%
  );
  animation: mistFloat 4s ease-in-out infinite;
}

/* Upper mist layer - faster, more translucent */
.signup-section::after {
  background: linear-gradient(
    580deg,
    transparent 0%,
    transparent 30%,
    rgba(200, 195, 210, 0.15) 50%,
    rgba(140, 135, 150, 0.4) 75%,
    rgba(80, 75, 90, 0.6) 100%
  );
  animation: mistFloat 3s ease-in-out infinite reverse;
  animation-delay: -2s;
}

@keyframes mistFloat {
  0%, 100% {
    transform: translateY(0) scaleY(1);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-8px) scaleY(1.02);
    opacity: 0.45;
  }
}

.signup-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  position: relative;
  z-index: 1;
}

/* Eyebrow text */
.signup-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 500;
}

/* Main heading */
.signup-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Subtext */
.signup-subtext {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Form styling */
.signup-form {
  width: 100%;
}

.signup-form-inner {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

/* Input wrapper with animated underline */
.signup-input-wrapper {
  flex: 1;
  position: relative;
}

.signup-input-wrapper input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(155, 123, 179, 0.2);
  border-radius: 2px;
  outline: none;
  transition: all var(--transition-fast);
}

.signup-input-wrapper input::placeholder {
  color: var(--color-text-muted);
  font-weight: 300;
}

.signup-input-wrapper input:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--color-primary-light);
  box-shadow: 0 4px 20px rgba(155, 123, 179, 0.12);
}

/* Animated focus line */
.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
}

.signup-input-wrapper input:focus ~ .input-focus-line {
  width: 100%;
}

/* Submit button */
.signup-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--color-primary);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
  white-space: nowrap;
}

.signup-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-out-expo), height 0.5s var(--ease-out-expo);
}

.signup-button:hover::before {
  width: 200px;
  height: 200px;
}

.signup-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155, 123, 179, 0.35);
}

.signup-button:active {
  transform: translateY(0);
}

.button-icon {
  transition: transform var(--transition-fast);
  font-size: 1rem;
}

.signup-button:hover .button-icon {
  transform: translateX(3px);
}

/* Privacy note */
.signup-privacy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 18px;
  letter-spacing: 0.02em;
}

/* Signup responsive */
@media (max-width: 600px) {
  .signup-form-inner {
    flex-direction: column;
    gap: 14px;
  }
  
  .signup-button {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
  }
  
  .signup-subtext {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
}

/* Form states */
.signup-form.signup-success .signup-form-inner {
  display: none;
}

.signup-form.signup-success::after {
  content: 'Thank you for subscribing.';
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-primary-dark);
  padding: 20px;
}

.signup-input-wrapper input:invalid:not(:placeholder-shown) {
  border-color: #c47a7a;
}

.signup-input-wrapper input:invalid:not(:placeholder-shown) ~ .input-focus-line {
  background: #c47a7a;
}

.signup-button.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  padding: 50px 20px 35px;
  background: var(--color-bg-dark);
  color: #999;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 25px;
}

.social-links a {
  color: #999;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  color: var(--color-primary);
  background: rgba(155, 123, 179, 0.2);
  transform: translateY(-3px);
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-primary-light);
}

.footer-divider {
  color: #555;
  font-size: 0.7rem;
}

@media (max-width: 480px) {
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-divider {
    display: none;
  }
}

footer p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.post-footer {
    background-color: rgba(155, 123, 179, 0.95);
}

.post-footer .tags-label {
    color: #fff;
}

.post-footer .tag-link {
    background-color: #fff;
    color: #1a1a1a;
}

.post-footer .tag-link:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* ═══════════════════════════════════════
   TRAVELING TROUBADOUR PRESS QUOTES CAROUSEL
═══════════════════════════════════════ */

/* Quote Section Container */
.quote-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #f5f0f9 0%, #e8dff0 100%);
  text-align: center;
}

/* Backgrounds Container */
.ttpq-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

/* Individual background */
.ttpq-section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.ttpq-section-background.is-active {
  opacity: 1;
}

.ttpq-section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* Hide old background elements */
.ttpq-slide__background,
.ttpq-slide__background-image,
.ttpq-slide__background-overlay {
  display: none !important;
}

/* Carousel Container */
.ttpq-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  min-height: 320px;
}

/* Viewport */
.ttpq-carousel__viewport {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Track */
.ttpq-carousel__track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Individual Slides */
.ttpq-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  min-height: auto;
  box-sizing: border-box;
  padding: 20px;
}

/* Force transparent backgrounds */
.ttpq-carousel,
.ttpq-carousel__viewport,
.ttpq-carousel__track,
.ttpq-carousel__slide,
.ttpq-slide__content,
.ttpq-quote,
.ttpq-quote__text,
.ttpq-quote__attribution,
.ttpq-quote__author,
.ttpq-quote__publication,
.ttpq-quote__date {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Slide Content */
.ttpq-slide__content {
  position: relative;
  z-index: 2;
  padding: 0;
}

/* Quote Styling */
.ttpq-quote {
  text-align: center;
}

.ttpq-quote__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.7;
  font-style: italic;
  color: #2c2c2c;
  margin: 0 0 25px;
  position: relative;
  padding: 0 40px;
}

/* Custom opening quote mark */
.ttpq-quote__text::before {
  content: '"' !important;
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 4rem;
  color: #9b7bb3;
  opacity: 0.25;
  font-style: normal;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Remove default closing quote */
.ttpq-quote__text::after {
  content: none !important;
}

/* Attribution Container */
.ttpq-quote__attribution {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
}

/* Author Name */
.ttpq-quote__author {
  font-weight: 500;
  color: #555;
  font-size: 0.9rem;
}

.ttpq-quote__author::after {
  content: none !important;
}

/* Publication Name */
.ttpq-quote__publication {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

a.ttpq-quote__publication {
  text-decoration: none;
  color: #666;
}

a.ttpq-quote__publication:hover {
  color: #9b7bb3;
}

/* Date */
.ttpq-quote__date {
  font-size: 0.8rem;
  color: #888;
  opacity: 1;
}

.ttpq-quote__date::before,
.ttpq-quote__date::after {
  content: none !important;
}

/* Navigation & Indicators */
.ttpq-carousel__navigation,
.ttpq-carousel__button {
  display: none;
}

/* Indicators / Dots */
.ttpq-carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 35px 0 0;
}

.ttpq-carousel__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(155, 123, 179, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ttpq-carousel__indicator:hover {
  background: rgba(155, 123, 179, 0.6);
}

.ttpq-carousel__indicator.is-active {
  background: #9b7bb3;
  width: 25px;
  border-radius: 4px;
}

/* Press Quotes Responsive */
@media (max-width: 768px) {
  .ttpq-carousel {
    min-height: 280px;
    padding: 0 20px;
  }

  .ttpq-quote__text {
    font-size: 1.2rem;
    padding: 0 30px;
  }

  .ttpq-quote__text::before {
    font-size: 3rem;
    top: -10px;
  }

  .ttpq-slide__content {
    padding: 0;
  }

  .ttpq-carousel__indicators {
    padding-top: 25px;
  }
}

/* ═══════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  padding: 18px 25px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  margin: 0;
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cookie-link {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 0.8rem;
  color: #c9b7dd;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.cookie-link:hover {
  color: #9b7bb3;
}

.cookie-accept {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: #9b7bb3;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.cookie-accept:hover {
  background: #6f4f91;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(155, 123, 179, 0.4);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cookie-icon {
    display: none;
  }
  
  .cookie-text {
    min-width: auto;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-accept {
    flex: 1;
    max-width: 200px;
  }
}

/* ═══════════════════════════════════════
   LEGAL PAGES STYLES
═══════════════════════════════════════ */

/* Navigation for legal pages */
.legal-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.2rem 0;
}

.legal-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-back {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.nav-back:hover {
  color: var(--color-primary);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #f5f0f9 0%, #e8dff0 100%);
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  color: var(--color-text);
}

.page-hero .last-updated,
.page-hero .subtitle {
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

/* Legal Content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--color-primary-dark);
  letter-spacing: 0.05em;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 2rem 0 0.8rem;
  color: var(--color-text);
}

.legal-content p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.highlight-box {
  background: rgba(155, 123, 179, 0.08);
  border-left: 3px solid var(--color-primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-style: italic;
}

.contact-box,
.commitment-box {
  background: var(--color-bg-white);
  border: 1px solid rgba(155, 123, 179, 0.2);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.contact-box {
  text-align: center;
  margin: 2.5rem 0;
}

.contact-box h3,
.commitment-box h3 {
  margin-top: 0;
  color: var(--color-primary-dark);
}

.commitment-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.commitment-box h3 i {
  color: var(--color-primary);
}

.contact-box a {
  font-weight: 500;
  color: var(--color-primary);
}

/* ═══════════════════════════════════════
   404 PAGE STYLES
═══════════════════════════════════════ */
.error-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  background: linear-gradient(135deg, #f5f0f9 0%, #e8dff0 50%, #fafafa 100%);
}

/* Decorative Background Elements */
.error-container::before {
  content: "♪";
  position: absolute;
  font-size: 300px;
  color: rgba(155, 123, 179, 0.05);
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.error-container::after {
  content: "♫";
  position: absolute;
  font-size: 250px;
  color: rgba(155, 123, 179, 0.04);
  bottom: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* 404 Number */
.error-code {
  font-family: var(--font-display);
  font-size: clamp(100px, 25vw, 200px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  color: transparent;
  background: linear-gradient(
    135deg,
    var(--color-primary-light) 0%,
    var(--color-primary) 50%,
    var(--color-primary-dark) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Decorative Line */
.error-decorative-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 25px auto;
}

/* Script Text */
.script-text {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-primary);
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Heading */
.error-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-text);
}

/* Message */
.error-message {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 450px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

/* Navigation Links */
.error-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.error-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-medium);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(155, 123, 179, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary-light);
}

.btn-secondary:hover {
  background: rgba(155, 123, 179, 0.1);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  font-size: 0.85rem;
}

.quick-links a {
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  position: relative;
}

.quick-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.quick-links a:hover {
  color: var(--color-primary);
}

.quick-links a:hover::after {
  width: 100%;
}

@media (max-width: 600px) {
  .error-nav {
    flex-direction: column;
    align-items: center;
  }

  .error-nav a {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .quick-links {
    flex-direction: column;
    gap: 15px;
  }

  .error-container::before,
  .error-container::after {
    display: none;
  }
}

/* ==========================================================================
   Archive Page - News Grid
   ========================================================================== */

.news-archive {
    padding: 80px 0 100px;
    background-color: #fafafa;
    min-height: 60vh;
}

.news-archive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Archive Header */
.archive-header {
    text-align: center;
    margin-bottom: 60px;
}

.archive-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 15px;
    letter-spacing: 0.02em;
}

.archive-description {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    margin: 0;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* News Card */
.news-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 30px;
}

.news-card-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.meta-separator {
    margin: 0 8px;
    color: #ccc;
}

.news-category {
    color: #8b7355;
}

.news-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 15px;
}

.news-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-title a:hover {
    color: #8b7355;
}

.news-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-card-excerpt p {
    margin: 0;
}

.read-more-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #8b7355;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more-link:hover {
    color: #6d5a45;
}

.read-more-link .arrow {
    transition: transform 0.2s ease;
}

.read-more-link:hover .arrow {
    transform: translateX(4px);
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #888;
}

/* Pagination */
.smf-pagination,
.navigation.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.smf-pagination .nav-links,
.navigation.pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.smf-pagination .page-numbers,
.navigation.pagination .page-numbers {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 10px 16px;
    color: #555;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.smf-pagination .page-numbers:hover,
.navigation.pagination .page-numbers:hover {
    background-color: #8b7355;
    border-color: #8b7355;
    color: #fff;
}

.smf-pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* ==========================================================================
   Single Post Page
   ========================================================================== */

.single-post {
    background-color: #fff;
}

/* Post Hero Image */
.post-hero {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.post-hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Post Container */
.single-post .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

/* Post Header */
.post-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.post-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.post-category {
    color: #8b7355;
}

.post-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Post Content */
.post-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
}

.post-content p {
    margin-bottom: 1.5em;
}

.post-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 2em 0 0.8em;
}

.post-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 1.8em 0 0.6em;
}

.post-content a {
    color: #8b7355;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.post-content a:hover {
    color: #6d5a45;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2em 0;
}

.post-content blockquote {
    border-left: 3px solid #8b7355;
    margin: 2em 0;
    padding: 20px 30px;
    background: #fafafa;
    font-style: italic;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Post Footer - Tags */
.post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tags-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tag-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    padding: 6px 14px;
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.tag-link:hover {
    background: #8b7355;
    color: #fff;
}

/* Post Navigation */
.post-navigation {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.nav-previous,
.nav-next {
    flex: 1;
    max-width: 45%;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.post-navigation a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-navigation a:hover {
    color: #8b7355;
}

/* Back to News Link */
.back-to-news {
    margin-top: 40px;
    text-align: center;
}

.back-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #8b7355;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #6d5a45;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    
    .news-archive {
        padding: 60px 0 80px;
    }
    
    .archive-title {
        font-size: 2.2rem;
    }
    
    .archive-description {
        font-size: 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-card-content {
        padding: 25px;
    }
    
    .news-card-title {
        font-size: 1.3rem;
    }
    
    /* Single Post */
    .post-hero {
        max-height: 300px;
    }
    
    .single-post .container {
        padding: 40px 20px 80px;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-navigation .nav-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-previous,
    .nav-next {
        max-width: 100%;
        text-align: left;
    }
    
    .nav-next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    
    .archive-header {
        margin-bottom: 40px;
    }
    
    .archive-title {
        font-size: 1.8rem;
    }
    
    .news-card-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.7rem;
    }
}
