/* ==========================================================================
   Módulo: Tour & News (Content Split)
   ========================================================================== */

.module-tour-news {
    padding: 80px 0;
    background-color: var(--color-white);
}

.module-tour-news .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.tour-news-grid {
    display: grid;
    grid-template-columns: 2fr 3fr; /* Proporción 40% - 60% */
    gap: 60px;
}

/* Títulos de Sección (Compartidos por ambas columnas) */
.split-section-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.title-separator {
    height: 3px;
    width: 100%;
    background-color: var(--color-primary); /* La línea roja debajo del título */
    margin-bottom: 30px;
}

/* =====================================================
   Columna Izquierda: Video Tour
   ===================================================== */
.video-wrapper {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #000;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Oscurece un poco la imagen para resaltar el botón */
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.video-wrapper:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255,255,255,0.2);
}

.tour-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: var(--text-base);
}

/* =====================================================
   Columna Derecha: News & Updates (Grid 2x2)
   ===================================================== */
.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas de noticias */
    gap: 30px;
    margin-bottom: 30px;
}

.news-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    align-items: flex-start;
}

.news-item:hover .news-title {
    color: var(--color-primary); /* El título cambia al color primario al pasar el mouse */
}

.news-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.news-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.3;
    margin: 0;
    transition: color 0.2s ease;
}

/* Enlace a Blog */
.read-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 800;
    font-size: var(--text-base);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.read-blog-link:hover {
    gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tour-news-grid {
        /* grid-template-columns: 1fr; Colapsa a 1 sola columna */
        padding: 0 20px;
    }
    /* .news-list { */
        /* grid-template-columns: 1fr; Las noticias también se ponen en 1 columna */
    /* } */
}

@media (max-width: 768px) {
    .tour-news-grid {
        grid-template-columns: 1fr; /*Colapsa a 1 sola columna*/
    }
    .news-list {
        grid-template-columns: 1fr; /*Las noticias también se ponen en 1 columna*/
    }
}