/* ==== Estilos para la zona de noticias “World” / “Desk” ==== */

/* Contenedor principal */
.content_area {
  width: 1200px;
  max-width: 95%;
  margin: 40px auto;
  box-sizing: border-box;
}
.main_content {
  overflow: hidden;
}

/* ===== Columna Izquierda: “From Around the World” ===== */
.left_coloum {
  float: left;
  width: 65%;
  box-sizing: border-box;
}
.single_left_coloum_wrapper {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 30px;
}
.single_left_coloum_wrapper .title {
  font-size: 1.8em;
  text-transform: uppercase;
  margin: 0;
}
.single_left_coloum_wrapper .more {
  float: right;
  font-size: 0.9em;
  color: #ff8c42;
  text-decoration: none;
  line-height: 1.8em;
}
.single_left_coloum_wrapper .more:hover {
  text-decoration: underline;
}

/* Cada noticia de la izquierda */
.single_left_coloum {
  float: left;
  width: 48%;
  margin: 1% 1% 20px;
  box-sizing: border-box;
}
.single_left_coloum img {
  width: 100%;
  border-radius: 6px;
}
.single_left_coloum h3 {
  font-size: 1.2em;
  margin: 10px 0 8px;
}
.single_left_coloum h3 a {
  color: #222;
  text-decoration: none;
}
.single_left_coloum h3 a:hover {
  color: #ff8c42;
}
.single_left_coloum p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
  margin: 0 0 10px;
}
.single_left_coloum .readmore {
  display: inline-block;
  font-weight: bold;
  color: #ff8c42;
  text-decoration: none;
}
.single_left_coloum .readmore:hover {
  text-decoration: underline;
}
.clear {
  clear: both;
}

/* ===== Columna Derecha: “From the Desk” ===== */
.single_right_coloum {
  float: right;
  width: 30%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  box-sizing: border-box;
}
.single_right_coloum .title {
  font-size: 1.8em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.single_right_coloum ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.single_right_coloum li {
  margin-bottom: 20px;
}
.single_cat_right_content h3 {
  font-size: 1.1em;
  margin: 0 0 8px;
}
.single_cat_right_content h3 a {
  color: #222;
  text-decoration: none;
}
.single_cat_right_content h3 a:hover {
  color: #ff8c42;
}
.single_cat_right_content p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
  margin: 0 0 8px;
}
.single_cat_right_content_meta {
  font-size: 0.85em;
  color: #888;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.single_cat_right_content_meta a span {
  font-weight: bold;
  color: #ff8c42;
}
.single_cat_right_content_meta a:hover span {
  text-decoration: underline;
}
.pagination {
  text-align: center;
  margin: 20px 0;
}
.pagination .page-num {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #ddd;
  color: #ff8c42;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.pagination .page-num:hover,
.pagination .page-num.active {
  background: #ff8c42;
  color: #fff;
}

/* ===== Estilos para la zona de Podcasts ===== */
.podcast-section {
  margin-top: 40px;
}
.podcast-section .title {
  font-size: 1.8em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
/* ===== Zona de Podcasts: columna única + estilo del iframe ===== */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr;  /* una sola columna */
  gap: 20px;
}

.podcast-item iframe {
  width: 100%;                /* ocupa todo el ancho */
  height: 152px;              /* altura fija */
  border: none;               /* elimina bordes por defecto */
  border-radius: 12px;        /* mismo radio que tu inline */
}
/* ==== Carrusel de Noticias Destacadas ==== */
.carousel-slider {
  position: relative;
  overflow: hidden;
  height: 600px;
  margin-bottom: 40px;
}
.slides {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}
.slide {
  min-width: 100%;
  position: relative;
  height: 100%;
  color: #fff;
}
.slide-bg {
  position: absolute;
  top:0;left:0;right:0;bottom:0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: auto;
  top: 20%;
  padding: 0 20px;
}
.slide-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
.slide-content p {
  font-size: 1em;
  line-height: 1.5;
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-read {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.btn-read:hover {
  background: #e57617;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2em;
  width: 40px;
  height: 60px;
  cursor: pointer;
  z-index: 3;
}
.prev { left: 10px; }
.next { right: 10px; }
.news-article {
    max-width: 100%;
    margin: 0px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
}

.news-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding-left: 400px;
    padding-right: 400px;
    
}

.news-title {
    font-size: 2.2em;
    color: #222;
    margin-bottom: 10px;
}

.news-date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 20px;
}

.news-body {
    font-size: 1.05em;
    color: #444;
    line-height: 1.7;
}

.footer-section {
    color: #ffffff;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #007BFF;
}


.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background: #ff8c42;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: #dd722f;
}

.social-share {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-share span {
    font-weight: bold;
    color: #555;
}

.social-share a {
    color: #555;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-share a:hover {
    color: #ff8c42;
}

@media (max-width: 768px) {
    .news-header {
        height: 250px;
    }

    .news-title {
        font-size: 1.8em;
    }
}
/* Responsive */
@media (max-width:768px) {
  .carousel-slider { height: 300px; }
  .slide-content h2 { font-size: 1.5em; }
}

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


/* ==== Responsive ==== */
@media (max-width: 1024px) {
  .left_coloum,
  .single_right_coloum {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .single_left_coloum {
    width: 100%;
    margin: 0 0 20px;
  }
}

@media (max-width: 1024px) {
  .news-content {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 768px) {
  .news-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 480px) {
  .news-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-title {
    font-size: 1.5em;
  }

  .news-body {
    font-size: 1em;
  }
}
