/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
  font-size: 16px;
}

.ep-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Header */
.ep-hero-header {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('/images/hero_efectopadre.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.ep-hero-content {
  max-width: 800px;
  padding: 60px 20px;
}

.ep-hero-title {
  margin: 0 0 30px 0;
  font-size: 0;
  line-height: 0;
}

.ep-hero-logo {
  height: 80px;
  width: auto;
  display: block;
  filter: invert(1);
}

.ep-hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Cabecera común páginas auxiliares (Nosotros, Contacto, etc.): logo arriba izq + título centrado */
.ep-page-hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('/images/hero_efectopadre.jpg') center/cover no-repeat;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 20px 48px;
}

.ep-page-hero-logo {
  position: absolute;
  top: 24px;
  left: 20px;
  display: block;
  line-height: 0;
  z-index: 2;
}

.ep-page-hero-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: invert(1);
  transition: opacity 0.2s ease;
}

.ep-page-hero-logo:hover {
  opacity: 0.85;
}

.ep-page-hero-title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  color: #fff;
}

/* Hero Nosotros: imagen propia */
.ep-page-hero-nosotros {
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('/images/nosotros.png') center/cover no-repeat;
}

/* Hero Contacto: imagen propia */
.ep-page-hero-contacto {
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('/images/contacto.png') center/cover no-repeat;
}

/* Hero Colaborar: imagen propia */
.ep-page-hero-colaborar {
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('/images/colabora.png') center/cover no-repeat;
}

@media (max-width: 768px) {
  .ep-page-hero {
    min-height: 35vh;
    padding: 20px 16px 40px;
  }
  .ep-page-hero-logo {
    top: 20px;
    left: 16px;
  }
  .ep-page-hero-logo img {
    height: 40px;
  }
}

/* Main Content */
.ep-main {
  padding: 60px 0;
}

/* Layout */
.ep-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Main Column */
.ep-main-column {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Featured Article */
.ep-featured-article {
  margin-bottom: 50px;
}

.ep-featured-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.ep-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
}

.ep-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ep-featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.ep-category-tag {
  background: #ffffff;
  color: #000000;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ep-featured-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.ep-featured-description {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  max-width: 600px;
}

.ep-featured-author {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Articles List */
.ep-articles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Article Card */
.ep-article-card {
  display: flex;
  gap: 25px;
  padding: 35px 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid #000000;
}

.ep-article-card:last-child {
  border-bottom: none;
}

.ep-article-image {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.ep-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%);
}

.ep-article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ep-article-category {
  font-size: 12px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.ep-article-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.3;
  text-decoration: none;
}

.ep-article-title:hover {
  text-decoration: underline;
}

.ep-article-meta {
  font-size: 12px;
  color: #666666;
  margin-bottom: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ep-article-description {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 12px;
}

.ep-article-author {
  font-size: 13px;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sidebar */
.ep-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ep-sidebar-section h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.ep-sidebar-section h3:before,
.ep-sidebar-section h3:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #000000;
}

.ep-sidebar-section h3:before {
  left: 0;
}

.ep-sidebar-section h3:after {
  right: 0;
}

/* Social Masonry */
.ep-social-masonry {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ep-social-post {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 15px;
  transition: all 0.3s ease;
}

.ep-social-post:hover {
  background: #000000;
  color: #ffffff;
}

.ep-social-content p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.ep-social-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ep-social-meta i {
  font-size: 12px;
}

.ep-social-post:hover .ep-social-meta {
  color: #ffffff;
}

/* Stories Full Background */
.ep-stories-full {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ep-story-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.ep-story-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%) contrast(105%) brightness(0.9);
}

.ep-story-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #ffffff;
  text-align: center;
}

.ep-stories-full h3 { display: none; }

.ep-story-title { display: none; }

.ep-story-progress {
  width: 100%;
  height: 4px;
  display: flex;
  gap: 6px; /* separación para el efecto de rayas */
}

.ep-progress-segment {
  flex: 1;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}

.ep-progress-fill {
  height: 100%;
  width: 0%;
  background: #ffffff;
  transition: width 5s linear;
}

/* Posts Gallery */
.ep-posts-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ep-post-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ep-post-item:hover {
  transform: scale(1.05);
}

.ep-post-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%);
}

