/* =========================================================
   MYTHRA CRAFT — JOURNAL V2 / MASAÜSTÜ
   Eski Journal CSS'i yerine tek parça olarak kullanılacaktır.
   Footer ve global .section genişliği değiştirilmez.
   ========================================================= */

.mythra-content-hub {
    --mj-pink: #ff0099;
    --mj-rose: #fc036b;
    --mj-purple: #922bff;
    --mj-panel: #170812;
    position: relative;
    z-index: 20;
    display: block !important;
    padding-top: 72px !important;
    padding-bottom: 56px !important;
    isolation: isolate;
}

.mythra-content-hub::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 28px;
    right: -16px;
    left: -16px;
    height: 230px;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 0, 153, .08), transparent 32%),
        radial-gradient(circle at 90% 16%, rgba(146, 43, 255, .07), transparent 30%);
}

/* ---------- Journal başlığı ---------- */
.mythra-journal-heading {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
    padding-bottom: 20px;
}

.mythra-journal-heading::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 0, 153, .30) 10%,
        #ff0099 28%,
        #922bff 50%,
        #ff0099 72%,
        rgba(255, 0, 153, .30) 90%,
        transparent 100%);
    background-size: 200% 100%;
    animation: mythraJournalFlow 7s linear infinite;
}

.mythra-journal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #ff72c6;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.mythra-journal-eyebrow i {
    color: var(--mj-pink);
    animation: mythraJournalStar 2.8s ease-in-out infinite;
}

.mythra-journal-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.035em;
    text-shadow: 0 3px 0 rgba(46, 0, 29, .72);
}

.mythra-journal-heading p {
    margin: 9px 0 0;
    color: rgba(255, 235, 248, .64);
    font-size: 14px;
    font-weight: 600;
}

.mythra-journal-status {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(255, 0, 153, .25);
    border-radius: 14px;
    color: rgba(255, 240, 249, .68);
    font-size: 12px;
    font-weight: 750;
    background: linear-gradient(180deg, rgba(31, 11, 27, .97), rgba(12, 5, 11, .99));
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .065),
        inset 0 -3px 0 rgba(0, 0, 0, .34),
        0 8px 18px rgba(0, 0, 0, .18);
}

.mythra-journal-status strong { color: #fff; }

.mythra-journal-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff8c;
    box-shadow: 0 0 0 4px rgba(0, 255, 140, .10), 0 0 12px rgba(0, 255, 140, .46);
    animation: mythraStatusPulse 2.4s ease-in-out infinite;
}

/* ---------- Tam görselli haber kartları ---------- */
.mythra-news-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.mythra-news-card {
    position: relative;
    grid-column: span 4;
    min-width: 0;
    height: 310px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 153, .28);
    border-radius: 23px;
    background: #0d060b;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .06),
        inset 0 -5px 0 rgba(0, 0, 0, .38),
        0 14px 28px rgba(0, 0, 0, .22);
    transition: transform .3s cubic-bezier(.2, .75, .2, 1), border-color .3s ease, box-shadow .3s ease;
    contain: layout paint;
}

.mythra-news-card.is-featured {
    grid-column: span 7;
    height: 390px;
}

.mythra-news-card.is-secondary {
    grid-column: span 5;
    height: 390px;
}

.mythra-news-card:only-child {
    grid-column: 1 / -1;
    height: 430px;
}

.mythra-news-card::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: -65%;
    width: 34%;
    pointer-events: none;
    opacity: 0;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .13), transparent);
}

.mythra-news-media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mythra-news-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.002);
    transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
}

.mythra-news-media-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 3, 7, .02) 26%, rgba(11, 4, 10, .34) 56%, rgba(10, 3, 9, .97) 100%),
        linear-gradient(115deg, rgba(255, 0, 153, .11), transparent 44%);
}

.mythra-news-category {
    position: absolute;
    z-index: 2;
    top: 17px;
    left: 17px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: calc(100% - 34px);
    padding: 8px 11px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 11px;
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: linear-gradient(135deg, rgba(255, 0, 153, .95), rgba(146, 43, 255, .95));
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .22),
        inset 0 -3px 0 rgba(48, 0, 43, .31),
        0 8px 16px rgba(0, 0, 0, .18);
}

.mythra-news-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 58px 22px 20px;
}

.mythra-news-content h3 {
    display: -webkit-box;
    margin: 0 0 15px;
    overflow: hidden;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.24;
    letter-spacing: -.022em;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .72), 0 7px 15px rgba(0, 0, 0, .40);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color .24s ease, transform .3s ease;
}

.mythra-news-card.is-featured .mythra-news-content h3 { font-size: 27px; }
.mythra-news-card.is-secondary .mythra-news-content h3 { font-size: 23px; }

.mythra-news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mythra-news-metrics {
    display: flex;
    gap: 7px;
}

.mythra-news-metrics > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 10px;
    color: rgba(255, 242, 250, .72);
    font-size: 11px;
    font-weight: 850;
    background: rgba(8, 4, 7, .68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), inset 0 -2px 0 rgba(0, 0, 0, .28);
}

.mythra-news-metrics i { color: #ff4cb6; }

.mythra-news-open {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255, 0, 153, .20);
    border-radius: 11px;
    color: #ff7bca;
    font-size: 11px;
    font-weight: 900;
    background: rgba(18, 5, 15, .72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
    transition: gap .22s ease, color .22s ease, background .22s ease;
}

@media (hover: hover) {
    .mythra-news-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 0, 153, .68);
        box-shadow:
            inset 0 2px 0 rgba(255, 255, 255, .08),
            inset 0 -5px 0 rgba(0, 0, 0, .38),
            0 20px 38px rgba(0, 0, 0, .28),
            0 0 22px rgba(255, 0, 153, .11);
    }

    .mythra-news-card:hover::after {
        opacity: 1;
        animation: mythraCardShine .72s ease-out both;
    }

    .mythra-news-card:hover .mythra-news-media > img {
        transform: scale(1.045);
        filter: saturate(1.08) contrast(1.03);
    }

    .mythra-news-card:hover .mythra-news-content h3 {
        color: #ffb1df;
        transform: translateY(-2px);
    }

    .mythra-news-card:hover .mythra-news-open {
        gap: 13px;
        color: #fff;
        background: rgba(255, 0, 153, .16);
    }
}

/* ---------- Sayfalama ---------- */
.mythra-news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.mythra-news-pagination > * {
    padding: 7px !important;
    border: 1px solid rgba(255, 0, 153, .20) !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, rgba(25, 9, 22, .97), rgba(9, 4, 8, .99)) !important;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .055),
        inset 0 -3px 0 rgba(0, 0, 0, .31),
        0 9px 18px rgba(0, 0, 0, .18) !important;
}

.mythra-news-pagination a,
.mythra-news-pagination button,
.mythra-news-pagination span { border-radius: 10px !important; }

.mythra-news-pagination .active,
.mythra-news-pagination [aria-current="page"] {
    color: #fff !important;
    background: linear-gradient(135deg, #ff0099, #922bff) !important;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .21), inset 0 -3px 0 rgba(48, 0, 43, .32) !important;
}

/* ---------- Sosyal medya vitrini ---------- */
.mythra-community-panel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(270px, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 18px;
    padding: 24px 27px;
    overflow: hidden;
    border: 1px solid rgba(146, 43, 255, .34);
    border-radius: 23px;
    background: linear-gradient(110deg, rgba(31, 9, 28, .99), rgba(18, 7, 17, .99) 56%, rgba(26, 8, 32, .99));
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .06),
        inset 0 -5px 0 rgba(0, 0, 0, .35),
        0 14px 28px rgba(0, 0, 0, .20);
}

.mythra-community-panel::before,
.mythra-community-panel::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255, 0, 153, .09);
    border-radius: 50%;
}

