/* Mahajana Newsroom — single article (Medium-style). Uses careers.css design tokens. */

.mna-article {
    background: var(--bg);
}

.mna-backbar {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(12px, 2.2vw, 20px) var(--pad-x) 0;
    box-sizing: border-box;
}

.mna-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    padding: 8px 4px 8px 0;
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}

.mna-back:hover {
    color: var(--text-strong);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--gold);
}

.mna-back:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.mna-back__icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.mna-hero {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 40px) var(--pad-x) 0;
}

.mna-hero__frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--gold);
    box-shadow: var(--shadow-card);
    aspect-ratio: 21 / 9;
    background: var(--fill);
}

@media (max-width: 700px) {
    .mna-hero__frame {
        aspect-ratio: 16 / 10;
    }
}

.mna-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mna-sheet {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px) var(--pad-x) clamp(48px, 8vw, 80px);
}

.mna-head {
    margin-bottom: clamp(28px, 5vw, 40px);
}

.mna-kicker {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
    margin: 0 0 12px;
}

.mna-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-strong);
    margin: 0 0 20px;
}

.mna-meta {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-weak);
    line-height: 1.5;
    margin: 0 0 20px;
}

.mna-meta__sep {
    margin: 0 0.35em;
    color: var(--stroke-strong);
}

.mna-meta a {
    color: var(--text-body);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--gold);
}

.mna-meta a:hover {
    color: var(--brand);
}

.mna-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.mna-share__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-weak);
    margin-right: 4px;
}

.mna-share__btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1.5px solid var(--stroke-strong);
    background: var(--bg-card);
    color: var(--text-strong);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.mna-share__btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.mna-share__btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.mna-share__btn svg {
    display: block;
}

.mna-takeaways {
    margin-bottom: clamp(32px, 5vw, 44px);
    padding: 22px 24px 24px;
    border-radius: var(--radius-md);
    background: var(--fill);
    border: 1px solid rgba(201, 161, 59, 0.35);
    box-shadow: var(--shadow-card);
}

.mna-takeaways__h {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0 0 14px;
}

.mna-takeaways ul {
    margin: 0;
    padding-left: 1.15em;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-body);
}

.mna-takeaways li {
    margin-bottom: 8px;
}

.mna-takeaways li:last-child {
    margin-bottom: 0;
}

.mna-prose {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
}

.mna-prose p {
    margin: 0 0 1.25em;
}

.mna-prose p:last-child {
    margin-bottom: 0;
}

.mna-figure {
    margin: clamp(28px, 4vw, 40px) 0;
}

.mna-figure__frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--gold);
    background: var(--fill);
    box-shadow: var(--shadow-card);
}

.mna-figure__img {
    width: 100%;
    height: auto;
    display: block;
}

.mna-figure__cap {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-weak);
    margin: 10px 4px 0;
}

/* Related — maroon band + gold-bordered cards (Latest News pattern) */
.mna-related {
    background: var(--brand);
    padding: var(--section-pad-y) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mna-related__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.mna-related__h {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}

.mna-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 960px) {
    .mna-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .mna-related__grid {
        grid-template-columns: 1fr;
    }
}

.mna-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gold);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s, transform 0.22s;
}

.mna-card:hover {
    box-shadow: var(--shadow-raised);
    transform: translateY(-3px);
}

.mna-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.mna-card__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--fill);
}

.mna-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mna-card__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mna-card__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-strong);
    margin: 0;
    flex: 1;
}

.mna-card__date {
    font-size: 13px;
    color: var(--text-weak);
}

.mna-notfound {
    max-width: 560px;
    margin: 0 auto;
    padding: 80px var(--pad-x);
    text-align: center;
}

.mna-notfound h1 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text-strong);
}

.mna-notfound p {
    color: var(--text-body);
    margin-bottom: 24px;
}
