.noticia-detail-section {
    max-width: 800px;
    margin: 120px auto 60px auto;
    padding: 0 20px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.noticia-header {
    text-align: center;
    margin-bottom: 40px;
}

.noticia-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.categoria {
    color: var(--color-acento);
    font-weight: 700;
}

.data {
    color: rgba(255, 255, 255, 0.6);
}

.noticia-title {
    font-family: var(--fuente-destacados);
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
    color: var(--color-texto);
}

.noticia-featured-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.noticia-featured-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.noticia-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    white-space: pre-line;
}

.noticia-content p {
    margin-bottom: 1.5rem;
}

.noticia-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: var(--color-acento);
}

.noticia-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 -2.5rem 0;
}

.noticia-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}

.noticia-ingredientes {
    float: left;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--color-acento);
    padding: 25px;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.noticia-ingredientes h3 {
    font-family: var(--fuente-destacados);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--color-acento);
}

.ingredientes-lista {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-line;
}

/* Estilo para las listas dentro de ingredientes (si usas <ul> o <ol>) */
.ingredientes-lista ul {
    padding-left: 20px;
    margin: 0;
}

.ingredientes-lista li {
    margin-bottom: 8px;
}

.noticia-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.back-link {
    color: var(--color-texto);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.back-link:hover {
    opacity: 1;
    color: var(--color-acento);
    transform: translateX(-5px);
}

@media screen and (max-width: 900px) {
    .noticia-title {
        font-size: 1.2rem;
    }

    .noticia-content h3 {
        font-size: 1.1rem;
        margin: 2rem 0 -2.5rem 0;
    }

    .noticia-detail-section {
        margin-top: 100px;
    }

    .noticia-ingredientes {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
        box-sizing: border-box;
    }
}