.mythra-community-panel::before {
    top: -96px;
    right: 12%;
    width: 250px;
    height: 190px;
    box-shadow: 0 0 0 28px rgba(146, 43, 255, .023), 0 0 0 56px rgba(255, 0, 153, .016);
    animation: mythraSocialFloat 7s ease-in-out infinite;
}

.mythra-community-panel::after {
    bottom: -84px;
    left: 34%;
    width: 170px;
    height: 130px;
    opacity: .55;
    animation: mythraSocialFloat 8.5s ease-in-out infinite reverse;
}

.mythra-community-mark {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 17px;
    color: #fff;
    font-size: 21px;
    background: linear-gradient(145deg, #ff0099, #7e20ff);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, .22),
        inset 0 -5px 0 rgba(48, 0, 54, .34),
        0 9px 17px rgba(0, 0, 0, .20);
}

.mythra-community-copy { position: relative; z-index: 1; }
.mythra-community-copy > span { color: #ff63bd; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.mythra-community-copy h3 { margin: 4px 0 3px; color: #fff; font-size: 21px; font-weight: 900; }
.mythra-community-copy p { margin: 0; color: rgba(255, 235, 248, .60); font-size: 12px; font-weight: 650; }

.mythra-social-links {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    flex-wrap: wrap;
}

.mythra-social-links a {
    --social-gradient: linear-gradient(135deg, #ff0099, #922bff);
    position: relative;
    display: inline-flex;
    min-width: 112px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 13px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    background: var(--social-gradient);
    background-size: 200% 200%;
    background-position: 0% 50%;
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, .20),
        inset 0 -5px 0 rgba(0, 0, 0, .24),
        0 8px 16px rgba(0, 0, 0, .18);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .28);
    transition: transform .24s ease, box-shadow .24s ease, background-position .42s ease;
}

.mythra-social-links a::after {
    content: "";
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -48%;
    width: 32%;
    opacity: 0;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
}

.mythra-social-links a i,
.mythra-x-symbol {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 16px;
}

.mythra-social-links a > span { position: relative; z-index: 1; }

.mythra-social-links .is-instagram {
    --social-gradient: linear-gradient(125deg, #ffb700 0%, #ff00dd 48%, #2200ff 100%);
}

.mythra-social-links .is-discord {
    --social-gradient: linear-gradient(125deg, #0011ff 0%, #0080ff 100%);
}

.mythra-social-links .is-tiktok {
    --social-gradient: linear-gradient(115deg, #000 0%, #050505 60%, #fff 100%);
}

.mythra-social-links .is-youtube {
    --social-gradient: linear-gradient(125deg, #a90018, #ff1839);
}

.mythra-social-links .is-facebook {
    --social-gradient: linear-gradient(125deg, #043a9b, #168cff);
}

.mythra-social-links .is-x {
    --social-gradient: linear-gradient(115deg, #000 0%, #171717 66%, #fff 100%);
}

@media (hover: hover) {
    .mythra-social-links a:hover {
        transform: translateY(-3px) scale(1.025);
        background-position: 100% 50%;
        box-shadow:
            inset 0 3px 0 rgba(255, 255, 255, .24),
            inset 0 -5px 0 rgba(0, 0, 0, .20),
            0 12px 21px rgba(0, 0, 0, .24);
    }

    .mythra-social-links a:hover::after {
        opacity: 1;
        animation: mythraSocialShine .72s ease-out both;
    }
}

/* ---------- Animasyonlar ---------- */
@keyframes mythraJournalFlow {
    from { background-position: 0% 50%; }
    to { background-position: 200% 50%; }
}

@keyframes mythraJournalStar {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.14); }
}

@keyframes mythraStatusPulse {
    0%, 100% { opacity: .72; transform: scale(.92); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes mythraCardShine {
    from { left: -65%; }
    to { left: 132%; }
}

@keyframes mythraSocialShine {
    from { left: -48%; }
    to { left: 128%; }
}

@keyframes mythraSocialFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(13px, 7px, 0); }
}

/* Masaüstü bu turun hedefidir; alt genişliklerde güvenli görünüm. */
@media (max-width: 1279px) {
    .mythra-content-hub { padding-top: 60px !important; }
    .mythra-news-card,
    .mythra-news-card.is-featured,
    .mythra-news-card.is-secondary { grid-column: span 6; height: 340px; }
    .mythra-community-panel { grid-template-columns: auto 1fr; }
    .mythra-social-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 767px) {
    .mythra-journal-heading { align-items: flex-start; flex-direction: column; }
    .mythra-news-grid { grid-template-columns: 1fr; }
    .mythra-news-card,
    .mythra-news-card.is-featured,
    .mythra-news-card.is-secondary { grid-column: 1; height: 300px; }
    .mythra-news-card.is-featured .mythra-news-content h3,
    .mythra-news-card.is-secondary .mythra-news-content h3 { font-size: 20px; }
    .mythra-community-panel { grid-template-columns: 1fr; }
    .mythra-social-links { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .mythra-journal-heading::after,
    .mythra-journal-eyebrow i,
    .mythra-journal-status-dot,
    .mythra-community-panel::before,
    .mythra-community-panel::after { animation: none !important; }

    .mythra-news-card,
    .mythra-news-media > img,
    .mythra-news-content h3,
    .mythra-social-links a { transition: none !important; }
}
/* =========================================================
   MYTHRA JOURNAL — SOSYAL BUTON KENAR VE FOOTER DÜZELTMESİ
   ========================================================= */

/* Sosyal butonlardaki ince renkli dış çizgileri kaldır */
.mythra-social-links a,
.mythra-social-links a:hover,
.mythra-social-links a:focus,
.mythra-social-links a:active {
    border: 0 !important;
    outline: 0 !important;
}

/* Border kalksa da mevcut emboss ve 3D görüntü aynen korunsun */
.mythra-social-links a {
    box-sizing: border-box !important;

    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.20),
        inset 0 -5px 0 rgba(0, 0, 0, 0.24),
        0 8px 16px rgba(0, 0, 0, 0.18) !important;
}

.mythra-social-links a:hover {
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.24),
        inset 0 -5px 0 rgba(0, 0, 0, 0.20),
        0 12px 21px rgba(0, 0, 0, 0.24) !important;
}

/* =========================================================
   RESPONSIVE V2 — JOURNAL
   ========================================================= */
@media (min-width: 768px) and (max-width: 1279px) {
    .mythra-content-hub {
        width: min(1120px, calc(100% - 36px)) !important;
        margin-inline: auto !important;
        padding-top: 52px !important;
    }

    .mythra-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    .mythra-news-card,
    .mythra-news-card.is-featured,
    .mythra-news-card.is-secondary {
        grid-column: auto !important;
        width: 100% !important;
        height: clamp(300px, 38vw, 360px) !important;
    }

    .mythra-community-panel {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 767px) {
    .mythra-content-hub {
        width: min(100% - 28px, 460px) !important;
        margin-inline: auto !important;
        padding-top: 38px !important;
        padding-bottom: 42px !important;
    }

    .mythra-journal-heading {
        gap: 14px !important;
        margin-bottom: 18px !important;
    }

    .mythra-journal-heading h2 {
        font-size: clamp(26px, 8vw, 34px) !important;
    }

    .mythra-journal-status {
        max-width: 100% !important;
        white-space: normal !important;
    }

    .mythra-news-card,
    .mythra-news-card.is-featured,
    .mythra-news-card.is-secondary {
        width: 100% !important;
        height: clamp(280px, 92vw, 340px) !important;
    }

    .mythra-community-panel,
    .mythra-social-links {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Ana sayfada main alanının gereksiz yere footer'ı aşağı itmesini engeller */
main.main:has(.mythra-content-hub) {
    flex-grow: 0 !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

/* Sosyal panel ile footer arasında küçük ve kontrollü boşluk bırak */
main.main:has(.mythra-content-hub) .mythra-content-hub {
    padding-bottom: 30px !important;
}
/* Sosyal medya butonlarını birebir eşitler */
.mythra-social-links:not(.mythra-footer-icon-links) a {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    height: 46px !important;
    flex: 0 0 120px !important;
    padding: 0 12px !important;
    justify-content: center !important;
}

/* Logoların kapladığı alanı da eşitler */
.mythra-social-links:not(.mythra-footer-icon-links) a i,
.mythra-social-links:not(.mythra-footer-icon-links) .mythra-x-symbol {
    width: 18px !important;
    min-width: 18px !important;
    flex: 0 0 18px !important;
    text-align: center !important;
}

/* =========================================================
   MYTHRA JOURNAL — BAĞIMSIZ HABER / ARŞİV DENEYİMİ
   Ana sayfadaki Journal kimliğinin ayrı sayfalara uyarlanmış
   editoryal sürümüdür. Bütün kurallar sayfa sınıfına bağlıdır.
   ========================================================= */

.mythra-journal-page {
    --mjp-pink: #ff0099;
    --mjp-pink-soft: #ff68c2;
    --mjp-rose: #fa126f;
    --mjp-purple: #922bff;
    --mjp-violet: #6324c5;
    --mjp-green: #22e59d;
    --mjp-ink: #09050a;
    --mjp-panel: #130a12;
    --mjp-panel-soft: #1c0c1a;
    --mjp-line: rgba(255, 31, 160, .24);
    --mjp-text: rgba(255, 241, 249, .68);
    position: relative;
    isolation: isolate;
    overflow: clip;
    color: #fff;
}

.mythra-journal-page::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 7% 12%, rgba(255, 0, 153, .09), transparent 24%),
        radial-gradient(circle at 91% 34%, rgba(146, 43, 255, .10), transparent 27%),
        linear-gradient(135deg, transparent 0 49.55%, rgba(255, 36, 158, .028) 49.7% 50.3%, transparent 50.45%);
    background-size: auto, auto, 110px 110px;
}

.mythra-journal-page::after {
    content: "";
    position: absolute;
    z-index: -2;
    right: -105px;
    top: 360px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 40, 165, .15);
    border-radius: 50%;
    pointer-events: none;
    opacity: .8;
    box-shadow:
        0 0 0 34px rgba(146, 43, 255, .018),
        0 0 0 68px rgba(255, 0, 153, .012),
        inset 0 0 0 19px rgba(255, 0, 153, .016);
    animation: mjClosedOrbit 14s ease-in-out infinite;
}

.mj-stage {
    position: relative;
    z-index: 1;
    padding-top: 54px !important;
    padding-bottom: 110px !important;
}

.mythra-journal-page .breadcrumb,
.mythra-journal-page nav[aria-label="breadcrumb"] {
    position: relative;
    z-index: 8;
    margin-bottom: 28px;
}

.mj-stage-shape {
    position: absolute;
    z-index: -1;
    display: block;
    pointer-events: none;
}

.mj-stage-shape--orbit {
    top: 115px;
    right: 4%;
    width: 210px;
    height: 210px;
    border: 1px dashed rgba(255, 76, 181, .19);
    border-radius: 50%;
    box-shadow: inset 0 0 0 24px rgba(145, 34, 235, .022);
    animation: mjOrbitSpin 19s linear infinite;
}

.mj-stage-shape--disc {
    top: 250px;
    left: -84px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    opacity: .36;
    background:
        radial-gradient(circle, transparent 0 31%, rgba(255, 49, 169, .48) 32% 33%, transparent 34% 48%, rgba(147, 44, 255, .36) 49% 50%, transparent 51%),
        conic-gradient(from 45deg, transparent, rgba(255, 0, 153, .30), transparent 35%, rgba(146, 43, 255, .27), transparent 72%);
    animation: mjDiscBreathe 9s ease-in-out infinite;
}

.mj-stage-shape--diamond {
    top: 610px;
    right: 17%;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255, 55, 171, .13);
    transform: rotate(45deg);
    animation: mjDiamondDrift 11s ease-in-out infinite;
}

.mj-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--mjp-pink-soft);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.mj-kicker::before {
    content: "";
    width: 25px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mjp-pink), var(--mjp-purple));
    box-shadow: 0 0 13px rgba(255, 0, 153, .46);
}

/* ---------- Journal arşiv sahnesi ---------- */
.mj-archive-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    align-items: center;
    gap: 58px;
    min-height: 355px;
    margin-bottom: 28px;
    padding: 52px 58px;
    overflow: hidden;
    border: 1px solid rgba(255, 27, 157, .24);
    border-radius: 26px;
    background:
        radial-gradient(circle at 82% 40%, rgba(146, 43, 255, .20), transparent 25%),
        linear-gradient(125deg, rgba(36, 10, 34, .97), rgba(12, 6, 12, .99) 62%);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .05),
        inset 0 -6px 0 rgba(0, 0, 0, .33),
        0 20px 45px rgba(0, 0, 0, .24);
}

