:root {
  --primary: #c1121f;
  --primary-dark: #780000;
  --secondary: #003049;
  --accent: #fca311;
  --bg: #ffffff;
  --bg-secondary: #f8f9fa;
  --text: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6c757d;
  --border: #dee2e6;
  --shadow: rgba(0,0,0,0.1);
}

body.dark-mode {
  --bg: #0f172a;
  --bg-secondary: #1e293b;
  --text: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border: #334155;
  --shadow: rgba(0,0,0,0.3);
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

/* === HEADER STICKY === */
.header-top {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s;
  border-bottom: 3px solid var(--primary);
}

.header-top-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.header-left {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  flex-wrap: wrap;
}

.header-date,
.header-time,
.header-weather,
.header-dolar {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  opacity: 0.9;
}

.header-date {
  font-weight: 600;
}

.header-time {
  color: var(--accent);
  font-weight: 700;
}

.header-weather i,
.header-dolar i {
  color: var(--accent);
}

.site-name {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  flex: 1;
}

.dark-toggle {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.dark-toggle:active {
  transform: scale(0.9);
}

/* Responsive header */
@media (max-width: 480px) {
  .header-left {
    font-size: 10px;
    gap: 8px;
  }
  
  .site-name {
    font-size: 12px;
  }
}

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 20px 15px;
  transition: all 0.3s;
}

.hero-section.hidden {
  max-height: 0;
  padding: 0;
  overflow: hidden;
}

.title-search {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.main-title {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subtitle {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 15px;
  font-weight: 300;
}

.search-bar {
  background: white;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-bar i {
  color: var(--text-muted);
  margin-right: 10px;
}

.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: var(--text);
  background: transparent;
}

/* === CATEGORÍAS === */
.categories-nav {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories-nav::-webkit-scrollbar {
  display: none;
}

.category-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

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

/* === TICKER === */
.news-ticker {
  background: var(--secondary);
  color: white;
  height: 35px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.news-ticker.hidden {
  max-height: 0;
}

.ticker-wrapper {
  height: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  height: 100%;
  animation: scroll-ticker 90s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.ticker-item {
  padding: 0 30px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-item:hover {
  color: var(--accent);
}

.ticker-item::before {
  content: "●";
  color: var(--accent);
}

/* === BANNER PUBLICITARIO === */
.top-ad-banner {
  background: var(--bg-secondary);
  padding: 15px;
  position: sticky;
  top: 48px;
  z-index: 999;
  transition: top 0.3s;
  border-bottom: 1px solid var(--border);
}

.top-ad-banner.scrolled {
  top: 48px;
}

.ad-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: white;
  box-shadow: 0 2px 8px var(--shadow);
}

.ad-banner-image {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.ad-banner-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === CONTENIDO PRINCIPAL === */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

/* === CAROUSEL DESTACADAS === */
.featured-carousel {
  margin-bottom: 25px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
}

.featured-item {
  position: relative;
  cursor: pointer;
  background: var(--bg-secondary);
}

.featured-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 20px 15px;
  color: white;
}

.featured-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.featured-title {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 8px;
}

.featured-excerpt {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

/* === GRILLA DE NOTICIAS === */
.news-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Tarjeta Grande */
.news-card-large {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
  transition: transform 0.3s;
  background: var(--bg);
  border: 1px solid var(--border);
}

.news-card-large:active {
  transform: scale(0.98);
}

.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.news-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-title {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text);
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Grid de 2 Columnas */
.news-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.news-card-small {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.news-card-small:active {
  transform: scale(0.98);
}

.news-card-small .news-card-image {
  height: 120px;
}

.news-card-small .news-card-content {
  padding: 12px;
}

.news-card-small .news-title {
  font-size: 14px;
  margin-bottom: 8px;
}

.news-card-small .news-meta {
  font-size: 11px;
}

/* Lista de Noticias */
.news-list {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  padding: 12px;
}

.news-list-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.3s;
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-item:active {
  background: var(--bg-secondary);
}

.news-list-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-list-content {
  flex: 1;
}

.news-list-content .news-category {
  font-size: 9px;
  margin-bottom: 5px;
}

.news-list-content .news-title {
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.news-list-content .news-meta {
  font-size: 11px;
}

/* Tarjeta Publicitaria */
.ad-card {
  background: #fff5e6;
  border: 2px dashed var(--accent);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

body.dark-mode .ad-card {
  background: var(--bg-secondary);
}

.ad-card-badge {
  background: var(--accent);
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.ad-card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.ad-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.ad-card-cta {
  background: var(--accent);
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* === BOTÓN CARGAR MÁS === */
.load-more-container {
  text-align: center;
  margin: 30px 0;
}

.load-more-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(193,18,31,0.3);
}

.load-more-btn:active {
  transform: scale(0.95);
}

/* === FOOTER === */
.footer {
  background: var(--secondary);
  color: white;
  padding: 20px 15px;
  margin-top: 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.social-links a {
  color: white;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:active {
  background: var(--primary);
  transform: scale(0.9);
}

.btn-advertise {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.copyright {
  font-size: 12px;
  opacity: 0.8;
}

/* === BOTÓN FLOTANTE === */
.floating-menu-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(193,18,31,0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.floating-menu-btn:active {
  transform: scale(0.9);
}

.floating-menu-btn.pulsing {
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(193,18,31,0.4);
    background: var(--primary);
  }
  50% {
    box-shadow: 0 4px 30px rgba(255,0,0,0.8);
    background: #ff0000;
  }
}

.live-indicator {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
  border: 2px solid white;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* === MENÚ FLOTANTE === */
.floating-menu {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 280px;
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 4px 30px var(--shadow);
  z-index: 998;
  max-height: 70vh;
  overflow-y: auto;
  border: 1px solid var(--border);
}

.floating-menu-header {
  background: var(--primary);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.floating-menu-header h3 {
  font-size: 16px;
  margin: 0;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.floating-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.floating-menu-list li {
  padding: 15px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
  color: var(--text);
}

.floating-menu-list li:hover {
  background: var(--bg-secondary);
}

.floating-menu-list li i {
  font-size: 18px;
  color: var(--primary);
  width: 20px;
}

.floating-menu-list li span {
  flex: 1;
}

.live-badge {
  background: #ff0000;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  animation: blink 1s infinite;
}

/* === REPRODUCTOR DE RADIO === */
.radio-player {
  background: var(--bg-secondary);
  padding: 15px;
  border-top: 2px solid var(--primary);
}

.player-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}

.live-pulse {
  animation: blink 1s infinite;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn,
.mute-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.volume-slider {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
}

/* === MODALES === */
.article-modal,
.youtube-modal,
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  overflow-y: auto;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.article-modal-content,
.youtube-modal-content,
.contact-modal-content {
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  color: var(--text);
}

/* Header dentro del modal */
.article-modal-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--primary);
}

.article-modal-header .site-name {
  font-weight: 900;
  font-size: 14px;
}

.close-article,
.close-youtube,
.close-contact {
  background: var(--primary);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.close-article:active,
.close-youtube:active,
.close-contact:active {
  transform: scale(0.9);
}

/* Contenido del artículo */
#articleContent {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 15px 80px;
}

.article-header-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.article-category-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.article-title {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--text);
}

.article-meta-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 15px 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 25px;
  font-size: 13px;
  color: var(--text-muted);
}

.article-meta-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-paragraph {
  font-size: 17px;
  line-height: 1.8;
  margin: 20px 0;
  color: var(--text);
  text-align: justify;
}

.article-paragraph:first-of-type:first-letter {
  font-size: 3.5em;
  line-height: 0.9;
  float: left;
  margin: 5px 10px 0 0;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: var(--primary);
}

.article-subtitle {
  font-family: 'Merriweather', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: var(--text);
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

.article-quote {
  background: var(--bg-secondary);
  border-left: 5px solid var(--primary);
  padding: 25px;
  margin: 30px 0;
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
  border-radius: 0 8px 8px 0;
}

.article-quote::before {
  content: """;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.3;
  line-height: 0;
  display: block;
  margin-bottom: 10px;
}

.article-image-block {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
}

.article-image-block img {
  width: 100%;
  display: block;
}

.article-image-caption {
  background: var(--bg-secondary);
  padding: 12px 15px;
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

.article-share {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 25px;
  margin: 40px 0;
  text-align: center;
}

.article-share h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--text);
}

.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  transition: transform 0.3s;
}

.share-btn:active {
  transform: scale(0.95);
}

.share-btn.whatsapp { background: #25d366; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.copy { background: #64748b; }

.related-news-section {
  background: var(--bg-secondary);
  padding: 30px 20px;
  margin: 40px -15px 0;
}

.related-news-section h3 {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text);
}

.related-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.related-news-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 2px 8px var(--shadow);
}

.related-news-card:active {
  transform: scale(0.98);
}

.related-news-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-news-content {
  padding: 10px 10px 10px 0;
  flex: 1;
}

.related-news-content .news-category {
  font-size: 9px;
  margin-bottom: 5px;
}

.related-news-content h4 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
  color: var(--text);
}

.related-news-content .news-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.article-footer {
  background: var(--secondary);
  color: white;
  padding: 20px 15px;
  text-align: center;
}

.article-footer .social-links {
  margin-bottom: 15px;
}

.article-footer .copyright {
  font-size: 12px;
  opacity: 0.8;
}

/* YouTube embed */
.youtube-embed {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
}

.youtube-embed iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 12px;
}

/* Modal de contacto */
.contact-modal-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
  min-height: 100vh;
}

.contact-modal-content h2 {
  margin-bottom: 20px;
  color: var(--text);
}

.contact-modal-content p {
  font-size: 16px;
  margin: 10px 0;
  color: var(--text);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-weight: 700;
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
  .main-title {
    font-size: 36px;
  }
  
  .featured-image {
    height: 400px;
  }
  
  .news-row-2 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .floating-menu {
    width: 320px;
  }
  
  .youtube-embed iframe {
    height: 500px;
  }
}

@media (max-width: 600px) {
  .news-row-2 {
    grid-template-columns: 1fr;
  }
}
