/* Notícias — mesmo padrão Downloads / VIP */
.mu-wrap--news .mu-main,
.mu-wrap--wide.mu-wrap--news .mu-main {
    display: block;
    width: 100%;
    max-width: none;
}

.mu-news-page {
    --mu-news-gold: #d4af37;
    --mu-news-blue: #7eb8e8;
    max-width: min(1200px, 100%);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 2.75rem;
}

.mu-news-hero {
    text-align: center;
    margin: 0.35rem 0 1.4rem;
    padding: clamp(1.35rem, 3vw, 2rem) 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(ellipse 70% 80% at 50% -10%, rgba(91, 159, 212, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(14, 20, 34, 0.78), rgba(8, 12, 22, 0.55));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.mu-news-hero__eyebrow {
    margin: 0 0 0.4rem;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mu-news-gold);
}

.mu-news-hero__title {
    margin: 0;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: clamp(1.7rem, 3.8vw, 2.4rem);
    color: #fff;
}

.mu-news-hero__desc {
    margin: 0.55rem auto 0;
    max-width: 44ch;
    color: var(--mu-text-secondary, #9aa8b8);
    font-size: 0.95rem;
}

.mu-news-hero__desc strong { color: #e8ecf1; }

.mu-news-featured {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.1rem;
    align-items: center;
    margin: 0 0 1.5rem;
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(126, 184, 232, 0.28);
    background: linear-gradient(135deg, rgba(18, 36, 58, 0.92), rgba(8, 14, 26, 0.95));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.mu-news-featured__thumb {
    position: relative;
    z-index: 1;
    display: block;
    width: 112px;
    height: 112px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.28);
    text-decoration: none;
}

.mu-news-featured__thumb img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mu-news-featured__body {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.mu-news-featured__tag {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mu-news-gold);
}

.mu-news-featured__body h2 {
    margin: 0;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: 1.35rem;
    color: #fff;
    line-height: 1.25;
}

.mu-news-featured__body p {
    margin: 0.4rem 0 0;
    color: var(--mu-text-secondary, #9aa8b8);
    font-size: 0.92rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mu-news-featured__body small {
    display: block;
    margin-top: 0.4rem;
    color: rgba(150, 165, 185, 0.75);
    font-size: 0.75rem;
}

.mu-news-featured__btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #7eb8e8, #5b9fd4);
    color: #071018;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 28px rgba(91, 159, 212, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.mu-news-featured__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(91, 159, 212, 0.45);
    color: #071018;
}

.mu-news-section-head {
    text-align: center;
    margin-bottom: 1rem;
}

.mu-news-section-head p {
    margin: 0 0 0.3rem;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mu-news-gold);
}

.mu-news-section-head h2 {
    margin: 0;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    color: #fff;
    font-size: 1.35rem;
}

.mu-news-list {
    display: grid;
    gap: 0.75rem;
}

.mu-news-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.95rem;
    align-items: center;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(10, 16, 28, 0.74);
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.mu-news-row:hover {
    border-color: rgba(126, 184, 232, 0.28);
    transform: translateY(-1px);
}

.mu-news-row__thumb {
    position: relative;
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(91, 159, 212, 0.1);
    text-decoration: none;
    flex-shrink: 0;
}

.mu-news-row__thumb img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mu-news-row__info {
    min-width: 0;
}

.mu-news-row__tag {
    display: inline-block;
    margin-bottom: 0.2rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mu-news-blue);
}

.mu-news-row__info h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}

.mu-news-row__info h3 a {
    color: #fff;
    text-decoration: none;
}

.mu-news-row__info h3 a:hover { color: var(--mu-news-blue); }

.mu-news-row__info p {
    margin: 0.28rem 0 0;
    color: var(--mu-text-secondary, #9aa8b8);
    font-size: 0.86rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mu-news-row__info small {
    display: block;
    margin-top: 0.28rem;
    color: rgba(150, 165, 185, 0.7);
    font-size: 0.72rem;
}

.mu-news-row__btn {
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    border: 1px solid rgba(126, 184, 232, 0.35);
    color: var(--mu-news-blue);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.mu-news-row__btn:hover {
    background: rgba(91, 159, 212, 0.18);
    color: #fff;
}

.mu-news-empty {
    padding: 1.5rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(10, 16, 28, 0.7);
    color: var(--mu-text-secondary, #9aa8b8);
}

.mu-news-empty strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #e8ecf1;
}

.mu-news-empty p { margin: 0; }

/* —— Artigo —— */
.mu-news-page--show {
    max-width: min(860px, 100%);
}

.mu-news-back {
    display: inline-flex;
    margin: 0.2rem 0 0.85rem;
    color: rgba(190, 215, 240, 0.9);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
}

.mu-news-back:hover { color: #fff; }

.mu-news-article {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(14, 22, 36, 0.94), rgba(8, 12, 22, 0.96));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    margin-bottom: 1.35rem;
}

.mu-news-article__cover {
    position: relative;
    width: 100%;
    height: clamp(200px, 28vw, 280px);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mu-news-article__cover img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.mu-news-article__intro {
    padding: 1.15rem 1.25rem 0.25rem;
}

.mu-news-article__tag {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mu-news-gold);
}

.mu-news-article__title {
    margin: 0;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    line-height: 1.2;
    color: #fff;
}

.mu-news-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.55rem 0 0;
    color: rgba(150, 165, 185, 0.85);
    font-size: 0.82rem;
}

.mu-news-article__content {
    padding: 1rem 1.25rem 1.4rem;
}

.mu-news-article__lead {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: #e8f2fc;
}

.mu-news-article__text {
    color: #d5e6f5;
    line-height: 1.7;
    font-size: 0.95rem;
}

.mu-news-article__text p { margin: 0 0 0.9rem; }
.mu-news-article__text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.mu-news-article__external { margin: 1.25rem 0 0; }

.mu-news-article__link-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #7eb8e8, #5b9fd4);
    color: #071018;
    font-weight: 700;
    text-decoration: none;
}

.mu-news-comments {
    padding: 1.25rem 1.2rem 1.4rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(10, 16, 28, 0.74);
}

.mu-news-comments__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.mu-news-comments__item {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.22);
}

.mu-news-comments__message {
    margin: 0;
    color: #e4eef8;
    line-height: 1.5;
}

.mu-news-comments__meta {
    margin: 0.45rem 0 0;
    display: flex;
    gap: 0.4rem;
    color: rgba(150, 165, 185, 0.85);
    font-size: 0.75rem;
}

.mu-news-comments__empty {
    margin: 0;
    text-align: center;
    color: var(--mu-text-secondary, #9aa8b8);
    font-size: 0.9rem;
}

.mu-news-comments__form {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.mu-news-comments__form textarea {
    width: 100%;
    min-height: 110px;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.28);
    color: #e8ecf1;
    resize: vertical;
}

.mu-news-comments__submit {
    justify-self: start;
    padding: 0.75rem 1.2rem;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    color: #071018;
    background: linear-gradient(135deg, #7eb8e8, #5b9fd4);
}

@media (max-width: 720px) {
    .mu-news-featured {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .mu-news-featured__body p {
        -webkit-line-clamp: 3;
    }

    .mu-news-row {
        grid-template-columns: auto 1fr;
    }

    .mu-news-row__btn {
        grid-column: 1 / -1;
        text-align: center;
        justify-content: center;
    }

    .mu-news-article__cover {
        height: 200px;
    }
}