.ep-post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  padding: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ep-post-item:hover .ep-post-overlay {
  opacity: 1;
}

.ep-post-overlay i {
  font-size: 8px;
}

/* Threads Feed */
.ep-threads-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ep-thread-post {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
}

.ep-thread-post:hover {
  background: #000000;
  color: #ffffff;
}

.ep-thread-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ep-thread-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #000000;
}

.ep-thread-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%);
}

.ep-thread-info {
  flex: 1;
}

.ep-thread-username {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ep-thread-time {
  font-size: 10px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ep-thread-post:hover .ep-thread-time {
  color: #ffffff;
}

.ep-thread-content {
  margin-bottom: 12px;
}

.ep-thread-content p {
  font-size: 12px;
  line-height: 1.4;
  color: #333333;
}

.ep-thread-post:hover .ep-thread-content p {
  color: #ffffff;
}

.ep-thread-actions {
  display: flex;
  gap: 12px;
}

.ep-thread-actions button {
  background: none;
  border: none;
  color: #666666;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.ep-thread-actions button:hover {
  color: #000000;
}

.ep-thread-post:hover .ep-thread-actions button {
  color: #ffffff;
}

.ep-thread-post:hover .ep-thread-actions button:hover {
  color: #cccccc;
}

/* Spotify Embed */
.ep-spotify-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ep-spotify-embed iframe {
  border-radius: 12px;
}

/* Audio embed (mismo tipo y tamaño que bloques sidebar, ej. Spotify 152px) */
.ep-audio-embed {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 152px;
  background: #181818;
  position: relative;
}

.ep-audio-embed audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

/* Con imagen de fondo y sombra encima */
.ep-audio-embed--cover {
  background-image: url('https://static01.nyt.com/images/2022/05/08/arts/08cocomelon01-esp-1/08cocomelon01-superJumbo.jpg?quality=75&auto=webp');
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}

/* Cabecera del podcast propio: logo + título (arriba, sobre la foto) */
.ep-audio-embed-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
}

.ep-audio-embed-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.ep-audio-embed-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  min-width: 0;
}

.ep-audio-embed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
  border-radius: 0;
  pointer-events: none;
}

/* Barra de controles propia (sin descarga; velocidad 1x/1.2x/1.5x/2x) */
.ep-audio-embed-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 2px;
  z-index: 2;
}

.ep-audio-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ep-audio-btn i {
  font-size: 14px;
}

.ep-audio-time {
  color: #fff;
  font-size: 12px;
  min-width: 2ch;
}

.ep-audio-time-sep {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
}

