@import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400;500;700;800&family=Open+Sans:wght@300;400;600;700&family=Public+Sans:wght@300;400;500;600;700&display=swap');
/* Premium Palette (Light Mode Only) */
:root {
  /* Brand Colors */
  --color-primary: #275fa6;
  /* Azul Personalizado (Acento) */
  --color-secondary: #0f172a;
  /* Azul Marino (Encabezados/Marca) */
  --color-accent: #1e4d8c;
  /* Variación del Azul Personalizado */

  /* Text */
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  /* Gris Azulado (Slate 500) */

  /* Backgrounds */
  --color-bg-body: #f8fafc;
  /* Gris Niebla */
  --color-bg-card: rgba(255, 255, 255, 0.95);
  /* Blanco Puro Glass */

  /* Borders */
  --color-border: rgba(39, 95, 166, 0.15);
  /* Custom primary tint */

  /* Typography */
  --font-main: "Open Sans", sans-serif;
  --font-heading: "Open Sans", sans-serif;
  --font-admin: 'Public Sans', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}
.landing-page-wrapper {
  --font-main: "Open Sans", sans-serif;
  --font-heading: "Open Sans", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
::selection {
  background-color: var(--color-primary);
  color: var(--color-bg-body);
}
/* Tailwind-like Utilities for Hero */
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.z-fixed {
  z-index: 999;
}
.object-cover {
  object-fit: cover;
}
.hidden {
  display: none;
}
.fixed {
  position: fixed;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.bg-black\/60 {
  background-color: rgba(0, 0, 0, 0.6);
}
.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}
.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}
.bg-black\/95 {
  background-color: rgba(0, 0, 0, 0.95);
}
.bg-primary\/10 {
  background-color: rgba(0, 173, 181, 0.1);
}
.border-primary\/30 {
  border-color: rgba(0, 173, 181, 0.3);
}
.text-primary {
  color: var(--color-primary);
}
.text-white {
  color: white;
}
.text-gray-300 {
  color: #d1d5db;
}
.text-gray-400 {
  color: #9ca3af;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-md {
  border-radius: 0.375rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}
.border {
  border-width: 1px;
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.backdrop-blur-md {
  backdrop-filter: blur(12px);
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}
.backdrop-blur-xl {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-primary {
  --tw-gradient-from: var(--color-primary);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-cyan-300 {
  --tw-gradient-to: #67e8f9;
}
.to-transparent {
  --tw-gradient-to: transparent;
}
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}
.text-transparent {
  color: transparent;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
/* Premium Typography Utilities */
.text-responsive-h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1.1;
}
.text-responsive-h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
}
.glass-premium {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.gradient-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
}
.badge-premium {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .md\:text-6xl {
    font-size: 3.75rem;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .hidden-md {
    display: none;
  }

  .block-md {
    display: block;
  }
}
@media (min-width: 1024px) {
  .lg\:text-7xl {
    font-size: 4.5rem;
  }
}
body {

  font-family: var(--font-main);
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}
a:hover {
  opacity: 0.8;
}
button {
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  transition: all var(--transition-fast);
}
/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.section {
  padding: var(--spacing-xl) 0;
}
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--color-primary);
}
.text-muted {
  color: var(--color-text-muted);
}
.glass {
  background: var(--color-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.5rem 1.4rem;
  /* Further reduced padding */
  border-radius: var(--radius-full);
  /* Pill shape for better aesthetics */
  font-weight: 600;
  font-size: 0.85rem;
  /* Smaller font-size */
  /* Slightly smaller text */
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle border */
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
  /* Slightly more letter-spacing for premium feel at small size */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}
.btn-primary:hover::before {
  left: 150%;
  transition: 0.7s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(39, 95, 166, 0.3);
}
/* Navbar Links */
.nav-link {
  margin-left: 1.5rem;
  color: var(--color-text-main);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.05em;
  font-family: var(--font-main);
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(0, 173, 181, 0.6);
  transform: translateY(-1px);
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--color-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
/* 3D Card Effect */
.card-3d {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.card-3d:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(0, 173, 181, 0.3);
  z-index: 10;
}
/* Micro-interactions */
button:active,
.btn-primary:active,
.btn-submit:active {
  transform: scale(0.98);
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.2);
  transform: translateY(-1px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
input,
textarea {
  transition: all 0.3s ease;
}
/* Premium Button Refinements */
.btn-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Redesign for Premium Navbar Styles */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
}
/* Floating Pill Effect when Scrolled */
.navbar-wrapper.navbar-scrolled {
  top: 1rem;
  padding: 0;
  background-color: transparent;
  border-bottom: none;
}
.navbar-scrolled .navbar-container {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(13, 148, 136, 0.12);
  /* Subtle Patina tint border */
  border-radius: 999px;
  /* Pill Shape */
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(13, 148, 136, 0.05),
    0 25px 50px -12px rgba(0, 0, 0, 0.1);
  padding: 0.6rem 2rem;
  max-width: 1000px;
  /* Make it slightly narrower when floating */
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  transition: all 0.3s ease;
}
/* Navbar Scroll Contrast */
.navbar-scrolled .nav-link {
  color: var(--color-text-main);
}
.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
  color: var(--color-primary);
}
/* Scroll Contrast for Language Switcher */
.navbar-scrolled button[aria-label="Toggle Language"] div[style*="justify-content: space-between"] {
  color: var(--color-text-main) !important;
}
/* Ensure indicators and borders stay visible/primary */
.navbar-scrolled button[aria-label="Toggle Language"] {
  border-color: rgba(0, 0, 0, 0.1) !important;
}
/* Premium Mobile Menu Drawer */
.mobile-drawer {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-left: 1px solid rgba(13, 148, 136, 0.1);
}
/* Premium Glass Button for Mobile Hamburger */
.mobile-menu-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  outline: none;
}
.mobile-menu-btn:hover {
  background: rgba(13, 148, 136, 0.08);
  /* Hover with patina tint */
  transform: scale(1.05);
  border-color: rgba(13, 148, 136, 0.2);
}
.mobile-menu-btn:active {
  transform: scale(0.95);
}
/* ==========================================================================
   EXPERIENCE WRAPPED UTILITIES
   ========================================================================== */
