/* ---------------------------
   RESET Y TIPOGRAFÍA GENERAL
----------------------------*/
body {
    font-family: "Georgia", "Times New Roman", serif;
    color: #111;
    line-height: 1.6;
    background: #faf9f7;
    margin: 0;
    padding: 0;
}

a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.2s ease;
}

a:hover {
    color: #c20000;
    border-bottom: 1px solid #c20000;
}

/* Contenedor de sección */
.seccion {
    max-width: 100% !important;
    margin: 50px auto;
    padding: 0 20px;
}

/* Línea divisoria tipo revista */
.hr {
    border: 0;
    border-bottom: 2px solid #000;
    margin: 10px 0 30px;
}

/* ---------------------------
   TITULOS
----------------------------*/
.titulo {
    font-size: 3rem;
    font-weight: 700;
    font-family: "Georgia", serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* ---------------------------
   TABLA DE LISTADO DE POSTS
----------------------------*/

.seccion table {
    border-collapse: separate;
    border-spacing: 30px 40px;
}

.seccion td {
    vertical-align: top;
    width: 33%;
}

/* ---------------------------
   TARJETA GENERAL
----------------------------*/
.card {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 0;
    box-shadow: 0 0 0 0;
    transition: box-shadow .2s ease;
}

.card:hover {
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
}

.card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Cuerpo */
.card-body {
    padding: 20px;
}

/* Título small cards */
.card-title,
.card-body h3 {
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0 0 10px;
}

/* Excerpt */
.card-body p {
    color: #444;
    font-size: 1rem;
}

/* Tiempo */
.card-timeago {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

/* ---------------------------
   COLUMNAS GENÉRICAS (DEFAULT)
----------------------------*/
.column img {
    max-width: 100%;
    margin-bottom: 10px;
}

/* ---------------------------
   AUTOR INFO
----------------------------*/
.author-info {
    margin-top: 40px;
    padding: 20px;
    border-top: 2px solid #000;
    background: #fff;
}

.author-info table {
    width: 100%;
}

.author-avatar img {
    border-radius: 50%;
}

.author-bio b {
    font-size: 1.2rem;
    font-family: "Georgia", "Times New Roman", serif;
}

/* ---------------------------
   ESTILO MÁS NEW YORKER
   PARA TITULOS DE ENTRADAS
----------------------------*/

.single-post h1.entry-title {
    font-size: 4rem !important;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-top: 40px;
    text-align: left;
}

/* Subtítulo / extracto */
.single-post .entry-summary,
.single-post .entry-content > p:first-of-type {
    font-size: 1.3rem;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

/* ---------------------------
   HEADER ESTILO REVISTA
----------------------------*/
header.site-header {
    background: #fff;
    border-bottom: 2px solid #000;
    text-align: center;
    padding: 25px 0;
}

header.site-header .site-title a {
    font-size: 3.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 700;
}

/* NAV estilo New Yorker */
header.site-header nav a {
    font-size: 0.9rem;
    margin: 0 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ---------------------------
   IMAGENES DESTACADAS
----------------------------*/
.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}


/* ================================
   HEADER ESTILO THE NEW YORKER
================================ */
.tny-header {
    width: 100%;
    border-bottom: 2px solid #000;
    padding: 20px 0;
    background: #fff;
}

.tny-header-inner {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.tny-logo a {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
}

.tny-nav .tny-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.tny-menu a {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: #000;
}

.tny-actions {
    display: flex;
    gap: 18px;
    align-items: center;
}

.tny-actions .tny-link {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.tny-subscribe {
    padding: 8px 14px;
    border: 2px solid #0077ff;
    font-size: 0.85rem;
    border-radius: 5px;
}



/* =====================================
   SECCIÓN TIPO "THE LEDE" – THE NEW YORKER
===================================== */

.thelede-section {
    max-width: 100% !important;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.thelede-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: "Georgia", "Times New Roman", serif;
    margin-bottom: 5px;
}

.thelede-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    margin-bottom: 40px;
}

.thelede-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.thelede-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #f2f2f2;
}

.thelede-item h3 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.3rem;
    margin: 15px 0 10px;
    line-height: 1.3;
}

.thelede-item p {
    color: #444;
    font-size: 1rem;
}

.thelede-author {
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}


/* Contenedor general del video */
.thelede-video-content {
    width: 100%;
    aspect-ratio: 16/9; /* Mantiene mismo tamaño siempre */
    background: #f0f0f0; /* Fondo neutro si no carga el video */
    overflow: hidden;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    position: relative;
}

/* Ajustar iframes de YouTube o Vimeo */
.thelede-video-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;     /* asegura que el contenido se recorte y ocupe todo */
    object-position: center;
}

/* Ajuste para <video> nativo */
.thelede-video-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* recorte elegante */
    object-position: center;
    border: none;
    border-radius: 0;
}















/* Contenedor general de la sección estilo The Critics */
.ny-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    font-family: "Georgia", "Times New Roman", serif;
}

/* Título principal */
.ny-section .ny-title {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: "Georgia", "Times New Roman", serif;
  margin: 10px 0 10px;
}

/* Subtítulo opcional */
.ny-section .ny-subtitle {
    font-size: 18px;
    color: #555;

}

/* GRID estilo New Yorker */
.ny-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 0 20px;
}

/* Imagen tipo revista */
.ny-item .ny-image {
   width: 100%;
   object-fit: contain;      /* Muestra la imagen COMPLETA sin recortarla */
   object-position: center;
   padding: 5px;             /* Miniatura con margen interno */
   background: #f8f8f8;      /* Fondo suave para imágenes verticales */
   border-radius: 4px;
}

/* Categoria encima del titulo */
.ny-item .ny-category {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #c73535;
    text-transform: uppercase;
    margin: 5px 0 10px;
}

/* Título del artículo */
.ny-item .ny-article-title {
    font-size: 24px;
    font-weight: 600;
    margin: 5px 0 15px;
    line-height: 1.2;
}

/* Extracto */
.ny-item .ny-excerpt {
    font-size: 16px;
    color: #333;
    line-height: 1.45;
    margin-bottom: 15px;
}

/* Autor */
.ny-item .ny-author {
    font-weight: bold;
    font-size: 14px;
}

/* Hover minimal */
.ny-item:hover .ny-article-title {
    text-decoration: underline;
}


/* 📱 Responsivo */
@media (max-width: 992px) {
    .ny-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .ny-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}





/* ========= SECTION TITLE ========= */
.wolo-columnists-title {
    text-align: center;
    font-size: 2.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: "Georgia", "Times New Roman", serif;
    margin: 40px 0 50px;



}

/* ========= GRID ========= */
.wolo-columnists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
}

/* ========= CARD ========= */
.wolo-columnist-card {
    display: flex;
    flex-direction: column;
}

/* ========= IMAGE AREA ========= */
.wolo-columnist-media {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #eee;
}

.wolo-columnist-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Como The New Yorker */
    display: block;
    transition: transform .4s ease;
}

.wolo-columnist-media:hover img {
    transform: scale(1.05);
}

/* ========= TEXT AREA ========= */
.wolo-columnist-meta {
    margin-top: 15px;
}

.wolo-columnist-category {
    font-size: 12px;
    letter-spacing: 1px;
    color: #B40000;
    font-weight: 600;
}

.wolo-columnist-headline {
    font-size: 26px;
    font-family: 'Georgia', serif;
    font-weight: 500;
    margin: 10px 0 15px;
    line-height: 1.2;
}

.wolo-columnist-excerpt {
    font-size: 17px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}

.wolo-columnist-author {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}