.mj-archive-hero::before {
    content: "";
    position: absolute;
    right: 215px;
    bottom: -110px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 61, 175, .10);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(146, 43, 255, .025), 0 0 0 68px rgba(255, 0, 153, .016);
    pointer-events: none;
    animation: mjClosedOrbit 10s ease-in-out infinite;
}

.mj-archive-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 30%;
    width: 1px;
    height: 100%;
    opacity: .45;
    background: linear-gradient(transparent, rgba(255, 49, 170, .32), transparent);
    transform: rotate(17deg);
}

.mj-archive-hero__copy { position: relative; z-index: 2; max-width: 760px; }

.mj-archive-hero h1 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(43px, 5vw, 72px);
    font-weight: 950;
    line-height: .96;
    letter-spacing: -.055em;
    text-shadow: 0 5px 0 rgba(45, 0, 30, .72), 0 13px 28px rgba(0, 0, 0, .34);
}

.mj-archive-hero h1 em {
    color: transparent;
    font-style: normal;
    background: linear-gradient(90deg, #ff2ca5, #d35cff 48%, #ff63bc);
    -webkit-background-clip: text;
    background-clip: text;
}

.mj-archive-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--mjp-text);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.75;
}

.mj-archive-orb {
    position: relative;
    z-index: 3;
    display: grid;
    width: 180px;
    height: 180px;
    place-content: center;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255, 90, 190, .26);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 153, .15), rgba(16, 7, 15, .96) 65%);
    box-shadow: inset 0 0 0 13px rgba(255, 255, 255, .018), 0 14px 32px rgba(0, 0, 0, .24);
}

.mj-archive-orb strong { font-size: 43px; font-weight: 950; line-height: 1; }
.mj-archive-orb small { margin-top: 7px; color: rgba(255, 225, 242, .55); font-size: 8px; font-weight: 900; letter-spacing: .15em; text-align: center; }

.mj-archive-orb__ring {
    position: absolute;
    inset: -11px;
    border: 1px dashed rgba(255, 76, 181, .40);
    border-radius: 50%;
    animation: mjOrbitSpin 13s linear infinite;
}

.mj-archive-orb__ring--inner {
    inset: 19px;
    border-style: solid;
    border-color: rgba(146, 43, 255, .24) transparent rgba(255, 0, 153, .26);
    animation-direction: reverse;
    animation-duration: 9s;
}

.mj-archive-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 16px;
}

.mj-story-card {
    position: relative;
    grid-column: span 4;
    min-width: 0;
    height: 355px;
    overflow: hidden;
    border: 1px solid rgba(255, 31, 160, .27);
    border-radius: 22px;
    background: #0b060a;
    box-shadow: inset 0 2px 0 rgba(255,255,255,.05), inset 0 -5px 0 rgba(0,0,0,.36), 0 16px 34px rgba(0,0,0,.23);
    contain: layout paint;
    transition: transform .28s cubic-bezier(.22,1,.36,1), border-color .25s ease, box-shadow .25s ease;
}

.mj-story-card.is-lead { grid-column: span 7; grid-row: span 2; height: 590px; }
.mj-story-card.is-side { grid-column: span 5; height: 287px; }
.mj-story-card:only-child { grid-column: 1 / -1; height: 570px; }

