/*-------------------------------------------------------------------------*/
/* Noticias - Estilo Quel'dorei
/*-------------------------------------------------------------------------*/
.news.cover {
    --news-bg: linear-gradient(135deg, rgba(10, 20, 5, 0.95) 0%, rgba(20, 30, 0, 0.92) 100%);
    --news-border: 1px solid rgba(179, 255, 0, 0.25);
    --news-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    --news-accent: #b3ff00;
    --news-accent-light: rgba(179, 255, 0, 0.2);
    --news-secondary: #aaff00;
    --text-primary: #ffffff;
    --text-secondary: rgba(220, 255, 220, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --card-bg: linear-gradient(135deg, rgba(15, 20, 0, 0.9) 0%, rgba(25, 30, 0, 0.85) 100%);
    --card-border: 1px solid rgba(179, 255, 0, 0.3);

    background: var(--news-bg);
    border-radius: 16px;
    border: var(--news-border);
    box-shadow: var(--news-shadow);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.news.cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.02"/></svg>') repeat;
    pointer-events: none;
}

/* Encabezado de noticias */
.news .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(179, 255, 0, 0.3);
}

.news .title h1 {
    color: var(--text-primary);
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.news .title h1 span {
    color: var(--news-accent);
    text-shadow: 0 0 25px rgba(179, 255, 0, 0.7);
}

.news .title ul {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news .title ul li a {
    width: 40px;
    height: 40px;
    background: rgba(179, 255, 0, 0.15);
    border: 1px solid rgba(179, 255, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news .title ul li a:hover {
    background: var(--news-accent);
    border-color: var(--news-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 255, 0, 0.4);
}

.news .title ul li a i {
    font-size: 16px;
}

/* Listado de noticias */
.newsList {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Noticias principales */
.newsList_main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.newsMain {
    display: block;
    text-decoration: none;
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.newsMain:hover {
    transform: translateY(-5px);
    border-color: var(--news-accent);
    box-shadow: 0 15px 35px rgba(179, 255, 0, 0.25);
}

.newsMain_wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.newsMain_thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.newsMain_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.newsMain:hover .newsMain_thumb img {
    transform: scale(1.05);
}

.newTag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4c6600, #334d00);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 102, 0, 0.4);
    z-index: 2;
}

.newsMain_content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.newsMain_content h2 {
    color: var(--text-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-main-text p {
    color: var(--text-secondary);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(179, 255, 0, 0.2);
}

.newsBtn {
    background: linear-gradient(135deg, var(--news-accent), #4c6600);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsMain:hover .newsBtn {
    background: linear-gradient(135deg, #4c6600, var(--news-accent));
    transform: translateX(5px);
}

.news-footer span:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}

.news-footer svg {
    width: 16px;
    height: 16px;
    fill: var(--news-accent);
}

/* Noticias secundarias */
.newsList_sec {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsSec {
    display: block;
    text-decoration: none;
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.newsSec:hover {
    transform: translateY(-3px);
    border-color: var(--news-secondary);
    box-shadow: 0 10px 25px rgba(179, 255, 0, 0.2);
}

.newsSec_wrapper {
    padding: 20px;
}

.newsSec_thumb {
    position: relative;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.newsSec_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.newsSec:hover .newsSec_thumb img {
    transform: scale(1.05);
}

.newsSec_date {
    color: var(--news-secondary);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.newsSec_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsSec_content h3 {
    color: var(--text-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.newsSec .newsBtn {
    background: linear-gradient(135deg, var(--news-secondary), #4c6600);
    padding: 6px 15px;
    font-size: 0.8rem;
}

.newsSec:hover .newsBtn {
    background: linear-gradient(135deg, #4c6600, var(--news-secondary));
}

.newsSec_readMore {
    height: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179, 255, 0, 0.1);
    border: 2px dashed rgba(179, 255, 0, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.newsSec_readMore:hover {
    background: rgba(179, 255, 0, 0.1);
    border-color: var(--news-accent);
}

.newsSec_readMore .newsBtn {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--news-accent);
}

.newsSec_readMore:hover .newsBtn {
    background: var(--news-accent);
    color: white;
}

/* Noticia individual */
.news-single {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.news-single-header {
    margin-bottom: 30px;
}

.news-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date svg {
    width: 16px;
    height: 16px;
    fill: var(--news-accent);
}

.news-author a {
    color: var(--news-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-author a:hover {
    color: var(--news-accent);
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-tags .tag {
    background: rgba(179, 255, 0, 0.15);
    color: var(--news-accent);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(179, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.news-tags .tag:hover {
    background: rgba(179, 255, 0, 0.25);
    transform: translateY(-2px);
}

.news-single-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.news-single-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.news-carousel {
    border-radius: 8px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.news-single-video {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.news-single-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.news-single-content {
    color: var(--text-secondary);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.news-single-content p {
    margin-bottom: 1.5em;
}

.news-single-content h1,
.news-single-content h2,
.news-single-content h3,
.news-single-content h4 {
    color: var(--text-primary);
    font-family: 'Cinzel', serif;
    margin-top: 2em;
    margin-bottom: 1em;
}

.news-single-content a {
    color: var(--news-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(179, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.news-single-content a:hover {
    color: var(--news-accent);
    border-bottom-color: var(--news-accent);
}

.news-single-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(179, 255, 0, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.news-comments-link .nice_button {
    background: linear-gradient(135deg, var(--news-accent), #4c6600);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-comments-link .nice_button:hover {
    background: linear-gradient(135deg, #4c6600, var(--news-accent));
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(179, 255, 0, 0.4);
}

.news-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-share span {
    color: var(--text-muted);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.discord {
    background: #7289da;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sección de comentarios */
.news-comments-section {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.news-comments-section h3 {
    color: var(--text-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(179, 255, 0, 0.3);
}

.news-comments {
    min-height: 200px;
}

/* Paginación */
.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.news-pagination .pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-pagination .pagination li a,
.news-pagination .pagination li span {
    display: block;
    padding: 10px 18px;
    background: rgba(179, 255, 0, 0.1);
    border: 1px solid rgba(179, 255, 0, 0.3);
    border-radius: 6px;
    color: var(--text-secondary);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pagination .pagination li a:hover {
    background: var(--news-accent);
    border-color: var(--news-accent);
    color: white;
    transform: translateY(-2px);
}

.news-pagination .pagination li.active span {
    background: linear-gradient(135deg, var(--news-accent), #4c6600);
    border-color: var(--news-accent);
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .newsList {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsList_main {
        order: 1;
    }

    .newsList_sec {
        order: 2;
    }
}

@media (max-width: 768px) {
    .news.cover {
        padding: 25px;
    }

    .news .title {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .news .title h1 {
        font-size: 2rem;
    }

    .news-single {
        padding: 25px;
    }

    .newsMain_thumb {
        height: 250px;
    }

    .newsMain_content h2 {
        font-size: 1.5rem;
    }

    .news-single-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-item img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .news.cover {
        padding: 20px;
    }

    .newsMain_thumb {
        height: 200px;
    }

    .newsMain_content {
        padding: 20px;
    }

    .newsMain_content h2 {
        font-size: 1.3rem;
    }

    .news-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .news-single {
        padding: 20px;
    }

    .news-single-meta {
        flex-direction: column;
        gap: 10px;
    }

    .news-carousel .carousel-item img {
        height: 250px;
    }

    .news-comments-section {
        padding: 25px;
    }
}