.ep-audio-seek {
  flex: 1;
  min-width: 60px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.ep-audio-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.ep-audio-seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.ep-audio-vol-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.ep-audio-vol-btn {
  padding: 0;
  width: 28px;
  height: 28px;
}

.ep-audio-volume {
  width: 0;
  height: 4px;
  overflow: hidden;
  opacity: 0;
  transition: width 0.2s ease, opacity 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.ep-audio-vol-wrap.is-open .ep-audio-volume {
  width: 60px;
  opacity: 1;
}

.ep-audio-vol-icon {
  color: #fff;
  font-size: 12px;
}

.ep-audio-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.ep-audio-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.ep-audio-speed {
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

.ep-audio-speed:hover {
  opacity: 0.85;
}

/* Tags Cloud */
.ep-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ep-tag {
  background: #f5f5f5;
  color: #000000;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.ep-tag:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* Newsletter */
.ep-newsletter p {
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
}

.ep-newsletter input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #000000;
  font-size: 12px;
  font-family: inherit;
  margin-bottom: 10px;
}

.ep-newsletter button {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ep-newsletter button:hover {
  background: #333333;
}

/* Responsive */
@media (max-width: 768px) {
  .ep-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ep-hero-subtitle {
    font-size: 18px;
  }
  
  .ep-featured-overlay {
    padding: 20px;
  }
  
  .ep-featured-title {
    font-size: 28px;
  }
  
  .ep-article-card {
    flex-direction: column;
    gap: 15px;
  }
  
  .ep-article-image {
    width: 100%;
    height: 200px;
  }
  
  .ep-article-title {
    font-size: 20px;
  }
  
  .ep-posts-gallery {
    grid-template-columns: 1fr;
  }
  
  .ep-stories-full {
    /* Mantiene el aspect-ratio 9:16 automáticamente */
  }
  
  .ep-story-content {
    padding: 15px;
  }
  
  .ep-story-title {
    font-size: 14px;
  }
}

/* Post Styles */
.post-header {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(130%) brightness(0.8);
}

.post-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.post-description {
  font-size: 20px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
}

.post-meta span {
  margin: 0 5px;
}

.badge {
  background-color: #00BBF9 !important;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

.post-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 40px 0 20px 0;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
}

.post-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin: 30px 0 15px 0;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.post-content li {
  margin-bottom: 10px;
}

.image-text-wrapper {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  align-items: flex-start;
}

.post-image-float {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(80%) contrast(130%) brightness(0.8);
  flex-shrink: 0;
}

.table-of-contents {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  position: sticky;
  top: 20px;
}

.table-of-contents h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-of-contents li {
  margin-bottom: 10px;
}

.table-of-contents a {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.table-of-contents a:hover {
  color: #000000;
}

.sources {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.sources h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.source-link {
  display: block;
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.source-link:hover {
  color: #000000;
}

.site-footer {
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
}

.site-footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.site-footer p {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.social-links a {
  color: #95BEC4;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #000000;
}

/* Responsive para posts */
@media (max-width: 768px) {
  .post-title {
    font-size: 36px;
  }
  
  .post-description {
    font-size: 18px;
  }
  
  .post-content {
    font-size: 16px;
  }
  
  .post-content h2 {
    font-size: 28px;
  }
  
  .post-content h3 {
    font-size: 20px;
  }
  
  .image-text-wrapper {
    flex-direction: column;
  }
  
  .post-image-float {
    width: 100%;
    height: 200px;
  }
  
  .table-of-contents {
    position: static;
    margin-top: 40px;
  }
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #000000;
  padding: 20px 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}

.sticky-header.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-header .blog-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-header .blog-logo {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sticky-header .blog-logo:hover {
  opacity: 0.7;
}

.sticky-header .blog-social {
  display: flex;
  gap: 12px;
}

.sticky-header .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.sticky-header .social-icon:hover {
  background: #333333;
  transform: translateY(-2px);
}

.sticky-header .social-icon i {
  font-size: 16px;
}

/* Responsive para sticky header */
@media (max-width: 768px) {
  .sticky-header .blog-header-content {
    padding: 0 15px;
  }
  
  .sticky-header .blog-social {
    gap: 8px;
  }
  
  .sticky-header .social-icon {
    width: 36px;
    height: 36px;
  }
  
  .sticky-header .social-icon i {
    font-size: 14px;
  }
}

/* Footer Hipster */
.blog-footer {
  background: #ffffff;
  border-top: 1px solid #000000;
  margin-top: 100px;
  padding: 80px 0 30px 0;
}

.blog-footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 50px;
}

.blog-footer-logo {
  margin-bottom: 50px;
}

.blog-footer-logo img {
  opacity: 0.9;
}

.blog-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 600px;
  margin: 0 auto;
}

.blog-footer-column h4 {
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-footer-column a {
  display: block;
  color: #666666;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.blog-footer-column a:hover {
  color: #000000;
}

.blog-footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  text-align: center;
}

.blog-footer-bottom p {
  color: #999999;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Responsive para footer */
@media (max-width: 768px) {
  .blog-footer {
    padding: 60px 0 20px 0;
  }
  
  .blog-footer-content {
    padding: 0 15px;
    margin-bottom: 40px;
  }
  
  .blog-footer-logo {
    margin-bottom: 40px;
  }
  
  .blog-footer-logo img {
    height: 60px;
  }
  
  .blog-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }
}

/* Páginas auxiliares (Nosotros, etc.) */
.ep-page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.ep-page-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ep-page-content .post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

.ep-page-content .post-content p {
  margin-bottom: 1.4em;
}

.ep-lead {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.6em !important;
}

@media (max-width: 768px) {
  .ep-page-title {
    font-size: 32px;
  }
  .ep-page-content .post-content {
    font-size: 16px;
  }
  .ep-lead {
    font-size: 18px;
  }
}

/* Legacy compatibility */
.ep-categories {
  display: none;
}

.ep-posts-section {
  display: none;
}

.ep-masonry {
  display: none;
}

.ep-articles-grid {
  display: none;
}