.mj-story-card__link { position: relative; display: block; width: 100%; height: 100%; color: #fff; }
.mj-story-card__image { width: 100%; height: 100%; object-fit: cover; transform: scale(1.002); transition: transform .65s cubic-bezier(.2,.75,.2,1), filter .3s ease; }

.mj-story-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,3,8,.02) 20%, rgba(10,3,9,.30) 51%, rgba(8,3,8,.98) 100%),
        linear-gradient(115deg, rgba(255,0,153,.15), transparent 46%);
}

.mj-story-card__serial {
    position: absolute;
    z-index: 2;
    top: 9px;
    right: 14px;
    color: rgba(255,255,255,.17);
    font-size: 52px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.06em;
}

.mj-story-card__category {
    position: absolute;
    z-index: 3;
    top: 17px;
    left: 17px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: calc(100% - 95px);
    min-height: 34px;
    padding: 0 11px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: linear-gradient(135deg, #ff078f, #8e29f2);
    box-shadow: inset 0 2px rgba(255,255,255,.24), inset 0 -3px rgba(53,0,48,.36), 0 7px 15px rgba(0,0,0,.20);
}

.mj-story-card__body { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: block; padding: 85px 21px 20px; }
.mj-story-card.is-lead .mj-story-card__body { padding: 120px 34px 31px; }

.mj-story-card__eyebrow { display: block; margin-bottom: 8px; color: #ff68c2; font-size: 8px; font-weight: 950; letter-spacing: .15em; }

.mj-story-card h2 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: -.025em;
    text-shadow: 0 3px 0 rgba(0,0,0,.75), 0 8px 18px rgba(0,0,0,.4);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mj-story-card.is-lead h2 { max-width: 720px; font-size: clamp(31px, 3vw, 45px); }
.mj-story-card.is-side h2 { font-size: 18px; }

.mj-story-card__summary { display: -webkit-box; max-width: 680px; margin-top: 12px; overflow: hidden; color: rgba(255,239,248,.70); font-size: 12px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.mj-story-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 17px; }
.mj-story-card__metrics, .mj-file-strip__metrics { display: flex; gap: 7px; }
.mj-story-card__metrics > span, .mj-file-strip__metrics > span { display: inline-flex; align-items: center; gap: 6px; min-height: 32px; padding: 0 9px; border: 1px solid rgba(255,255,255,.09); border-radius: 9px; color: rgba(255,242,250,.70); font-size: 10px; font-weight: 850; background: rgba(7,3,7,.72); }
.mj-story-card__metrics i, .mj-file-strip__metrics i { color: #ff4db6; }

/* Exact Mythra pink emboss button. */
.mj-emboss-button {
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255,140,210,.58);
    border-radius: 12px;
    color: #fff !important;
    font-size: 10px;
    font-weight: 950;
    background-color: #ff0099;
    background-image: linear-gradient(180deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.09) 34%, transparent 54%, rgba(105,0,63,.28) 100%);
    box-shadow: inset 0 2px rgba(255,255,255,.40), inset 2px 0 rgba(255,255,255,.12), inset -2px 0 rgba(105,0,63,.18), inset 0 -3px rgba(105,0,63,.40), 0 3px 0 #a80065, 0 8px 18px rgba(255,0,153,.22), 0 0 22px rgba(255,0,153,.10);
    text-shadow: 0 1px 1px rgba(80,0,48,.50);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
}

.mj-emboss-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -70%;
    left: -55%;
    width: 36%;
    height: 240%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
    transform: skewX(-22deg);
    transition: left .5s cubic-bezier(.22,1,.36,1);
}

.mj-emboss-button:hover { color: #fff !important; border-color: rgba(255,210,237,.9); filter: saturate(1.08) brightness(1.05); transform: translateY(-2px); box-shadow: inset 0 2px rgba(255,255,255,.56), inset 0 -3px rgba(105,0,63,.42), 0 4px 0 #9a005d, 0 10px 22px rgba(255,0,153,.30), 0 0 34px rgba(255,0,153,.20); }
.mj-emboss-button:hover::before { left: 125%; }
.mj-emboss-button:active { filter: brightness(.94); transform: translateY(2px) scale(.98); box-shadow: inset 0 4px 7px rgba(91,0,55,.46), inset 0 -1px rgba(255,255,255,.34), 0 1px 0 #870052, 0 3px 8px rgba(255,0,153,.14); }

.mj-story-card__action { min-height: 36px; padding-inline: 12px; }

@media (hover: hover) {
    .mj-story-card:hover { border-color: rgba(255,50,171,.68); transform: translateY(-5px); box-shadow: inset 0 2px rgba(255,255,255,.07), inset 0 -5px rgba(0,0,0,.36), 0 24px 44px rgba(0,0,0,.30), 0 0 28px rgba(255,0,153,.10); }
    .mj-story-card:hover .mj-story-card__image { filter: saturate(1.08) contrast(1.03); transform: scale(1.055); }
}

/* ---------- Kategori / etiket dosya şeritleri ---------- */
.mj-filter-hero {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(0,1fr) auto;
    align-items: center;
    gap: 34px;
    min-height: 255px;
    margin-bottom: 23px;
    padding: 38px 46px;
    overflow: hidden;
    border: 1px solid rgba(255,31,160,.25);
    border-radius: 25px;
    background: linear-gradient(125deg, rgba(35,10,33,.97), rgba(12,6,12,.99) 64%);
    box-shadow: inset 0 2px rgba(255,255,255,.05), inset 0 -5px rgba(0,0,0,.32), 0 18px 40px rgba(0,0,0,.23);
}

.mj-filter-hero::after { content: ""; position: absolute; right: 12%; bottom: -100px; width: 210px; height: 210px; border: 1px solid rgba(255,45,168,.12); border-radius: 50%; box-shadow: 0 0 0 32px rgba(146,43,255,.02), 0 0 0 64px rgba(255,0,153,.013); animation: mjClosedOrbit 11s ease-in-out infinite; }

.mj-filter-emblem { position: relative; z-index: 2; display: grid; width: 128px; height: 128px; place-items: center; border: 1px solid rgba(255,90,190,.34); border-radius: 50%; color: #fff; font-size: 31px; background: radial-gradient(circle, rgba(255,0,153,.25), rgba(17,7,16,.98) 67%); box-shadow: inset 0 0 0 12px rgba(255,255,255,.018); }
.mj-filter-emblem span { position: absolute; inset: -10px; border: 1px dashed rgba(255,73,181,.42); border-radius: 50%; animation: mjOrbitSpin 10s linear infinite; }
.mj-filter-emblem i { text-shadow: 0 0 18px rgba(255,0,153,.48); }

.mj-filter-hero__copy { position: relative; z-index: 2; }
.mj-filter-hero h1 { margin: 9px 0 8px; color: #fff; font-size: clamp(38px,4vw,59px); font-weight: 950; line-height: 1; letter-spacing: -.05em; text-shadow: 0 4px 0 rgba(48,0,31,.65); }
.mj-filter-hero p { margin: 0; color: var(--mjp-text); font-size: 13px; font-weight: 650; }

.mj-filter-count { position: relative; z-index: 2; display: flex; align-items: center; gap: 11px; min-width: 130px; padding: 15px 17px; border: 1px solid rgba(255,53,172,.25); border-radius: 14px; background: rgba(11,6,11,.76); box-shadow: inset 0 2px rgba(255,255,255,.04), inset 0 -3px rgba(0,0,0,.28); }
.mj-filter-count strong { color: #fff; font-size: 29px; font-weight: 950; }
.mj-filter-count span { color: rgba(255,225,243,.48); font-size: 7px; font-weight: 900; letter-spacing: .12em; }

.mj-filter-feed { display: grid; gap: 14px; }
.mj-file-strip { position: relative; display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr); min-height: 265px; overflow: hidden; border: 1px solid rgba(255,31,160,.22); border-radius: 20px; background: linear-gradient(120deg, rgba(25,10,24,.95), rgba(9,6,10,.99)); box-shadow: inset 0 2px rgba(255,255,255,.045), inset 0 -5px rgba(0,0,0,.32), 0 14px 31px rgba(0,0,0,.20); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; contain: layout paint; }
.mj-file-strip:nth-child(even) { grid-template-columns: minmax(0,1.28fr) minmax(270px,.72fr); }
.mj-file-strip:nth-child(even) .mj-file-strip__media { grid-column: 2; }
.mj-file-strip:nth-child(even) .mj-file-strip__body { grid-column: 1; grid-row: 1; }

.mj-file-strip__media { position: relative; display: block; min-height: 265px; overflow: hidden; }
.mj-file-strip__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 54%, rgba(15,7,14,.72) 100%); }
.mj-file-strip:nth-child(even) .mj-file-strip__media::after { background: linear-gradient(-90deg, transparent 54%, rgba(15,7,14,.72) 100%); }
.mj-file-strip__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.2,1), filter .25s ease; }
.mj-file-strip__index { position: absolute; z-index: 2; right: 14px; bottom: 9px; color: rgba(255,255,255,.25); font-size: 47px; font-weight: 950; line-height: 1; }