.wrapped-container {
  --wrapped-primary-glow: color-mix(in srgb, var(--wrapped-primary) 30%, transparent);
  --wrapped-secondary-glow: color-mix(in srgb, var(--wrapped-secondary) 30%, transparent);

  /* Dynamic branding for text - subtle tint of the primary color */
  --color-text-main: color-mix(in srgb, #ffffff 90%, var(--wrapped-primary));
  --color-text-muted: color-mix(in srgb, #ffffff 60%, var(--wrapped-primary));

  /* Apply overrides to the container */
  color: var(--color-text-main);
}
.wrapped-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.wrapped-text-gradient {
  background: linear-gradient(135deg, var(--wrapped-primary), var(--wrapped-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wrapped-button-primary {
  background: var(--wrapped-primary);
  color: #000;
  border-radius: 50px;
  padding: 1.2rem 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 15px 30px var(--wrapped-primary-glow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wrapped-button-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px var(--wrapped-primary-glow);
}
.wrapped-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.wrapped-card:hover {
  border-color: var(--wrapped-primary-glow);
  transform: translateY(-5px);
}.contact-section {
    background-color: var(--color-bg-body);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.1rem;
    color: var(--color-text-main);
    transition: transform 0.2s ease;
}

.detail-item:hover {
    transform: translateX(5px);
}

.detail-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 173, 181, 0.1);
    border: 1px solid rgba(0, 173, 181, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.4rem;
}

.contact-form {
    background-color: var(--color-bg-card);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 173, 181, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--color-primary);
    color: var(--color-bg-body);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all var(--transition-fast);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 173, 181, 0.5);
    filter: brightness(110%);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        align-items: center;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-form {
        padding: 2rem;
        /* Reduced from 3.5rem for mobile */
    }
}

/* Validation Styles */
.input-error {
    border-color: #ff6b6b !important;
}

.error-text {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}/* Article Styles */
.article-page {
    padding: var(--spacing-xl) 0;
    min-height: 80vh;
}

.article-form-container,
.article-list-container {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    border: 1px solid var(--color-border);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.article-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 173, 181, 0.4);
    box-shadow: 0 20px 40px -20px rgba(0, 173, 181, 0.3);
}

.article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--color-border);
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
}

.article-excerpt {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    justify-content: space-between;
}

.stars {
    display: flex;
    gap: 2px;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
    padding: 2px;
}

.star-btn.active,
.star-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.average-rating {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Article Detail */
.article-detail-page {
    padding: var(--spacing-xl) 0;
    color: var(--color-text-main);
    max-width: 900px;
    margin: 0 auto;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: transform 0.2s ease;
}

.btn-back:hover {
    transform: translateX(-5px);
}

.detail-header {
    margin-bottom: 2.5rem;
}

.detail-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.detail-meta {
    color: var(--color-text-muted);
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    align-items: center;
}

.detail-hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--color-border);
}

.audio-player-container {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    border-left: 4px solid var(--color-primary);
    border-top: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.audio-player-container h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.audio-player {
    width: 100%;
    height: 40px;
}

.detail-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-main);
}

.detail-content p {
    margin-bottom: 1.5rem;
}

.detail-actions {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}