.mj-file-strip__body { position: relative; display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 30px 35px; }
.mj-file-strip__body::after { content: ""; position: absolute; right: 8%; top: 14%; width: 78px; height: 78px; border: 1px solid rgba(255,50,170,.10); border-radius: 50%; box-shadow: 0 0 0 16px rgba(145,34,234,.016); }
.mj-file-strip__label { display: inline-flex; align-items: center; gap: 7px; color: #ff62bd; font-size: 8px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.mj-file-strip__label i { font-size: 5px; color: var(--mjp-green); box-shadow: 0 0 10px rgba(34,229,157,.5); }
.mj-file-strip h2 { position: relative; z-index: 1; margin: 9px 0 8px; font-size: clamp(22px,2.2vw,32px); font-weight: 950; line-height: 1.12; letter-spacing: -.03em; }
.mj-file-strip h2 a { color: #fff; }
.mj-file-strip p { position: relative; z-index: 1; display: -webkit-box; margin: 0; overflow: hidden; color: var(--mjp-text); font-size: 11px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.mj-file-strip__footer { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 13px; margin-top: 19px; }

@media (hover:hover) {
    .mj-file-strip:hover { border-color: rgba(255,55,174,.59); transform: translateY(-4px); box-shadow: inset 0 2px rgba(255,255,255,.05), inset 0 -5px rgba(0,0,0,.32), 0 21px 39px rgba(0,0,0,.27), 0 0 24px rgba(255,0,153,.08); }
    .mj-file-strip:hover .mj-file-strip__media img { filter: saturate(1.08); transform: scale(1.045); }
}

.mj-pagination { display: flex; justify-content: center; margin-top: 25px; }
.mj-pagination > * { padding: 7px !important; border: 1px solid rgba(255,0,153,.20) !important; border-radius: 15px !important; background: linear-gradient(180deg,rgba(25,9,22,.97),rgba(9,4,8,.99)) !important; box-shadow: inset 0 2px rgba(255,255,255,.055), inset 0 -3px rgba(0,0,0,.31), 0 9px 18px rgba(0,0,0,.18) !important; }
.mj-pagination a, .mj-pagination button, .mj-pagination span { border-radius: 9px !important; }
.mj-pagination .active, .mj-pagination [aria-current="page"] { color: #fff !important; background: linear-gradient(135deg,#ff0099,#922bff) !important; box-shadow: inset 0 2px rgba(255,255,255,.21), inset 0 -3px rgba(48,0,43,.32) !important; }

.mj-empty-state { position: relative; display: grid; min-height: 190px; place-items: center; gap: 15px; padding: 30px; border: 1px solid var(--mjp-line); border-radius: 19px; background: rgba(13,7,13,.92); }
.mj-empty-state.is-compact { min-height: 0; margin-top: 18px; padding: 18px; }
.mj-empty-state__icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: #fff; font-size: 19px; background: linear-gradient(145deg,#ff0099,#8123ee); box-shadow: inset 0 3px rgba(255,255,255,.22), inset 0 -5px rgba(49,0,54,.34), 0 8px 17px rgba(0,0,0,.22); }

/* ---------- Yazı kapağı ---------- */
.mj-post-hero {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid rgba(255,35,167,.34);
    border-radius: 28px;
    background: #0b050a;
    box-shadow: inset 0 2px rgba(255,255,255,.055), inset 0 -6px rgba(0,0,0,.42), 0 24px 55px rgba(0,0,0,.28);
    isolation: isolate;
}
.mj-post-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.04); }
.mj-post-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,3,7,.94) 0%, rgba(9,3,8,.72) 44%, rgba(7,2,7,.24) 100%), linear-gradient(0deg,rgba(8,3,7,.76),transparent 65%); }
.mj-post-hero__shade::after { content: ""; position: absolute; inset: 0; opacity: .26; background-image: radial-gradient(circle at 1px 1px, rgba(255,112,203,.27) 1px, transparent 1.4px); background-size: 27px 27px; mask-image: linear-gradient(90deg,#000,transparent 70%); }
.mj-post-hero__content { position: absolute; z-index: 3; left: clamp(30px,6vw,78px); bottom: clamp(34px,7vw,74px); width: min(760px,calc(100% - 60px)); }
.mj-post-hero__category { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 9px 12px; border: 1px solid rgba(255,76,184,.32); border-radius: 9px; color: #fff; font-size: 9px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; background: rgba(18,6,16,.86); box-shadow: inset 0 2px rgba(255,255,255,.06); }
.mj-post-hero__category i { color: #ff39ad; }
.mj-post-hero h1 { margin: 13px 0 20px; color: #fff; font-size: clamp(40px,6vw,78px); font-weight: 950; line-height: .98; letter-spacing: -.055em; text-wrap: balance; text-shadow: 0 5px 0 rgba(48,0,31,.62), 0 12px 30px rgba(0,0,0,.32); }
.mj-post-hero__circle { position: absolute; z-index: 2; border: 1px solid rgba(255,74,182,.24); border-radius: 50%; pointer-events: none; will-change: transform; }
.mj-post-hero__circle--one { top: -105px; right: -55px; width: 330px; height: 330px; box-shadow: 0 0 0 37px rgba(255,0,153,.025), 0 0 0 75px rgba(132,42,255,.016); animation: mjHeroCircle 12s ease-in-out infinite; }
.mj-post-hero__circle--two { top: 88px; right: 145px; width: 86px; height: 86px; background: rgba(255,0,153,.055); animation: mjHeroCircleSmall 8s ease-in-out infinite; }

/* ---------- Yazı gövdesi ---------- */
.mj-post-layout { display: grid; grid-template-columns: 255px minmax(0,1fr); align-items: start; gap: 19px; margin-top: 19px; }
.mj-post-rail { position: sticky; top: 24px; display: grid; gap: 13px; }
.mj-author-card, .mj-post-numbers, .mj-post-tags { border: 1px solid rgba(255,40,167,.20); border-radius: 17px; background: linear-gradient(145deg,rgba(27,10,25,.96),rgba(9,5,9,.99)); box-shadow: inset 0 2px rgba(255,255,255,.045), inset 0 -4px rgba(0,0,0,.30), 0 12px 24px rgba(0,0,0,.17); }
.mj-author-card { display: grid; grid-template-columns: 52px minmax(0,1fr) 34px; align-items: center; gap: 10px; padding: 13px; }
.mj-author-card__avatar { display: grid; width: 52px; height: 52px; place-items: center; overflow: hidden; border: 2px solid rgba(255,61,178,.52); border-radius: 13px; background: #170812; box-shadow: inset 0 2px rgba(255,255,255,.12), 0 6px 14px rgba(0,0,0,.24); }
.mj-author-avatar { width: 100% !important; height: 100% !important; object-fit: cover; }
.mj-author-card__copy { min-width: 0; }
.mj-author-card__copy small, .mj-post-tags__title { display: block; color: #ff50b6; font-size: 7px; font-weight: 950; letter-spacing: .14em; }
.mj-author-card__copy strong { display: block; overflow: hidden; margin-top: 4px; color: #fff; font-size: 12px; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
.mj-author-card > a { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,55,174,.30); border-radius: 9px; color: #fff; background: linear-gradient(145deg,#ff159f,#9b21ec); box-shadow: inset 0 2px rgba(255,255,255,.22), inset 0 -3px rgba(63,0,57,.30), 0 3px 0 #6d085f; transition: transform .2s ease, filter .2s ease; }
.mj-author-card > a:hover { filter: brightness(1.09); transform: translateY(-2px); }
.mj-author-card > a:active { transform: translateY(2px); box-shadow: inset 0 3px 5px rgba(60,0,51,.42), 0 1px 0 #6d085f; }
.mj-post-numbers { display: grid; grid-template-columns: repeat(2,1fr); overflow: hidden; }
.mj-post-numbers > div { display: grid; min-height: 110px; place-items: center; align-content: center; gap: 4px; padding: 15px; text-align: center; }
.mj-post-numbers > div + div { border-left: 1px solid rgba(255,255,255,.07); }
.mj-post-numbers i { color: #ff45b1; font-size: 12px; }
.mj-post-numbers strong { color: #fff; font-size: 23px; font-weight: 950; }
.mj-post-numbers small { color: var(--mjp-muted); font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.mj-post-tags { padding: 18px; }
.mj-post-tags > div { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.mj-post-tags a { padding: 7px 9px; border: 1px solid rgba(255,62,178,.18); border-radius: 8px; color: rgba(255,226,244,.70); font-size: 8px; font-weight: 850; background: rgba(6,3,6,.46); transition: color .2s ease,border-color .2s ease,transform .2s ease; }
.mj-post-tags a:hover { color: #fff; border-color: rgba(255,62,178,.56); transform: translateY(-2px); }
.mj-article-paper { position: relative; min-width: 0; padding: clamp(28px,5vw,64px); overflow: hidden; border: 1px solid rgba(255,39,167,.21); border-radius: 21px; color: var(--mjp-text); background: linear-gradient(145deg,rgba(24,10,23,.97),rgba(8,5,8,.995) 70%); box-shadow: inset 0 2px rgba(255,255,255,.045), inset 0 -5px rgba(0,0,0,.31), 0 17px 34px rgba(0,0,0,.20); }
.mj-article-paper::after { content: ""; position: absolute; top: -90px; right: -90px; width: 245px; height: 245px; border: 1px solid rgba(255,54,174,.11); border-radius: 50%; box-shadow: 0 0 0 25px rgba(139,45,246,.018), 0 0 0 54px rgba(255,0,153,.012); animation: mjClosedOrbit 13s ease-in-out infinite; pointer-events: none; }
.mj-article-paper__mark { position: absolute; top: 24px; right: 28px; color: rgba(255,45,171,.12); font-size: 70px; }
.mj-article-paper__intro { position: relative; z-index: 2; margin-bottom: 26px; padding: 14px 17px 14px 20px; border-left: 3px solid #ff149f; border-radius: 0 12px 12px 0; color: #fff; font-size: 12px; font-weight: 850; background: linear-gradient(90deg,rgba(255,0,153,.12),transparent); }
.mj-article-content { position: relative; z-index: 2; color: rgba(255,239,248,.74); font-size: 13px; line-height: 1.85; }
.mj-article-content h1,.mj-article-content h2,.mj-article-content h3,.mj-article-content h4 { margin: 1.35em 0 .55em; color: #fff; font-weight: 950; line-height: 1.2; letter-spacing: -.025em; }
.mj-article-content a { color: #ff52b9; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(255,82,185,.38); text-underline-offset: 3px; }
.mj-article-content img { height: auto; max-width: 100%; border: 1px solid rgba(255,50,172,.24); border-radius: 15px; box-shadow: 0 13px 30px rgba(0,0,0,.24); }
.mj-article-content blockquote { margin: 24px 0; padding: 20px 22px; border: 1px solid rgba(255,49,173,.19); border-left: 4px solid #ff159f; border-radius: 0 13px 13px 0; color: #fff; background: rgba(255,0,153,.055); }

/* ---------- Yorum sahnesi ---------- */
.mj-discussion, .mj-related { content-visibility: auto; contain-intrinsic-size: 780px; margin-top: 35px; }
.mj-discussion { position: relative; padding: clamp(24px,4vw,45px); overflow: hidden; border: 1px solid rgba(255,36,167,.27); border-radius: 24px; background: linear-gradient(145deg,rgba(29,10,27,.97),rgba(8,5,8,.995)); box-shadow: inset 0 2px rgba(255,255,255,.045), inset 0 -5px rgba(0,0,0,.32), 0 20px 39px rgba(0,0,0,.22); }
.mj-discussion::before { content: ""; position: absolute; left: -92px; top: 40%; width: 230px; height: 230px; border: 1px dashed rgba(255,59,179,.13); border-radius: 50%; animation: mjOrbitSpin 18s linear infinite; }
.mj-discussion__header { position: relative; z-index: 2; display: grid; grid-template-columns: 84px minmax(0,1fr) 85px; align-items: center; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.075); }
.mj-discussion__symbol { position: relative; display: grid; width: 76px; height: 76px; place-items: center; border: 1px solid rgba(255,65,181,.31); border-radius: 50%; color: #fff; font-size: 22px; background: radial-gradient(circle,rgba(255,0,153,.27),rgba(12,5,11,.98) 67%); }
.mj-discussion__symbol span { position: absolute; inset: -7px; border: 1px dashed rgba(255,83,190,.34); border-radius: 50%; animation: mjOrbitSpin 9s linear infinite reverse; }
.mj-discussion__header h2,.mj-section-heading h2 { margin: 5px 0 4px; color: #fff; font-size: clamp(25px,3.3vw,40px); font-weight: 950; line-height: 1; letter-spacing: -.04em; }
.mj-discussion__header p { margin: 0; color: var(--mjp-muted); font-size: 10px; }
.mj-discussion__count { display: grid; place-items: center; align-content: center; width: 78px; height: 78px; border: 1px solid rgba(255,55,177,.25); border-radius: 18px; background: rgba(8,4,8,.75); box-shadow: inset 0 2px rgba(255,255,255,.04), inset 0 -4px rgba(0,0,0,.32); }
.mj-discussion__count strong { color: #ff50b8; font-size: 25px; font-weight: 950; }
.mj-discussion__count span { color: var(--mjp-muted); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.mj-reply-composer { position: relative; z-index: 2; margin-top: 24px; padding: 17px; border: 1px solid rgba(255,42,170,.18); border-radius: 17px; background: rgba(7,4,7,.68); box-shadow: inset 0 2px rgba(255,255,255,.025); }
.mj-reply-form { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 13px; }
.mj-reply-form__field > span { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 9px; color: #ff58ba; font-size: 8px; font-weight: 950; letter-spacing: .11em; }
.mj-reply-form textarea { width: 100%; min-height: 120px; resize: vertical; border: 1px solid rgba(255,54,175,.20) !important; border-radius: 12px !important; color: #fff !important; background: rgba(10,5,9,.96) !important; box-shadow: inset 0 2px 7px rgba(0,0,0,.27) !important; }
.mj-reply-form textarea:focus { border-color: rgba(255,59,179,.67) !important; box-shadow: 0 0 0 3px rgba(255,0,153,.08), inset 0 2px 7px rgba(0,0,0,.27) !important; }
.mj-recaptcha { grid-column: 1/-1; max-width: 100%; overflow: auto; }
.mj-reply-submit { min-width: 170px; }
.mj-comment-stream { position: relative; z-index: 2; display: grid; gap: 13px; margin-top: 24px; }
.mj-comment-stream::before { content: ""; position: absolute; top: 11px; bottom: 11px; left: 50%; width: 1px; background: linear-gradient(transparent,rgba(255,47,173,.28),transparent); }
.mj-comment { position: relative; display: grid; grid-template-columns: 49px minmax(0,1fr) 37px; align-items: start; gap: 11px; width: calc(50% + 12px); }
.mj-comment.is-alternate { justify-self: end; grid-template-columns: 37px minmax(0,1fr) 49px; }
.mj-comment.is-alternate .mj-comment__avatar { grid-column: 3; grid-row: 1; }
.mj-comment.is-alternate .mj-comment__bubble { grid-column: 2; grid-row: 1; }
.mj-comment.is-alternate .mj-comment__number { grid-column: 1; grid-row: 1; }
.mj-comment__avatar { display: grid; width: 46px; height: 46px; place-items: center; overflow: hidden; border: 2px solid rgba(255,56,177,.48); border-radius: 12px; background: #160811; }
.mj-comment-avatar { width: 100% !important; height: 100% !important; object-fit: cover; }
.mj-comment__bubble { min-width: 0; padding: 15px 16px; border: 1px solid rgba(255,43,170,.17); border-radius: 14px; background: rgba(9,5,9,.88); box-shadow: inset 0 2px rgba(255,255,255,.03), inset 0 -3px rgba(0,0,0,.28); }
.mj-comment__bubble header { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.055); }
.mj-comment__bubble header a { color: #fff; font-size: 10px; font-weight: 900; }
.mj-comment__bubble time { color: var(--mjp-muted); font-size: 8px; }
.mj-comment__bubble p { margin: 10px 0 0; overflow-wrap: anywhere; color: rgba(255,238,247,.72); font-size: 10px; line-height: 1.65; }
.mj-comment__number { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,57,178,.23); border-radius: 50%; color: #ff53b8; font-size: 9px; font-weight: 950; background: #10070e; }

/* ---------- İlişkili dosyalar ---------- */
.mj-section-heading { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 17px; padding: 0 4px; }
.mj-section-heading__disc { width: 82px; height: 82px; border: 1px solid rgba(255,57,177,.18); border-radius: 50%; box-shadow: inset 0 0 0 14px rgba(255,0,153,.025), 0 0 0 10px rgba(132,43,255,.012); animation: mjDiscBreathe 8s ease-in-out infinite; }
.mj-related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.mj-related-card { min-width: 0; overflow: hidden; border: 1px solid rgba(255,38,168,.21); border-radius: 18px; background: linear-gradient(150deg,rgba(25,10,23,.97),rgba(8,5,8,.995)); box-shadow: inset 0 2px rgba(255,255,255,.045), inset 0 -4px rgba(0,0,0,.30), 0 13px 26px rgba(0,0,0,.18); transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease; contain: layout paint; }
.mj-related-card__media { position: relative; display: block; height: 190px; overflow: hidden; }
.mj-related-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%,rgba(9,4,8,.78)); }
.mj-related-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.75,.2,1); }
.mj-related-card__media span { position: absolute; z-index: 2; right: 12px; bottom: 8px; color: rgba(255,255,255,.34); font-size: 37px; font-weight: 950; }
.mj-related-card__body { padding: 18px; }
.mj-related-card__body small { color: #ff4db4; font-size: 7px; font-weight: 950; letter-spacing: .13em; }
.mj-related-card h3 { margin: 8px 0 7px; font-size: 17px; font-weight: 950; line-height: 1.18; }
.mj-related-card h3 a { color: #fff; }
.mj-related-card p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--mjp-muted); font-size: 9px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.mj-related-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 13px; color: #ff54b9; font-size: 9px; font-weight: 900; }
@media (hover:hover) { .mj-related-card:hover { border-color: rgba(255,52,174,.58); transform: translateY(-4px); box-shadow: inset 0 2px rgba(255,255,255,.05), inset 0 -4px rgba(0,0,0,.30), 0 20px 36px rgba(0,0,0,.25), 0 0 24px rgba(255,0,153,.08); } .mj-related-card:hover img { transform: scale(1.05); } }

/* ---------- Kapalı döngülü, GPU-dostu hareketler ---------- */
@keyframes mjClosedOrbit { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(12px,-10px,0) scale(1.035); } }
@keyframes mjOrbitSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes mjDiscBreathe { 0%,100% { transform: scale(1); opacity: .72; } 50% { transform: scale(1.09); opacity: 1; } }
@keyframes mjDiamondDrift { 0%,100% { transform: translate3d(0,0,0) rotate(45deg); } 50% { transform: translate3d(-13px,11px,0) rotate(53deg); } }
@keyframes mjHeroCircle { 0%,100% { transform: translate3d(0,0,0) rotate(0); } 50% { transform: translate3d(-16px,13px,0) rotate(8deg); } }
@keyframes mjHeroCircleSmall { 0%,100% { transform: translate3d(0,0,0) scale(1); opacity: .65; } 50% { transform: translate3d(8px,-12px,0) scale(1.12); opacity: 1; } }

/* ---------- Tablet ---------- */
@media (min-width:768px) and (max-width:1279px) {
    .mythra-journal-page .mj-stage { width: min(100% - 40px,1120px); }
    .mj-archive-hero { min-height: 390px; padding: 45px; }
    .mj-archive-orb { width: 170px; height: 170px; }
    .mj-archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .mj-story-card.is-lead { grid-column: 1/-1; min-height: 450px; }
    .mj-story-card.is-side,.mj-story-card.is-standard { min-height: 350px; }
    .mj-filter-hero { grid-template-columns: 120px minmax(0,1fr); gap: 24px; padding: 32px; }
    .mj-filter-emblem { width: 108px; height: 108px; }
    .mj-filter-count { grid-column: 2; width: max-content; }
    .mj-file-strip,.mj-file-strip:nth-child(even) { grid-template-columns: minmax(230px,.7fr) minmax(0,1.3fr); }
    .mj-file-strip:nth-child(even) .mj-file-strip__media { grid-column: 1; }
    .mj-file-strip:nth-child(even) .mj-file-strip__body { grid-column: 2; }
    .mj-post-hero { min-height: 500px; }
    .mj-post-layout { grid-template-columns: 215px minmax(0,1fr); }
    .mj-author-card { grid-template-columns: 44px minmax(0,1fr); }
    .mj-author-card__avatar { width: 44px; height: 44px; }
    .mj-author-card > a { grid-column: 1/-1; width: 100%; }
    .mj-comment { width: calc(58% + 8px); }
    .mj-related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

/* ---------- Mobil ---------- */
@media (max-width:767px) {
    .mythra-journal-page { overflow-x: clip; }
    .mythra-journal-page .mj-stage { width: min(100% - 24px,620px); padding-top: 22px; padding-bottom: 55px; }
    .mj-stage-shape--orbit { width: 170px; height: 170px; right: -100px; }
    .mj-stage-shape--disc { left: -85px; width: 150px; height: 150px; }
    .mj-stage-shape--diamond { display: none; }
    .mj-archive-hero { display: block; min-height: 440px; padding: 31px 24px; }
    .mj-archive-hero::before { width: 240px; height: 240px; right: -110px; bottom: -65px; }
    .mj-archive-hero__copy { max-width: 100%; }
    .mj-archive-hero h1 { font-size: clamp(39px,13vw,58px); }
    .mj-archive-hero p { max-width: 95%; font-size: 11px; }
    .mj-archive-orb { right: 21px; bottom: 20px; width: 125px; height: 125px; }
    .mj-archive-orb strong { font-size: 36px; }
    .mj-archive-grid { grid-template-columns: 1fr; gap: 13px; }
    .mj-story-card.is-lead,.mj-story-card.is-side,.mj-story-card.is-standard { grid-column: auto; min-height: 390px; }
    .mj-story-card__body { padding: 22px; }
    .mj-story-card.is-lead h2,.mj-story-card h2 { font-size: 25px; }
    .mj-story-card__summary { -webkit-line-clamp: 2; }
    .mj-story-card__footer { align-items: flex-end; }
    .mj-filter-hero { grid-template-columns: 78px minmax(0,1fr); gap: 17px; min-height: 260px; padding: 24px 20px; }
    .mj-filter-emblem { width: 76px; height: 76px; font-size: 20px; }
    .mj-filter-hero h1 { font-size: clamp(30px,10vw,43px); overflow-wrap: anywhere; }
    .mj-filter-count { grid-column: 1/-1; min-width: 0; width: 100%; }
    .mj-file-strip,.mj-file-strip:nth-child(even) { grid-template-columns: 1fr; min-height: 0; }
    .mj-file-strip:nth-child(even) .mj-file-strip__media,.mj-file-strip__media { grid-column: 1; grid-row: 1; min-height: 220px; }
    .mj-file-strip:nth-child(even) .mj-file-strip__body,.mj-file-strip__body { grid-column: 1; grid-row: 2; padding: 24px 20px; }
    .mj-file-strip__media::after,.mj-file-strip:nth-child(even) .mj-file-strip__media::after { background: linear-gradient(transparent 55%,rgba(12,5,11,.75)); }
    .mj-file-strip__footer { align-items: flex-end; }
    .mj-post-hero { min-height: 520px; border-radius: 20px; }
    .mj-post-hero__shade { background: linear-gradient(0deg,rgba(7,3,7,.97) 0%,rgba(8,3,7,.72) 55%,rgba(7,2,7,.23)); }
    .mj-post-hero__content { left: 22px; bottom: 27px; width: calc(100% - 44px); }
    .mj-post-hero h1 { font-size: clamp(34px,11vw,52px); }
    .mj-post-hero__circle--one { width: 220px; height: 220px; }
    .mj-post-layout { grid-template-columns: 1fr; }
    .mj-post-rail { position: static; grid-template-columns: 1fr; }
    .mj-author-card { grid-template-columns: 48px minmax(0,1fr) 34px; }
    .mj-author-card > a { grid-column: auto; width: 34px; }
    .mj-article-paper { padding: 28px 21px; }
    .mj-discussion { padding: 23px 17px; border-radius: 20px; }
    .mj-discussion__header { grid-template-columns: 58px minmax(0,1fr); gap: 13px; }
    .mj-discussion__symbol { width: 54px; height: 54px; font-size: 16px; }
    .mj-discussion__count { grid-column: 1/-1; width: 100%; height: 56px; grid-auto-flow: column; justify-content: center; gap: 8px; }
    .mj-reply-form { grid-template-columns: 1fr; }
    .mj-reply-submit { width: 100%; min-width: 0; }
    .mj-comment-stream::before { left: 22px; }
    .mj-comment,.mj-comment.is-alternate { justify-self: stretch; grid-template-columns: 45px minmax(0,1fr); width: 100%; }
    .mj-comment.is-alternate .mj-comment__avatar,.mj-comment__avatar { grid-column: 1; grid-row: 1; }
    .mj-comment.is-alternate .mj-comment__bubble,.mj-comment__bubble { grid-column: 2; grid-row: 1; }
    .mj-comment__number,.mj-comment.is-alternate .mj-comment__number { position: absolute; left: 25px; top: 39px; z-index: 2; width: 23px; height: 23px; grid-column: auto; font-size: 7px; }
    .mj-section-heading__disc { width: 55px; height: 55px; flex: 0 0 auto; }
    .mj-related-grid { grid-template-columns: 1fr; }
    .mj-related-card__media { height: 210px; }
}

@media (prefers-reduced-motion:reduce) {
    .mythra-journal-page *, .mythra-journal-page *::before, .mythra-journal-page *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* =========================================================
   JOURNAL V2 — TAM GÖRSEL + AKAN DAİRESEL SAYFA DESENİ
   ========================================================= */

/* Eski çizgili/yörüngeli sayfa arka planının yerini, kesintisiz
   döngüde çapraz akan daire ve halka dokusu alır. */
.mythra-journal-page {
    background:
        radial-gradient(circle at 12% 18%,rgba(255,0,153,.075),transparent 24%),
        radial-gradient(circle at 88% 62%,rgba(133,42,246,.075),transparent 27%),
        #260014;
}

.mythra-journal-page::before {
    inset: -120px;
    opacity: .62;
    background-image:
        radial-gradient(circle at center, rgba(255,45,172,.18) 0 2px, transparent 2.6px),
        radial-gradient(circle at center, transparent 0 7px, rgba(139,43,246,.10) 7.5px 8.5px, transparent 9px);
    background-position: 0 0, 28px 28px;
    background-size: 56px 56px, 112px 112px;
    will-change: transform;
    animation: mjJournalPatternFlow 34s linear infinite;
}

.mythra-journal-page::after,
.mythra-journal-page .mj-stage-shape {
    display: none;
}

/* Hareketli kalan tek genel zemin, yukarıdaki akan daire dokusudur.
   Kartların içindeki yorum/istatistik gibi işlevsel animasyonlar korunur. */
.mj-archive-hero::before,
.mj-filter-hero::after,
.mj-article-paper::after {
    animation: none;
}

.mj-discussion::before {
    display: none;
}

@keyframes mjJournalPatternFlow {
    0% { transform: translate3d(0,0,0); }
    100% { transform: translate3d(112px,112px,0); }
}

/* Başlık artık görselin üzerinde değildir; kapak kendi oranında
   ve hiçbir köşesi kırpılmadan ayrı bir medya alanında görünür. */
.mythra-journal-post .mj-post-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(145deg,rgba(29,10,27,.98),rgba(8,5,8,.995));
}

.mythra-journal-post .mj-post-hero__content {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    max-width: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px 15px;
    padding: clamp(28px,5vw,58px);
    border-bottom: 1px solid rgba(255,44,172,.18);
    background:
        radial-gradient(circle at 91% 15%,rgba(146,43,255,.13),transparent 27%),
        linear-gradient(125deg,rgba(36,10,34,.98),rgba(11,6,11,.995));
}

.mythra-journal-post .mj-post-hero__content::after {
    content: "";
    position: absolute;
    right: clamp(22px,6vw,75px);
    top: 50%;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(255,60,179,.16);
    border-radius: 50%;
    box-shadow: 0 0 0 16px rgba(146,43,255,.018), inset 0 0 0 11px rgba(255,0,153,.018);
    transform: translateY(-50%);
    pointer-events: none;
}

.mythra-journal-post .mj-post-hero__category,
.mythra-journal-post .mj-post-hero .mj-kicker,
.mythra-journal-post .mj-post-hero h1 {
    position: relative;
    z-index: 2;
}

.mythra-journal-post .mj-post-hero h1 {
    width: 100%;
    max-width: 930px;
    margin: 6px 0 0;
    font-size: clamp(42px,6vw,76px);
}

.mj-post-hero__media {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #070407;
}

.mythra-journal-post .mj-post-hero__image {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    filter: none;
}

.mythra-journal-post .mj-post-hero__shade,
.mythra-journal-post .mj-post-hero__circle,
.mythra-journal-post .mj-post-hero__meta {
    display: none;
}

@media (max-width:767px) {
    .mythra-journal-post .mj-post-hero { min-height: 0; }
    .mythra-journal-post .mj-post-hero__content { left: auto; bottom: auto; width: 100%; padding: 25px 20px 27px; }
    .mythra-journal-post .mj-post-hero__content::after { right: -24px; width: 70px; height: 70px; }
    .mythra-journal-post .mj-post-hero h1 { font-size: clamp(34px,11vw,50px); }
}

@media (prefers-reduced-motion:reduce) {
    .mythra-journal-page::before { animation: none !important; }
}
