:root {
    --mt-primary: #0190AD;
    --mt-primary-dark: #017f99;
    --mt-accent: #0190AD;
    --mt-highlight: #ffe500;
    --mt-text: #121212;
    --mt-muted: #666666;
    --mt-border: #dedede;
    --mt-bg: #ffffff;
    --mt-soft: #f5f5f5;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--mt-text);
    background: var(--mt-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--mt-accent);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.mt-container {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.mt-header {
    background: #fff;
    border-bottom: 1px solid var(--mt-border);
    position: relative;
    z-index: 20;
}

.mt-topbar {
    background: var(--mt-primary-dark);
    color: #fff;
    font-size: 13px;
}

.mt-topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mt-topbar a,
.mt-top-menu a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-right: 15px;
}

.mt-topbar a:hover {
    color: var(--mt-highlight);
}

.mt-top-menu,
.mt-primary-menu,
.mt-secondary-menu,
.mt-footer-menu,
.mt-default-menu,
.mt-mega-wp-menu,
.mt-mega-wp-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mt-top-menu,
.mt-primary-menu,
.mt-secondary-menu,
.mt-default-menu {
    display: flex;
    align-items: center;
}

.mt-subscribe-link {
    background: rgba(255,255,255,.14);
    padding: 0 12px;
    border-radius: 999px;
}

.mt-brand-area {
    background: var(--mt-primary);
    color: #fff;
    padding: 24px 0 20px;
}

.mt-brand-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.mt-logo-text {
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -2.4px;
    line-height: .92;
    text-transform: uppercase;
}

.mt-logo-img img {
    max-height: 88px;
    width: auto;
}

.mt-tagline {
    margin-top: 8px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    font-weight: 700;
}

.mt-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 4px;
    min-width: 320px;
}

.mt-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    padding: 9px 12px;
}

.mt-search input::placeholder {
    color: rgba(255,255,255,.7);
}

.mt-search button,
.mt-button {
    border: 0;
    background: var(--mt-highlight);
    color: var(--mt-primary);
    font-weight: 900;
    border-radius: 999px;
    padding: 9px 16px;
    cursor: pointer;
}

.mt-mainnav {
    background: var(--mt-primary);
    border-top: 1px solid rgba(255,255,255,.22);
}

.mt-nav-flex {
    min-height: 48px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
}

.mt-primary-wrap {
    min-width: 0;
    flex: 1;
}

.mt-primary-menu,
.mt-default-menu {
    overflow-x: auto;
    scrollbar-width: thin;
}

.mt-primary-menu > li,
.mt-default-menu > li {
    flex: 0 0 auto;
}

.mt-primary-menu a,
.mt-default-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 0 16px;
    border-left: 1px solid rgba(255,255,255,.23);
}

.mt-primary-menu a:hover,
.mt-default-menu a:hover,
.mt-primary-menu .current-menu-item > a {
    background: var(--mt-accent);
    color: #fff;
}

.mt-primary-menu .sub-menu {
    display: none;
}

.mt-mobile-toggle,
.mt-mega-toggle {
    border: 0;
    cursor: pointer;
    font-weight: 900;
    align-self: center;
}

.mt-mobile-toggle {
    display: none;
    width: 42px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 21px;
}

.mt-mega-toggle {
    background: var(--mt-highlight);
    color: var(--mt-primary);
    border-radius: 999px;
    padding: 9px 16px;
    white-space: nowrap;
}

.mt-mega-menu {
    display: none;
    background: var(--mt-primary-dark);
    color: #fff;
    padding: 28px 0 30px;
    border-top: 1px solid rgba(255,255,255,.22);
}

.mt-mega-menu.active {
    display: block;
}

.mt-mega-grid,
.mt-mega-wp-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.mt-mega-col h4,
.mt-mega-wp-menu > li > a {
    display: block;
    color: var(--mt-highlight);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}

.mt-mega-col a,
.mt-mega-wp-menu .sub-menu a {
    display: block;
    color: #fff;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 15px;
    font-weight: 700;
}

.mt-mega-col a:hover,
.mt-mega-wp-menu a:hover {
    color: var(--mt-highlight);
}

.mt-subnav {
    background: var(--mt-soft);
    border-bottom: 1px solid var(--mt-border);
}

.mt-secondary-menu,
.mt-subnav .mt-default-menu {
    overflow-x: auto;
    white-space: nowrap;
}

.mt-secondary-menu a,
.mt-subnav .mt-default-menu a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px 0 0;
    margin-right: 12px;
    color: var(--mt-primary);
    font-size: 14px;
    font-weight: 900;
    border: 0;
}

.mt-secondary-menu a:hover,
.mt-subnav .mt-default-menu a:hover {
    color: var(--mt-accent);
    background: transparent;
}

.mt-breaking {
    border-bottom: 1px solid var(--mt-border);
    background: #fff;
}

.mt-breaking-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    overflow: hidden;
}

.mt-breaking strong {
    background: var(--mt-accent);
    color: #fff;
    font-size: 12px;
    padding: 6px 9px;
    border-radius: 3px;
    white-space: nowrap;
}

.mt-breaking span {
    font-size: 14px;
    font-weight: 700;
}

.mt-site-main {
    min-height: 60vh;
}

.mt-home-ad {
    padding: 18px 0 8px;
}

.mt-ad-placeholder,
.mt-side-ad {
    min-height: 120px;
    background: linear-gradient(135deg, #f1f1f1, #e4e4e4);
    border: 1px dashed #b8b8b8;
    color: #777;
    font-weight: 900;
    display: grid;
    place-items: center;
    text-align: center;
}

.mt-side-ad {
    min-height: 200px;
    margin-bottom: 18px;
}

.mt-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, .95fr);
    gap: 22px;
    padding: 18px 0 28px;
    border-bottom: 1px solid var(--mt-border);
}

.mt-hero-main,
.mt-small-card,
.mt-category-feature,
.mt-list-card,
.mt-archive-card,
.mt-widget {
    background: #fff;
}

.mt-card-image {
    display: block;
    background: #eee;
    overflow: hidden;
}

.mt-card-image img,
.mt-archive-thumb img,
.mt-list-thumb img,
.mt-related-thumb img,
.mt-latest-sidebar-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .25s ease;
}

.mt-card-image:hover img,
.mt-archive-thumb:hover img,
.mt-list-thumb:hover img {
    transform: scale(1.03);
}


.mt-default-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: var(--mt-primary);
}

.mt-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--mt-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 950;
    letter-spacing: -.8px;
}

.mt-hero-content {
    padding: 18px 0 0;
}

.mt-cat-label {
    display: inline-flex;
    background: var(--mt-highlight);
    color: var(--mt-primary);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    padding: 5px 8px;
    margin-bottom: 9px;
}

.mt-hero h1,
.mt-hero h2,
.mt-category-block h3,
.mt-archive-card h2,
.mt-single-head h1 {
    margin: 0;
    line-height: 1.05;
    letter-spacing: -.45px;
}

.mt-hero h1 {
    font-size: clamp(31px, 4vw, 54px);
}

.mt-hero-content p,
.mt-category-feature p,
.mt-archive-card p {
    color: var(--mt-muted);
    font-size: 16px;
    line-height: 1.5;
    margin: 12px 0 0;
}

.mt-hero-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mt-small-card {
    border-bottom: 3px solid var(--mt-primary);
}

.mt-small-content {
    padding-top: 10px;
}

.mt-small-card h2 {
    font-size: 18px;
}

.mt-home-layout,
.mt-archive-layout,
.mt-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    padding: 30px 0;
}

.mt-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    border-top: 4px solid var(--mt-primary);
    padding-top: 10px;
    margin-bottom: 16px;
}

.mt-section-head h2 {
    margin: 0;
    color: var(--mt-primary);
    font-size: 28px;
    font-weight: 950;
}

.mt-section-head a {
    font-size: 13px;
    font-weight: 900;
    color: var(--mt-accent);
}

.mt-category-block {
    margin-bottom: 32px;
}

.mt-category-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
}

.mt-category-feature h3 {
    font-size: 25px;
    margin-top: 10px;
}

.mt-list-card {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 12px;
    align-items: start;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--mt-border);
}

.mt-list-card h3 {
    font-size: 16px;
}

.mt-widget {
    border-top: 4px solid var(--mt-primary);
    padding-top: 12px;
    margin-bottom: 24px;
}

.mt-widget-title {
    margin: 0 0 12px;
    color: var(--mt-primary);
    font-size: 22px;
    font-weight: 950;
}

.mt-popular-list {
    padding-left: 22px;
    margin: 0;
}

.mt-popular-list li {
    padding: 9px 0;
    font-weight: 800;
    border-bottom: 1px solid var(--mt-border);
}

.mt-archive-head {
    border-top: 4px solid var(--mt-primary);
    padding-top: 12px;
    margin-bottom: 22px;
}

.mt-archive-head h1 {
    margin: 0;
    color: var(--mt-primary);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.mt-archive-head p {
    color: var(--mt-muted);
}

.mt-post-list {
    display: grid;
    gap: 20px;
}

.mt-archive-card {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--mt-border);
}

.mt-archive-card h2 {
    font-size: 26px;
}

.mt-date,
.mt-meta {
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 700;
}

.mt-single-layout {
    grid-template-columns: minmax(0, 820px) 320px;
    align-items: start;
}

.mt-single-head {
    border-top: 4px solid var(--mt-primary);
    padding-top: 14px;
    margin-bottom: 18px;
}

.mt-single-head h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.mt-meta {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.mt-single-image {
    margin-bottom: 22px;
}

.mt-single-image img,
.mt-single-image .mt-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mt-content {
    font-size: 19px;
    line-height: 1.75;
}

.mt-content p {
    margin-top: 0;
}

.mt-content img {
    height: auto;
}

.mt-content blockquote {
    margin: 24px 0;
    padding-left: 18px;
    border-left: 5px solid var(--mt-accent);
    color: #333;
    font-weight: 700;
}

.mt-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid var(--mt-border);
    font-weight: 900;
}

.mt-page-wrap {
    padding: 36px 0;
}

.mt-page-main {
    max-width: 900px;
}

.mt-empty-state {
    padding: 48px 24px;
    background: var(--mt-soft);
    text-align: center;
    width: 100%;
}

.mt-footer {
    background: var(--mt-primary-dark);
    color: #fff;
    margin-top: 30px;
}

.mt-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    padding: 34px 0;
}

.mt-footer h3,
.mt-footer h4 {
    margin-top: 0;
    color: var(--mt-highlight);
}

.mt-footer-menu a {
    display: block;
    color: #fff;
    padding: 6px 0;
    font-weight: 700;
}

.mt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.16);
    padding: 14px 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.navigation.pagination {
    margin-top: 24px;
}

.nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.page-numbers {
    padding: 8px 12px;
    border: 1px solid var(--mt-border);
    font-weight: 800;
}

.page-numbers.current {
    background: var(--mt-primary);
    color: #fff;
}

@media (max-width: 980px) {
    .mt-brand-flex {
        align-items: flex-start;
        flex-direction: column;
    }

    .mt-search {
        width: 100%;
        min-width: 0;
    }

    .mt-hero,
    .mt-home-layout,
    .mt-archive-layout,
    .mt-single-layout {
        grid-template-columns: 1fr;
    }

    .mt-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .mt-mega-grid,
    .mt-mega-wp-menu,
    .mt-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .mt-container {
        width: min(100% - 22px, 1280px);
    }

    .mt-top-right {
        display: none;
    }

    .mt-brand-area {
        padding: 18px 0;
    }

    .mt-logo-text {
        letter-spacing: -1.4px;
    }

    .mt-mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .mt-nav-flex {
        min-height: 50px;
        align-items: center;
    }

    .mt-primary-wrap {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--mt-primary);
        border-top: 1px solid rgba(255,255,255,.18);
    }

    .mt-primary-wrap.active {
        display: block;
    }

    .mt-primary-menu,
    .mt-default-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .mt-primary-menu a,
    .mt-default-menu a {
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
        padding: 0 18px;
    }

    .mt-mainnav {
        position: relative;
    }

    .mt-hero-side,
    .mt-category-grid,
    .mt-sidebar,
    .mt-footer-grid {
        grid-template-columns: 1fr;
    }

    .mt-hero {
        gap: 18px;
    }

    .mt-small-card {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 12px;
        border-bottom: 1px solid var(--mt-border);
    }

    .mt-small-content {
        padding-top: 0;
    }

    .mt-archive-card {
        grid-template-columns: 1fr;
    }

    .mt-list-card {
        grid-template-columns: 108px 1fr;
    }

    .mt-mega-grid,
    .mt-mega-wp-menu {
        grid-template-columns: 1fr;
    }

    .mt-content {
        font-size: 17px;
    }

    .mt-post-nav {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .mt-hero h1 {
        font-size: 30px;
    }

    .mt-small-card {
        grid-template-columns: 116px 1fr;
    }

    .mt-small-card h2,
    .mt-list-card h3 {
        font-size: 15px;
    }

    .mt-section-head h2 {
        font-size: 24px;
    }

    .mt-single-head h1 {
        font-size: 32px;
    }
}

/* v2 Footer Directory: ManisaTürk kurumsal alt menü alanı */
.mt-footer-directory {
    background: #fafafa;
    color: #111;
    border-top: 1px solid #e6e6e6;
    margin-top: 38px;
}

.mt-footer-directory-inner {
    display: grid;
    grid-template-columns: 1.06fr .62fr 1.44fr;
    gap: 0;
    align-items: stretch;
    padding: 28px 0 24px;
}

.mt-footer-brand-panel,
.mt-footer-utility-panel,
.mt-footer-categories-panel {
    min-width: 0;
}

.mt-footer-brand-panel {
    padding: 18px 30px 18px 0;
}

.mt-footer-utility-panel {
    padding: 10px 26px 10px 28px;
    border-left: 1px dotted #d5d5d5;
    border-right: 1px dotted #d5d5d5;
}

.mt-footer-categories-panel {
    padding: 0 0 0 28px;
}

.mt-footer-logo-wrap {
    margin-bottom: 20px;
}

.mt-footer-logo-wrap .custom-logo-link img,
.mt-footer-logo-wrap img {
    max-width: 310px;
    max-height: 90px;
    width: auto;
    height: auto;
}

.mt-footer-logo-text {
    display: inline-flex;
    align-items: baseline;
    color: #050505;
    font-size: clamp(34px, 4.4vw, 50px);
    font-weight: 950;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
}

.mt-footer-logo-text strong {
    color: var(--mt-accent);
    font-weight: 950;
}

.mt-footer-logo-text strong::first-letter {
    color: #0190AD;
}

.mt-footer-slogan {
    margin: 0 0 14px;
    color: #111;
    font-size: 15px;
    font-weight: 600;
}

.mt-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.mt-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid #d3d3d3;
    border-radius: 7px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 1px 0 rgba(0,0,0,.03);
}

.mt-store-badge:hover {
    color: var(--mt-accent);
    border-color: var(--mt-accent);
}

.mt-store-icon {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    font-size: 13px;
    line-height: 1;
    border-radius: 4px;
}

.mt-store-apple {
    color: #000;
}

.mt-store-play {
    color: #18a058;
}

.mt-social-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.mt-social-link {
    display: inline-grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    text-transform: lowercase;
}

.mt-social-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.mt-social-facebook { background: #315da8; }
.mt-social-twitter { background: #1da1f2; }
.mt-social-youtube { background: #e62117; }
.mt-social-whatsapp { background: #19bd59; }
.mt-social-tumblr { background: #31445c; }
.mt-social-instagram { background: #c13584; }
.mt-social-linkedin { background: #0a66c2; }
.mt-social-google-news { background: #3b78e7; }

.mt-footer-utility-list,
.mt-footer-category-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mt-footer-utility-list {
    display: grid;
    gap: 18px;
}

.mt-footer-utility-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #050505;
    font-size: 15px;
    font-weight: 850;
}

.mt-footer-utility-list a:hover {
    color: var(--mt-accent);
}

.mt-footer-line-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #050505;
}

.mt-icon-info::before {
    content: "i";
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 950;
    font-family: Georgia, serif;
}

.mt-icon-menu::before {
    content: "";
    width: 20px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-shadow: 0 6px 0 currentColor;
}

.mt-icon-user::before {
    content: "";
    position: absolute;
    top: 2px;
    width: 9px;
    height: 9px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.mt-icon-user::after {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 19px;
    height: 10px;
    border: 2px solid currentColor;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    border-bottom: 0;
}

.mt-icon-pen::before {
    content: "";
    width: 18px;
    height: 7px;
    border: 2px solid currentColor;
    transform: rotate(-38deg);
    border-radius: 2px;
}

.mt-icon-pen::after {
    content: "";
    position: absolute;
    right: 1px;
    bottom: 3px;
    width: 7px;
    height: 2px;
    background: currentColor;
    transform: rotate(-38deg);
}

.mt-icon-mail::before {
    content: "";
    width: 21px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

.mt-icon-mail::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 14px;
    height: 14px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.mt-footer-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mt-footer-category-grid a {
    display: flex;
    align-items: center;
    min-height: 39px;
    padding: 9px 14px;
    background: #f1f1f1;
    border-left: 3px solid #e5e5e5;
    color: #050505;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
}

.mt-footer-category-grid a:hover {
    background: #fff;
    border-left-color: var(--mt-accent);
    color: var(--mt-accent);
}

.mt-footer-directory .mt-footer-bottom {
    border-top: 1px solid #e1e1e1;
    padding: 13px 0;
    color: #666;
    background: #fff;
    font-size: 13px;
}

@media (max-width: 980px) {
    .mt-footer-directory-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 0;
    }

    .mt-footer-brand-panel,
    .mt-footer-utility-panel,
    .mt-footer-categories-panel {
        padding: 0;
        border: 0;
    }

    .mt-footer-utility-panel {
        border-top: 1px dotted #d5d5d5;
        border-bottom: 1px dotted #d5d5d5;
        padding: 22px 0;
    }

    .mt-footer-utility-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
    }
}

@media (max-width: 760px) {
    .mt-footer-logo-text {
        font-size: 38px;
    }

    .mt-footer-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .mt-store-badge {
        width: calc(50% - 4px);
        justify-content: center;
        padding-inline: 8px;
    }

    .mt-footer-utility-list,
    .mt-footer-category-grid {
        grid-template-columns: 1fr;
    }
}


/* v4 Manşet Slider: 20 haberli ana manşet alanı */
.mt-hero-slider {
    padding: 22px 0 0;
}

.mt-slider-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    border-top: 5px solid var(--mt-primary);
    padding-top: 10px;
    margin-bottom: 14px;
}

.mt-slider-head h1 {
    margin: 0;
    color: var(--mt-primary);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -1.2px;
}

.mt-slider-head span {
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2px;
}

.mt-manset-slider {
    position: relative;
    background: #fff;
    border: 1px solid var(--mt-border);
    overflow: hidden;
}

.mt-slider-viewport {
    position: relative;
}

.mt-slide {
    display: none;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
    min-height: 460px;
    background: #fff;
}

.mt-slide.is-active {
    display: grid;
}

.mt-slide-image {
    display: block;
    min-height: 460px;
    background: #e9e9e9;
    overflow: hidden;
}

.mt-slide-image img,
.mt-slide-image .mt-placeholder {
    width: 100%;
    height: 100%;
    min-height: 460px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mt-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 4vw, 44px);
    border-left: 6px solid var(--mt-primary);
}

.mt-slide-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.mt-slide-number {
    color: var(--mt-primary);
    font-size: 13px;
    font-weight: 950;
}

.mt-slide h2 {
    margin: 0;
    color: #111;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -.8px;
}

.mt-slide h2 a:hover {
    color: var(--mt-primary);
}

.mt-slide p {
    margin: 16px 0 0;
    color: var(--mt-muted);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
}

.mt-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--mt-primary);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.mt-slider-arrow:hover {
    background: var(--mt-primary-dark);
}

.mt-slider-prev {
    left: 14px;
}

.mt-slider-next {
    right: 14px;
}

.mt-slider-counter {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 5;
    background: rgba(0,0,0,.72);
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
}

.mt-slider-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 4px;
}

.mt-slider-thumb {
    min-height: 72px;
    padding: 9px 10px;
    border: 1px solid #e4e4e4;
    border-left: 4px solid #d6d6d6;
    background: #f5f5f5;
    color: #111;
    text-align: left;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.mt-slider-thumb span {
    color: var(--mt-primary);
    font-size: 12px;
    font-weight: 950;
    line-height: 1.2;
    flex: 0 0 auto;
}

.mt-slider-thumb strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.22;
}

.mt-slider-thumb.is-active,
.mt-slider-thumb:hover {
    border-left-color: var(--mt-primary);
    background: #fff;
    color: var(--mt-primary);
}

.mt-home-ad {
    padding: 18px 0 12px;
}

.mt-home-ad .mt-ad-widget,
.mt-home-ad .mt-ad-placeholder {
    width: 100%;
    min-height: 200px;
}

@media (max-width: 1180px) {
    .mt-slider-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .mt-slide {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mt-slide-image,
    .mt-slide-image img,
    .mt-slide-image .mt-placeholder {
        min-height: 0;
    }

    .mt-slide-content {
        border-left: 0;
        border-top: 5px solid var(--mt-primary);
    }

    .mt-slider-thumbs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        padding-bottom: 8px;
    }

    .mt-slider-thumb {
        min-width: 230px;
        scroll-snap-align: start;
    }
}

@media (max-width: 760px) {
    .mt-slider-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .mt-slide-content {
        padding: 20px;
    }

    .mt-slide h2 {
        font-size: 28px;
    }

    .mt-slide p {
        font-size: 15px;
    }

    .mt-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .mt-slider-prev {
        left: 8px;
    }

    .mt-slider-next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .mt-slider-thumb {
        min-width: 210px;
    }
}

/* v5 Ana Sayfa: köşe yazarları, renkli haber bölümleri ve bölüm arası reklamlar */
.mt-columnists {
    padding: 18px 0 6px;
}

.mt-columnists-head {
    border-top-color: var(--mt-section-color, var(--mt-primary));
}

.mt-columnists-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.mt-columnist-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--mt-border);
    border-left: 5px solid var(--mt-primary);
    padding: 12px;
    min-height: 118px;
}

.mt-columnist-avatar {
    display: block;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--mt-soft);
}

.mt-columnist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-columnist-body h3 {
    margin: 0 0 5px;
    color: var(--mt-primary);
    font-size: 17px;
    font-weight: 950;
    line-height: 1.05;
}

.mt-columnist-body > small {
    display: block;
    margin: -1px 0 5px;
    color: #64748b;
    font-size: 11px;
    font-weight: 750;
}

.mt-columnist-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #111;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.25;
}

.mt-columnist-title:hover {
    color: var(--mt-primary);
}

.mt-columnist-body .mt-date {
    display: inline-block;
    margin-top: 6px;
}

.mt-columnists-empty {
    margin-bottom: 18px;
}

.mt-home-sections {
    padding: 18px 0 0;
}

.mt-home-news-section {
    margin-bottom: 26px;
}

.mt-home-news-section .mt-section-head {
    border-top-color: var(--mt-section-color, var(--mt-primary));
}

.mt-home-news-section .mt-section-head h2,
.mt-home-news-section .mt-section-head a {
    color: var(--mt-section-color, var(--mt-primary));
}

.mt-home-news-section .mt-category-feature {
    border-bottom: 5px solid var(--mt-section-color, var(--mt-primary));
}

.mt-home-news-section .mt-category-feature-content {
    padding-top: 10px;
}

.mt-home-news-section .mt-cat-label {
    background: var(--mt-section-color, var(--mt-primary));
    color: #fff;
}

.mt-home-news-section .mt-list-card {
    border-left: 4px solid transparent;
    padding-left: 10px;
    transition: border-color .18s ease, background-color .18s ease;
}

.mt-home-news-section .mt-list-card:hover {
    border-left-color: var(--mt-section-color, var(--mt-primary));
    background: #fafafa;
}

.mt-home-news-section .mt-list-card h3 {
    margin: 0 0 6px;
    line-height: 1.18;
}

.mt-home-news-section .mt-list-card h3 a:hover,
.mt-home-news-section .mt-category-feature h3 a:hover {
    color: var(--mt-section-color, var(--mt-primary));
}

.mt-section-ad {
    margin: 0 0 28px;
}

.mt-section-ad .mt-ad-widget,
.mt-section-ad .mt-ad-placeholder {
    width: 100%;
    min-height: 200px;
}

.mt-section-ad-placeholder {
    background: linear-gradient(135deg, #f7f7f7, #ececec);
}

@media (max-width: 1180px) {
    .mt-columnists-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .mt-columnists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .mt-columnists-grid {
        grid-template-columns: 1fr;
    }

    .mt-columnist-card {
        grid-template-columns: 64px 1fr;
        min-height: 96px;
    }

    .mt-columnist-avatar {
        width: 64px;
        height: 64px;
    }

    .mt-section-ad .mt-ad-widget,
    .mt-section-ad .mt-ad-placeholder,
    .mt-home-ad .mt-ad-widget,
    .mt-home-ad .mt-ad-placeholder {
        min-height: 120px;
    }
}


/* v7 Mobil Responsive Güçlendirme: v5/v6 yapısı korunarak eklenmiştir */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.mt-site-main,
.mt-header,
.mt-footer-directory {
    width: 100%;
    overflow-x: clip;
}

.mt-topbar-inner,
.mt-brand-flex,
.mt-nav-flex,
.mt-breaking-inner,
.mt-section-head,
.mt-slide-kicker {
    min-width: 0;
}

.mt-top-left,
.mt-primary-wrap,
.mt-secondary-menu,
.mt-subnav .mt-default-menu,
.mt-breaking span,
.mt-slide h2,
.mt-category-feature h3,
.mt-list-card h3,
.mt-columnist-title {
    min-width: 0;
}

.mt-ad-widget img,
.mt-section-ad img,
.mt-home-ad img,
.mt-widget img,
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.mt-ad-widget,
.mt-section-ad .mt-ad-placeholder,
.mt-home-ad .mt-ad-placeholder {
    overflow: hidden;
}

.mt-slider-viewport {
    touch-action: pan-y;
}

@media (max-width: 1180px) {
    .mt-container {
        width: min(100% - 28px, 1280px);
    }

    .mt-slide {
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    }

    .mt-slide-content {
        padding: 28px;
    }
}

@media (max-width: 980px) {
    .mt-brand-flex {
        gap: 14px;
    }

    .mt-logo-img img {
        max-height: 70px;
    }

    .mt-slide-image,
    .mt-slide-image img,
    .mt-slide-image .mt-placeholder {
        width: 100%;
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .mt-slide-content {
        border-top-width: 4px;
    }

    .mt-category-grid {
        grid-template-columns: 1fr;
    }

    .mt-home-news-section .mt-category-feature {
        border-bottom-width: 4px;
    }
}

@media (max-width: 820px) {
    .mt-topbar-inner {
        min-height: 36px;
    }

    .mt-top-left {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .mt-top-left::-webkit-scrollbar {
        display: none;
    }

    .mt-mainnav {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .mt-primary-wrap {
        z-index: 1001;
        box-shadow: 0 14px 22px rgba(0,0,0,.18);
    }

    .mt-mega-menu.active {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .mt-secondary-menu,
    .mt-subnav .mt-default-menu {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mt-secondary-menu::-webkit-scrollbar,
    .mt-subnav .mt-default-menu::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 760px) {
    .mt-container {
        width: min(100% - 20px, 1280px);
    }

    .mt-brand-area {
        padding: 14px 0 13px;
    }

    .mt-brand-flex {
        align-items: stretch;
        gap: 12px;
    }

    .mt-logo-text {
        font-size: clamp(31px, 10vw, 42px);
        letter-spacing: -1.2px;
    }

    .mt-logo-img img {
        max-width: 260px;
        max-height: 62px;
    }

    .mt-tagline {
        margin-top: 5px;
        font-size: 13px;
    }

    .mt-search {
        min-height: 42px;
        border-radius: 12px;
        padding: 3px;
    }

    .mt-search input {
        padding: 9px 10px;
        font-size: 15px;
    }

    .mt-search button {
        border-radius: 10px;
        padding: 9px 13px;
    }

    .mt-nav-flex {
        justify-content: space-between;
        gap: 8px;
    }

    .mt-mobile-toggle {
        flex: 0 0 42px;
    }

    .mt-mega-toggle {
        padding: 9px 13px;
        font-size: 13px;
    }

    .mt-primary-wrap {
        top: 50px;
    }

    .mt-primary-menu a,
    .mt-default-menu a {
        min-height: 46px;
        font-size: 15px;
        padding: 0 16px;
    }

    .mt-mega-menu {
        padding: 20px 0 22px;
    }

    .mt-mega-col h4,
    .mt-mega-wp-menu > li > a {
        font-size: 19px;
    }

    .mt-breaking-inner {
        min-height: 38px;
        gap: 8px;
    }

    .mt-breaking strong {
        font-size: 11px;
        padding: 5px 7px;
    }

    .mt-breaking span {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px;
    }

    .mt-hero-slider {
        padding-top: 14px;
    }

    .mt-slider-head {
        margin-bottom: 10px;
        padding-top: 8px;
        border-top-width: 4px;
    }

    .mt-slider-head h1 {
        font-size: 30px;
        letter-spacing: -.7px;
    }

    .mt-slider-head span {
        font-size: 12px;
    }

    .mt-manset-slider {
        border-left: 0;
        border-right: 0;
    }

    .mt-slide-content {
        padding: 17px 16px 20px;
        border-top-width: 4px;
    }

    .mt-slide-kicker {
        margin-bottom: 9px;
    }

    .mt-slide h2 {
        font-size: clamp(24px, 7.4vw, 31px);
        line-height: 1.08;
        letter-spacing: -.55px;
    }

    .mt-slide p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .mt-slider-counter {
        right: 10px;
        bottom: 10px;
        padding: 5px 9px;
        font-size: 12px;
    }

    .mt-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 25px;
        opacity: .92;
    }

    .mt-home-ad,
    .mt-section-ad {
        padding: 14px 0 8px;
        margin-bottom: 18px;
    }

    .mt-home-ad .mt-ad-widget,
    .mt-home-ad .mt-ad-placeholder,
    .mt-section-ad .mt-ad-widget,
    .mt-section-ad .mt-ad-placeholder {
        min-height: 0;
        aspect-ratio: 444 / 200;
    }

    .mt-ad-placeholder,
    .mt-side-ad {
        font-size: 13px;
        padding: 12px;
    }

    .mt-columnists {
        padding-top: 12px;
    }

    .mt-section-head {
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .mt-section-head h2 {
        font-size: 24px;
        line-height: 1.05;
    }

    .mt-section-head a {
        white-space: nowrap;
        padding-top: 4px;
    }

    .mt-columnists-grid {
        gap: 10px;
    }

    .mt-columnist-card {
        padding: 10px;
    }

    .mt-home-sections {
        padding-top: 12px;
    }

    .mt-home-news-section {
        margin-bottom: 20px;
    }

    .mt-category-feature h3 {
        font-size: 22px;
        line-height: 1.1;
        margin-top: 8px;
    }

    .mt-category-feature p {
        font-size: 14px;
        line-height: 1.45;
    }

    .mt-list-card {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 10px;
        padding-left: 8px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .mt-list-card h3 {
        line-height: 1.2;
    }

    .mt-footer-directory {
        margin-top: 22px;
    }

    .mt-footer-directory-inner {
        gap: 18px;
    }

    .mt-footer-logo-text {
        font-size: clamp(32px, 11vw, 40px);
        letter-spacing: -1.4px;
    }

    .mt-footer-logo-wrap .custom-logo-link img,
    .mt-footer-logo-wrap img {
        max-width: 250px;
        max-height: 76px;
    }

    .mt-footer-slogan {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .mt-topbar {
        font-size: 12px;
    }

    .mt-brand-left {
        text-align: left;
    }

    .mt-slide-image,
    .mt-slide-image img,
    .mt-slide-image .mt-placeholder {
        aspect-ratio: 16 / 9;
    }

    .mt-cat-label {
        font-size: 11px;
        padding: 4px 7px;
    }

    .mt-slide-number {
        font-size: 12px;
    }

    .mt-slider-prev {
        left: 6px;
    }

    .mt-slider-next {
        right: 6px;
    }

    .mt-columnist-body h3 {
        font-size: 16px;
    }

    .mt-columnist-title {
        font-size: 13px;
    }

    .mt-home-news-section .mt-category-feature-content {
        padding-top: 8px;
    }

    .mt-category-feature p {
        display: none;
    }

    .mt-list-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .mt-footer-category-grid {
        gap: 8px;
    }

    .mt-footer-category-grid a {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .mt-container {
        width: min(100% - 16px, 1280px);
    }

    .mt-logo-text {
        font-size: 30px;
    }

    .mt-search {
        min-height: 40px;
    }

    .mt-search input {
        font-size: 14px;
    }

    .mt-search button {
        padding: 8px 11px;
        font-size: 13px;
    }

    .mt-slide-content {
        padding: 15px 13px 18px;
    }

    .mt-slide h2 {
        font-size: 23px;
    }

    .mt-slide p {
        -webkit-line-clamp: 2;
    }

    .mt-section-head h2 {
        font-size: 22px;
    }

    .mt-columnist-card {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .mt-columnist-avatar {
        width: 58px;
        height: 58px;
    }

    .mt-list-card {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 9px;
        padding-left: 0;
        border-left: 0;
    }

    .mt-list-card h3 {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .mt-date,
    .mt-meta {
        font-size: 12px;
    }

    .mt-store-badges {
        gap: 7px;
    }

    .mt-store-badge {
        min-height: 36px;
        font-size: 13px;
    }

    .mt-social-link {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 360px) {
    .mt-logo-text {
        font-size: 27px;
    }

    .mt-mega-toggle {
        padding: 8px 10px;
    }

    .mt-slide h2 {
        font-size: 21px;
    }

    .mt-list-card {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .mt-footer-category-grid a {
        font-size: 12.5px;
    }
}

/* v8 Ana Sayfa Bölümleri: referanstaki 1 büyük + 5 küçük görsel haber vitrini */
.mt-mosaic-section {
    margin-bottom: 28px;
}

.mt-section-titlebar {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #dedede;
    color: #344054;
    padding: 0 18px 0 22px;
    margin-bottom: 30px;
    border-left: 0;
}

.mt-section-title-left {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.mt-section-titlebar h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -.15px;
    color: #344054;
}

.mt-section-icon {
    width: 31px;
    height: 31px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 31px;
    background: var(--mt-section-color, var(--mt-primary));
    color: #fff;
}

.mt-section-icon svg {
    width: 17px;
    height: 17px;
}

.mt-section-more {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    color: var(--mt-section-color, var(--mt-primary));
    font-size: 12px;
    font-weight: 950;
}

.mt-section-more:hover {
    background: var(--mt-section-color, var(--mt-primary));
    color: #fff;
}

.mt-category-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(188px, auto));
    gap: 22px;
}

.mt-mosaic-card {
    min-width: 0;
    background: #111;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 0 rgba(0,0,0,.03);
}

.mt-mosaic-feature {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.mt-mosaic-card-2 {
    grid-column: 3;
    grid-row: 1;
}

.mt-mosaic-card-3 {
    grid-column: 3;
    grid-row: 2;
}

.mt-mosaic-card-4 {
    grid-column: 1;
    grid-row: 3;
}

.mt-mosaic-card-5 {
    grid-column: 2;
    grid-row: 3;
}

.mt-mosaic-card-6 {
    grid-column: 3;
    grid-row: 3;
}

.mt-mosaic-link,
.mt-mosaic-image,
.mt-mosaic-image img,
.mt-mosaic-image .mt-placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.mt-mosaic-link {
    position: relative;
    min-height: 188px;
    color: #fff;
}

.mt-mosaic-image {
    background: #d9d9d9;
    overflow: hidden;
}

.mt-mosaic-image img,
.mt-mosaic-image .mt-placeholder {
    object-fit: cover;
    aspect-ratio: auto;
    transition: transform .28s ease, filter .28s ease;
}

.mt-mosaic-card:hover .mt-mosaic-image img,
.mt-mosaic-card:hover .mt-mosaic-image .mt-placeholder {
    transform: scale(1.035);
    filter: saturate(1.05);
}

.mt-mosaic-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: block;
    padding: 44px 20px 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.52) 34%, rgba(0,0,0,.88) 100%);
    z-index: 2;
}

.mt-mosaic-side .mt-mosaic-overlay,
.mt-mosaic-bottom .mt-mosaic-overlay {
    padding: 38px 12px 12px;
}

.mt-mosaic-overlay .mt-cat-label {
    margin-bottom: 8px;
    background: var(--mt-section-color, var(--mt-primary));
    color: #fff;
}

.mt-mosaic-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -.25px;
    text-shadow: 0 1px 2px rgba(0,0,0,.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mt-mosaic-feature .mt-mosaic-overlay h3 {
    font-size: clamp(24px, 2.35vw, 32px);
    -webkit-line-clamp: 3;
}

.mt-mosaic-card:hover .mt-mosaic-overlay h3 {
    color: #fff;
}

@media (max-width: 1180px) {
    .mt-category-mosaic {
        gap: 18px;
        grid-template-rows: repeat(3, minmax(168px, auto));
    }

    .mt-mosaic-link {
        min-height: 168px;
    }
}

@media (max-width: 980px) {
    .mt-section-titlebar {
        margin-bottom: 18px;
    }

    .mt-category-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 16px;
    }

    .mt-mosaic-feature {
        grid-column: 1 / span 2;
        grid-row: auto;
    }

    .mt-mosaic-card-2,
    .mt-mosaic-card-3,
    .mt-mosaic-card-4,
    .mt-mosaic-card-5,
    .mt-mosaic-card-6 {
        grid-column: auto;
        grid-row: auto;
    }

    .mt-mosaic-feature .mt-mosaic-link {
        aspect-ratio: 16 / 9;
    }

    .mt-mosaic-side .mt-mosaic-link,
    .mt-mosaic-bottom .mt-mosaic-link {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 760px) {
    .mt-section-titlebar {
        min-height: 46px;
        padding: 8px 12px;
        margin-bottom: 14px;
        gap: 10px;
    }

    .mt-section-titlebar h2 {
        font-size: 17px;
    }

    .mt-section-icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
    }

    .mt-section-icon svg {
        width: 16px;
        height: 16px;
    }

    .mt-section-more {
        display: none;
    }

    .mt-category-mosaic {
        gap: 12px;
    }

    .mt-mosaic-overlay {
        padding: 38px 14px 13px;
    }

    .mt-mosaic-feature .mt-mosaic-overlay h3 {
        font-size: 23px;
    }

    .mt-mosaic-side .mt-mosaic-overlay h3,
    .mt-mosaic-bottom .mt-mosaic-overlay h3 {
        font-size: 15px;
    }
}

@media (max-width: 620px) {
    .mt-category-mosaic {
        grid-template-columns: 1fr;
    }

    .mt-mosaic-feature,
    .mt-mosaic-card-2,
    .mt-mosaic-card-3,
    .mt-mosaic-card-4,
    .mt-mosaic-card-5,
    .mt-mosaic-card-6 {
        grid-column: auto;
        grid-row: auto;
    }

    .mt-mosaic-link,
    .mt-mosaic-feature .mt-mosaic-link,
    .mt-mosaic-side .mt-mosaic-link,
    .mt-mosaic-bottom .mt-mosaic-link {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .mt-mosaic-overlay h3,
    .mt-mosaic-side .mt-mosaic-overlay h3,
    .mt-mosaic-bottom .mt-mosaic-overlay h3 {
        font-size: 18px;
        -webkit-line-clamp: 2;
    }

    .mt-mosaic-feature .mt-mosaic-overlay h3 {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .mt-section-titlebar h2 {
        font-size: 16px;
    }

    .mt-mosaic-overlay,
    .mt-mosaic-side .mt-mosaic-overlay,
    .mt-mosaic-bottom .mt-mosaic-overlay {
        padding: 34px 11px 11px;
    }

    .mt-mosaic-overlay h3,
    .mt-mosaic-feature .mt-mosaic-overlay h3 {
        font-size: 19px;
    }
}

/* v9 Ana Sayfa Bölümleri: Her bölüm 10 haberli kategori slider */
.mt-category-slider-section {
    margin-bottom: 30px;
}

.mt-category-news-slider {
    position: relative;
    overflow: hidden;
    padding: 0 58px 34px;
}

.mt-category-news-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.mt-category-news-slider-track {
    display: flex;
    gap: 22px;
    will-change: transform;
    transition: transform .42s ease;
}

.mt-category-news-slide {
    flex: 0 0 calc((100% - 66px) / 4);
    min-width: 0;
}

.mt-category-news-card {
    display: block;
    position: relative;
    min-height: 245px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    color: #fff;
    background: #111827;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
}

.mt-category-news-image,
.mt-category-news-image img,
.mt-category-news-image .mt-placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.mt-category-news-image {
    background: #d9d9d9;
}

.mt-category-news-image img,
.mt-category-news-image .mt-placeholder {
    object-fit: cover;
    aspect-ratio: auto;
    transition: transform .28s ease, filter .28s ease;
}

.mt-category-news-card:hover .mt-category-news-image img,
.mt-category-news-card:hover .mt-category-news-image .mt-placeholder {
    transform: scale(1.04);
    filter: saturate(1.06);
}

.mt-category-news-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: block;
    min-height: 62%;
    padding: 52px 16px 15px;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.58) 34%, rgba(0,0,0,.9) 100%);
}

.mt-category-news-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 26px;
    margin-bottom: 9px;
    border-radius: 999px;
    background: var(--mt-section-color, var(--mt-primary));
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .3px;
}

.mt-category-news-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: -.25px;
    text-shadow: 0 1px 2px rgba(0,0,0,.55);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mt-category-news-date {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 700;
}

.mt-category-slider-arrow {
    position: absolute;
    top: calc(50% - 22px);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: var(--mt-section-color, var(--mt-primary));
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15,23,42,.18);
}

.mt-category-slider-arrow:hover {
    filter: brightness(.92);
}

.mt-category-slider-arrow:disabled {
    cursor: not-allowed;
    opacity: .38;
    filter: grayscale(.4);
}

.mt-category-slider-prev {
    left: 4px;
}

.mt-category-slider-next {
    right: 4px;
}

.mt-category-slider-counter {
    position: absolute;
    right: 60px;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 25px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #344054;
    font-size: 12px;
    font-weight: 950;
}

@media (max-width: 1180px) {
    .mt-category-news-slider {
        padding-left: 52px;
        padding-right: 52px;
    }

    .mt-category-news-slider-track {
        gap: 18px;
    }

    .mt-category-news-slide {
        flex-basis: calc((100% - 36px) / 3);
    }

    .mt-category-news-card {
        min-height: 220px;
    }
}

@media (max-width: 820px) {
    .mt-category-news-slider {
        padding-left: 44px;
        padding-right: 44px;
        padding-bottom: 32px;
    }

    .mt-category-news-slider-track {
        gap: 14px;
    }

    .mt-category-news-slide {
        flex-basis: calc((100% - 14px) / 2);
    }

    .mt-category-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .mt-category-news-card {
        min-height: 196px;
    }

    .mt-category-news-overlay h3 {
        font-size: 16px;
        -webkit-line-clamp: 2;
    }

    .mt-category-slider-counter {
        right: 48px;
    }
}

@media (max-width: 560px) {
    .mt-category-news-slider {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 34px;
        overflow: visible;
    }

    .mt-category-news-slider-viewport {
        overflow: hidden;
    }

    .mt-category-news-slider-track {
        gap: 12px;
    }

    .mt-category-news-slide {
        flex: 0 0 100%;
    }

    .mt-category-news-card {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .mt-category-slider-arrow {
        top: auto;
        bottom: 0;
    }

    .mt-category-slider-prev {
        left: 0;
    }

    .mt-category-slider-next {
        right: 0;
    }

    .mt-category-slider-counter {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .mt-category-news-overlay {
        padding: 48px 14px 14px;
    }

    .mt-category-news-overlay h3 {
        font-size: 18px;
        -webkit-line-clamp: 2;
    }
}

/* v10 Ana Sayfa Bölümleri: Masaüstünde v6 klasik blok, mobilde 10 haberli slider */
.mt-category-hybrid-section .mt-hybrid-head-mobile,
.mt-category-hybrid-section .mt-category-mobile-slider {
    display: none;
}

.mt-category-hybrid-section .mt-hybrid-head-desktop {
    display: flex;
}

.mt-category-hybrid-section .mt-category-desktop-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
}

.mt-category-hybrid-section .mt-category-feature {
    min-width: 0;
}

.mt-category-hybrid-section .mt-card-image,
.mt-category-hybrid-section .mt-card-image img,
.mt-category-hybrid-section .mt-card-image .mt-placeholder {
    width: 100%;
}

@media (max-width: 820px) {
    .mt-category-hybrid-section .mt-hybrid-head-desktop,
    .mt-category-hybrid-section .mt-category-desktop-grid {
        display: none;
    }

    .mt-category-hybrid-section .mt-hybrid-head-mobile {
        display: flex;
    }

    .mt-category-hybrid-section .mt-category-mobile-slider {
        display: block;
    }
}


/* v11 Mobil Manşet Görsel Düzeltmesi
   Mobilde bazı tarayıcılarda/lazy-load eklentilerinde manşet görsel alanı yükseklik alamadığı için
   görsel görünmüyordu. Görsel kutusu artık 16:9 sabit oranla ve kesin yükseklikle korunur. */
@media (max-width: 980px) {
    .mt-hero-slider .mt-manset-slider {
        overflow: hidden;
    }

    .mt-hero-slider .mt-slider-viewport {
        position: relative;
        width: 100%;
    }

    .mt-hero-slider .mt-slide {
        min-height: 0 !important;
    }

    .mt-hero-slider .mt-slide.is-active {
        display: block !important;
    }

    .mt-hero-slider .mt-slide-image {
        display: block !important;
        position: relative;
        width: 100%;
        min-height: 220px !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        background: #e9eef2;
        overflow: hidden;
    }

    .mt-hero-slider .mt-slide-image img,
    .mt-hero-slider .mt-slide-image .mt-placeholder {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        object-fit: cover;
        object-position: center center;
        aspect-ratio: auto !important;
    }

    .mt-hero-slider .mt-slide-image .mt-placeholder {
        display: grid !important;
        place-items: center;
    }
}

@media (max-width: 560px) {
    .mt-hero-slider .mt-slide-image {
        min-height: 190px !important;
    }
}

@media (max-width: 420px) {
    .mt-hero-slider .mt-slide-image {
        min-height: 170px !important;
    }
}


/* v12 Son dakika otomatik son yazılar ve manşet editör seçimi */
.mt-breaking-list {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.mt-breaking-list a {
    color: var(--mt-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    min-width: 0;
}

.mt-breaking-list a:hover {
    color: var(--mt-accent);
}

.mt-breaking-separator {
    color: var(--mt-accent);
    font-size: 15px;
    font-weight: 900;
    flex: 0 0 auto;
}

.mt-breaking-text {
    font-size: 14px;
    font-weight: 700;
    min-width: 0;
}

@media (max-width: 768px) {
    .mt-breaking-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mt-breaking-list::-webkit-scrollbar {
        display: none;
    }

    .mt-breaking-list a {
        max-width: 78vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 0 0 auto;
        font-size: 13px;
    }
}

/* v13 Reklam Yönetimi */
.mt-managed-ad {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mt-managed-ad a,
.mt-managed-ad picture {
    display: block;
    width: 100%;
}

.mt-managed-ad img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
}

.mt-home-ad .mt-managed-ad,
.mt-section-ad .mt-managed-ad {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
    .mt-managed-ad {
        min-height: 160px;
        border-radius: 12px;
    }

    .mt-managed-ad img {
        aspect-ratio: 444 / 200;
        object-fit: cover;
        max-height: none;
    }
}

/* v14 reklam kodu alanları ve son dakika düzeltmesi */
:root {
    --mt-dark: #111111;
}

.mt-managed-ad-code {
    display: block;
    width: 100%;
    min-height: 0;
    overflow: visible;
    text-align: center;
}

.mt-ad-code {
    width: 100%;
    max-width: 100%;
}

.mt-ad-code iframe,
.mt-ad-code ins,
.mt-ad-code > div {
    max-width: 100%;
}

.mt-ad-code-mobile {
    display: none;
}

.mt-breaking-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    overflow: hidden;
}

.mt-breaking-viewport {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.mt-breaking-track {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    white-space: nowrap;
}

.mt-breaking-track a {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--mt-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.mt-breaking-track a:hover {
    color: var(--mt-accent);
}

@media (max-width: 768px) {
    .mt-managed-ad-code.has-mobile-code .mt-ad-code-desktop {
        display: none;
    }

    .mt-ad-code-mobile {
        display: block;
    }

    .mt-breaking-inner {
        min-height: 40px;
    }

    .mt-breaking-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mt-breaking-viewport::-webkit-scrollbar {
        display: none;
    }

    .mt-breaking-track {
        width: max-content;
    }

    .mt-breaking-track a {
        max-width: 78vw;
        flex: 0 0 auto;
        font-size: 13px;
    }
}

/* v15: Flaş efektli kayan Son Dakika bandı ve kategoriye özel doğru ilk 10 haber gösterimi */
.mt-breaking-flash-ticker {
    background: #fff;
    border-top: 1px solid rgba(227, 6, 19, 0.16);
    border-bottom: 1px solid rgba(227, 6, 19, 0.24);
}

.mt-breaking-flash-ticker .mt-breaking-inner {
    gap: 14px;
    min-height: 44px;
    overflow: hidden;
}

.mt-breaking-flash-ticker .mt-breaking-label {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 6px 12px 6px 26px;
    border: 1px solid #e30613;
    border-radius: 999px;
    background: #fff;
    color: #e30613;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 0 0 rgba(227, 6, 19, 0);
    animation: mt-breaking-flash 1.35s steps(2, end) infinite;
}

.mt-breaking-flash-ticker .mt-breaking-label::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #e30613;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.55);
    animation: mt-breaking-dot 1.35s ease-in-out infinite;
}

.mt-breaking-flash-ticker .mt-breaking-viewport {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.mt-breaking-flash-ticker .mt-breaking-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: max-content;
    min-width: max-content;
    white-space: nowrap;
    will-change: transform;
    animation: mt-breaking-marquee 34s linear infinite;
}

.mt-breaking-flash-ticker .mt-breaking-viewport:hover .mt-breaking-track {
    animation-play-state: paused;
}

.mt-breaking-flash-ticker .mt-breaking-group {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-right: 14px;
    flex: 0 0 auto;
}

.mt-breaking-flash-ticker .mt-breaking-track a,
.mt-breaking-flash-ticker .mt-breaking-text {
    display: inline-block;
    flex: 0 0 auto;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.mt-breaking-flash-ticker .mt-breaking-track a:hover {
    color: #e30613;
}

.mt-breaking-flash-ticker .mt-breaking-separator {
    flex: 0 0 auto;
    color: #e30613;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

@keyframes mt-breaking-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes mt-breaking-flash {
    0%, 52% {
        color: #e30613;
        background: #fff;
        box-shadow: 0 0 0 rgba(227, 6, 19, 0);
    }
    53%, 100% {
        color: #fff;
        background: #e30613;
        box-shadow: 0 0 18px rgba(227, 6, 19, 0.45);
    }
}

@keyframes mt-breaking-dot {
    0% {
        transform: translateY(-50%) scale(0.85);
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.55);
    }
    70% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 9px rgba(227, 6, 19, 0);
    }
    100% {
        transform: translateY(-50%) scale(0.85);
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
    }
}

@media (max-width: 768px) {
    .mt-breaking-flash-ticker .mt-breaking-inner {
        min-height: 42px;
        gap: 10px;
    }

    .mt-breaking-flash-ticker .mt-breaking-label {
        padding: 6px 10px 6px 24px;
        font-size: 11px;
    }

    .mt-breaking-flash-ticker .mt-breaking-track {
        animation-duration: 26s;
    }

    .mt-breaking-flash-ticker .mt-breaking-track a,
    .mt-breaking-flash-ticker .mt-breaking-text {
        max-width: none;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-breaking-flash-ticker .mt-breaking-track,
    .mt-breaking-flash-ticker .mt-breaking-label,
    .mt-breaking-flash-ticker .mt-breaking-label::before {
        animation: none;
    }
}

/* v17 - Haber detay mobil responsive ve haber içi reklam düzeltmeleri */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.mt-single-main,
.mt-single-head,
.mt-single-image,
.mt-single-inline-ad,
.mt-content {
    min-width: 0;
    max-width: 100%;
}

.mt-single-inline-ad {
    margin: 0 0 24px;
}

.mt-single-inline-ad .mt-managed-ad,
.mt-single-inline-ad .mt-ad-widget,
.mt-single-inline-ad .mt-ad-placeholder,
.mt-single-inline-ad .mt-ad-code {
    width: 100%;
    max-width: 100%;
}

.mt-single-inline-ad .mt-ad-placeholder {
    min-height: 96px;
}

.mt-managed-ad img,
.mt-ad-widget img,
.mt-ad-code img,
.mt-ad-code iframe,
.mt-ad-code ins {
    max-width: 100% !important;
}

.mt-ad-code iframe,
.mt-ad-code ins {
    width: 100% !important;
}

.mt-content figure,
.mt-content .wp-caption,
.mt-content .wp-block-image,
.mt-content .wp-block-embed,
.mt-content .wp-block-video,
.mt-content .wp-video,
.mt-content img,
.mt-content video {
    max-width: 100% !important;
    height: auto;
}

.mt-content iframe,
.mt-content embed,
.mt-content object {
    max-width: 100% !important;
}

.mt-content .wp-block-embed__wrapper {
    max-width: 100%;
    overflow: hidden;
}

.mt-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.mt-content pre,
.mt-content code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.mt-content,
.mt-content p,
.mt-content li,
.mt-single-head h1 {
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (max-width: 980px) {
    .mt-single-layout {
        grid-template-columns: 1fr;
    }

    .mt-single-main {
        width: 100%;
    }

    .mt-single-layout .mt-sidebar {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .mt-single-layout {
        display: block;
        padding: 18px 0 22px;
    }

    .mt-single-head {
        margin-bottom: 14px;
    }

    .mt-single-head h1 {
        font-size: clamp(28px, 8.2vw, 38px);
        line-height: 1.08;
        letter-spacing: -0.25px;
    }

    .mt-meta {
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .mt-single-image {
        margin-bottom: 14px;
    }

    .mt-single-image img,
    .mt-single-image .mt-placeholder {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .mt-single-inline-ad {
        margin-bottom: 20px;
    }

    .mt-single-inline-ad .mt-ad-placeholder {
        min-height: 160px;
    }

    .mt-content {
        font-size: 17px;
        line-height: 1.68;
    }

    .mt-content p {
        margin-bottom: 18px;
    }

    .mt-content iframe,
    .mt-content video,
    .mt-content embed,
    .mt-content object {
        width: 100% !important;
        aspect-ratio: 16 / 9;
        height: auto !important;
    }

    .mt-content .alignwide,
    .mt-content .alignfull,
    .mt-content .wp-block-image.alignwide,
    .mt-content .wp-block-image.alignfull {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mt-single-layout .mt-sidebar {
        display: block;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .mt-single-head h1 {
        font-size: 27px;
    }

    .mt-content {
        font-size: 16.5px;
    }
}


/* v18 - Haber içi reklam masaüstünde de mobil reklam formatı gibi görünsün */
.mt-single-inline-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 24px;
    padding: 10px 0 18px;
}

.mt-single-inline-ad .mt-single-style-ad,
.mt-single-inline-ad .mt-managed-ad,
.mt-single-inline-ad .mt-ad-widget,
.mt-single-inline-ad .mt-ad-placeholder,
.mt-single-inline-ad .mt-ad-code {
    width: 100%;
    max-width: 444px;
    margin-left: auto;
    margin-right: auto;
}

.mt-single-inline-ad .mt-single-style-ad,
.mt-single-inline-ad .mt-managed-ad,
.mt-single-inline-ad .mt-ad-widget,
.mt-single-inline-ad .mt-ad-placeholder {
    overflow: hidden;
    text-align: center;
}

.mt-single-inline-ad .mt-managed-ad img,
.mt-single-inline-ad .mt-ad-widget img,
.mt-single-inline-ad .mt-ad-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 444 / 200;
    min-height: 0;
    height: auto;
    object-fit: cover;
}

.mt-single-inline-ad .mt-ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.mt-single-inline-ad .mt-ad-code-single,
.mt-single-inline-ad .mt-ad-code-single > div,
.mt-single-inline-ad .mt-ad-code-single iframe,
.mt-single-inline-ad .mt-ad-code-single ins {
    max-width: 444px !important;
}

.mt-single-inline-ad .mt-ad-code-single iframe,
.mt-single-inline-ad .mt-ad-code-single ins {
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (min-width: 761px) {
    .mt-single-inline-ad {
        margin-top: 4px;
        margin-bottom: 28px;
    }
}

/* v19 - Haber detay sağ kolonda en yeni haberler */
.mt-single-sidebar {
    min-width: 0;
}

.mt-latest-sidebar {
    background: #fff;
    border: 1px solid var(--mt-border);
    border-top: 5px solid var(--mt-primary);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(5, 41, 98, 0.06);
}

.mt-latest-sidebar-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--mt-border);
}

.mt-latest-sidebar-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #e30613;
    box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.12);
    flex: 0 0 auto;
}

.mt-latest-sidebar-head h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
    color: var(--mt-primary);
    letter-spacing: -0.35px;
}

.mt-latest-sidebar-list {
    display: grid;
    gap: 13px;
}

.mt-latest-sidebar-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--mt-border);
}

.mt-latest-sidebar-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.mt-latest-sidebar-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #eef3f6;
}

.mt-latest-sidebar-thumb img,
.mt-latest-sidebar-thumb .mt-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.mt-latest-sidebar-item:hover .mt-latest-sidebar-thumb img {
    transform: scale(1.04);
}

.mt-latest-sidebar-content {
    min-width: 0;
}

.mt-latest-sidebar-content .mt-cat-label {
    display: inline-block;
    margin: 0 0 5px;
    padding: 3px 7px;
    font-size: 10px;
    line-height: 1;
    border-radius: 999px;
    background: var(--mt-primary);
    color: #fff;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mt-latest-sidebar-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.1px;
}

.mt-latest-sidebar-content h4 a {
    color: #111827;
    text-decoration: none;
}

.mt-latest-sidebar-content h4 a:hover {
    color: var(--mt-primary);
}

.mt-latest-sidebar-content time {
    display: block;
    color: var(--mt-muted);
    font-size: 11px;
    font-weight: 800;
}

.mt-single-sidebar-widgets {
    margin-top: 20px;
}

@media (min-width: 981px) {
    .mt-single-sidebar .mt-latest-sidebar {
        position: sticky;
        top: 18px;
    }
}

@media (max-width: 980px) {
    .mt-latest-sidebar {
        margin-top: 4px;
    }

    .mt-latest-sidebar-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mt-latest-sidebar-item {
        grid-template-columns: 112px minmax(0, 1fr);
    }
}

@media (max-width: 560px) {
    .mt-latest-sidebar {
        border-radius: 12px;
        padding: 12px;
    }

    .mt-latest-sidebar-head h3 {
        font-size: 20px;
    }

    .mt-latest-sidebar-list {
        grid-template-columns: 1fr;
    }

    .mt-latest-sidebar-item {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 10px;
    }

    .mt-latest-sidebar-content h4 {
        font-size: 13.5px;
    }
}


/* v23: Hava durumu ve borsa mini bilgi barı şimdilik kaldırıldı. */

/* v21 - Haber detay güçlendirme: okuma araçları, paylaşım, etiket, kaynak, haber altı reklam, ilgili haberler */
.mt-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    color: #0190AD;
}

.mt-reading-time::before {
    content: "⏱";
    font-size: 14px;
}

.mt-single-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    margin: 0 0 22px;
    background: #f4f8fa;
    border: 1px solid rgba(1, 144, 173, 0.18);
    border-radius: 16px;
}

.mt-share-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.mt-share-label,
.mt-font-tools span {
    font-size: 13px;
    font-weight: 900;
    color: #052962;
}

.mt-share-btn,
.mt-font-tools button {
    border: 1px solid rgba(5, 41, 98, 0.12);
    background: #fff;
    color: #052962;
    text-decoration: none;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.mt-share-btn:hover,
.mt-font-tools button:hover {
    transform: translateY(-1px);
    border-color: #0190AD;
    background: #0190AD;
    color: #fff;
}

.mt-share-whatsapp {
    border-color: rgba(37, 211, 102, 0.28);
}

.mt-share-facebook {
    border-color: rgba(24, 119, 242, 0.24);
}

.mt-share-x {
    border-color: rgba(0, 0, 0, 0.2);
}

.mt-font-tools {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.mt-font-tools button.is-active {
    background: #052962;
    color: #fff;
}

.mt-content.mt-font-small {
    font-size: 16px;
}

.mt-content.mt-font-large {
    font-size: 20px;
}

.mt-content.mt-font-xlarge {
    font-size: 22px;
}

.mt-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 22px;
    margin-top: 26px;
    border-top: 1px solid #e6edf0;
}

.mt-post-tags strong {
    color: #052962;
    margin-right: 4px;
}

.mt-post-tags a {
    text-decoration: none;
    color: #0190AD;
    background: rgba(1, 144, 173, 0.08);
    padding: 7px 11px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

.mt-post-tags a:hover {
    background: #0190AD;
    color: #fff;
}

.mt-source-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 14px 16px;
    margin-top: 24px;
    background: #fff;
    border: 1px solid #e2e8ed;
    border-left: 5px solid #0190AD;
    border-radius: 14px;
    color: #334155;
    font-size: 14px;
}

.mt-source-box strong {
    color: #052962;
}

.mt-share-buttons-bottom {
    margin-top: 24px;
    padding: 16px 0 0;
    border-top: 1px solid #eef2f5;
}

.mt-single-bottom-ad {
    margin: 28px 0 34px;
    padding: 12px;
    border-radius: 18px;
    background: #f6f8f9;
    border: 1px solid #e6edf0;
}

.mt-single-bottom-ad .mt-managed-ad,
.mt-single-bottom-ad .mt-ad-widget,
.mt-single-bottom-ad .mt-ad-placeholder,
.mt-single-bottom-ad .mt-ad-code {
    width: 100%;
    max-width: 100%;
}

.mt-single-bottom-ad .mt-managed-ad img,
.mt-single-bottom-ad .mt-ad-widget img,
.mt-single-bottom-ad .mt-ad-placeholder {
    display: block;
    width: 100%;
    min-height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

.mt-single-bottom-ad .mt-ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(135deg, #edf5f7, #edf5f7 10px, #f8fbfc 10px, #f8fbfc 20px);
    color: #5b6b76;
    font-weight: 900;
}

.mt-related-posts {
    margin: 34px 0 10px;
    padding-top: 26px;
    border-top: 3px solid #052962;
}

.mt-related-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.mt-related-head span {
    width: 14px;
    height: 28px;
    border-radius: 99px;
    background: #0190AD;
    display: inline-block;
}

.mt-related-head h2 {
    margin: 0;
    color: #052962;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.4px;
}

.mt-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mt-related-card {
    background: #fff;
    border: 1px solid #e5edf1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.mt-related-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef4f6;
}

.mt-related-thumb img,
.mt-related-thumb .mt-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.mt-related-card:hover .mt-related-thumb img {
    transform: scale(1.04);
}

.mt-related-content {
    padding: 12px;
}

.mt-related-content .mt-cat-label {
    margin-bottom: 8px;
}

.mt-related-content h3 {
    margin: 0 0 9px;
    font-size: 15px;
    line-height: 1.25;
}

.mt-related-content h3 a {
    color: #052962;
    text-decoration: none;
}

.mt-related-content h3 a:hover {
    color: #0190AD;
}

.mt-related-content time {
    display: block;
    color: #7a8b99;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 980px) {
    .mt-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .mt-single-tools {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        border-radius: 14px;
    }

    .mt-share-buttons,
    .mt-font-tools {
        width: 100%;
    }

    .mt-font-tools {
        justify-content: space-between;
        white-space: normal;
    }

    .mt-font-tools button {
        flex: 1;
    }

    .mt-content.mt-font-small {
        font-size: 15.5px;
    }

    .mt-content.mt-font-large {
        font-size: 18px;
    }

    .mt-content.mt-font-xlarge {
        font-size: 19.5px;
    }

    .mt-related-grid {
        grid-template-columns: 1fr;
    }

    .mt-related-head h2 {
        font-size: 21px;
    }

    .mt-single-bottom-ad {
        margin: 24px 0 28px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .mt-share-btn {
        flex: 1 1 auto;
        min-width: 88px;
    }

    .mt-source-box {
        display: block;
    }

    .mt-source-box span {
        display: block;
        margin: 4px 0;
    }
}


/* v22: Mobil sabit alt menü */
.mt-mobile-bottom-nav {
    display: none;
}

@media (max-width: 760px) {
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }

    .mt-mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 12000;
        display: block;
        padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid rgba(1, 144, 173, 0.24);
        box-shadow: 0 -10px 28px rgba(5, 41, 98, 0.14);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .mt-mobile-bottom-menu {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mt-mobile-bottom-menu li {
        min-width: 0;
    }

    .mt-mobile-bottom-menu a {
        min-height: 56px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 16px;
        text-decoration: none;
        color: #052962;
        font-weight: 900;
        line-height: 1.05;
        transition: background .18s ease, color .18s ease, transform .18s ease;
    }

    .mt-mobile-bottom-menu a:hover,
    .mt-mobile-bottom-menu a:focus,
    .mt-mobile-bottom-menu .current-menu-item > a {
        background: rgba(1, 144, 173, 0.12);
        color: var(--mt-primary);
        transform: translateY(-1px);
    }

    .mt-mobile-bottom-menu a span {
        width: 24px;
        height: 24px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        background: var(--mt-primary);
        color: #fff;
        font-size: 13px;
        font-weight: 900;
    }

    .mt-mobile-bottom-menu a strong {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 11px;
        letter-spacing: -0.1px;
    }

    .mt-footer-bottom {
        padding-bottom: 18px;
    }
}

@media (max-width: 360px) {
    .mt-mobile-bottom-nav {
        padding-left: 6px;
        padding-right: 6px;
    }

    .mt-mobile-bottom-menu {
        gap: 3px;
    }

    .mt-mobile-bottom-menu a {
        border-radius: 13px;
    }

    .mt-mobile-bottom-menu a strong {
        font-size: 10px;
    }
}


/* v24 SEO breadcrumb */
.mt-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 18px;
    padding: 10px 12px;
    border: 1px solid rgba(1, 144, 173, 0.14);
    background: #f7fbfc;
    color: #53616a;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 12px;
}

.mt-breadcrumbs a {
    color: #0190AD;
    text-decoration: none;
    font-weight: 700;
}

.mt-breadcrumbs a:hover {
    text-decoration: underline;
}

.mt-breadcrumb-separator {
    color: #9aa7ad;
}

@media (max-width: 768px) {
    .mt-breadcrumbs {
        margin-bottom: 14px;
        padding: 9px 10px;
        font-size: 12px;
        border-radius: 10px;
    }
}


/* v25 - Profesyonel reklam yerleşimi */
.mt-content-inline-ad {
    margin: 26px 0;
    padding: 12px;
    border-radius: 18px;
    background: #f6f8f9;
    border: 1px solid #e6edf0;
    text-align: center;
    clear: both;
}

.mt-content-inline-ad .mt-managed-ad,
.mt-content-inline-ad .mt-ad-widget,
.mt-content-inline-ad .mt-ad-placeholder,
.mt-content-inline-ad .mt-ad-code {
    width: 100%;
    max-width: 728px;
    margin-left: auto;
    margin-right: auto;
}

.mt-content-inline-ad img,
.mt-content-inline-ad iframe,
.mt-content-inline-ad ins,
.mt-content-inline-ad .mt-ad-placeholder {
    max-width: 100% !important;
}

.mt-content-inline-ad .mt-ad-placeholder {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: repeating-linear-gradient(135deg, #edf5f7, #edf5f7 10px, #f8fbfc 10px, #f8fbfc 20px);
    color: #5b6b76;
    font-weight: 900;
}

.mt-single-sidebar-ad {
    margin-bottom: 24px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--mt-border);
    box-shadow: 0 10px 30px rgba(5, 41, 98, 0.06);
    text-align: center;
}

.mt-single-sidebar-ad .mt-managed-ad,
.mt-single-sidebar-ad .mt-ad-widget,
.mt-single-sidebar-ad .mt-ad-placeholder,
.mt-single-sidebar-ad .mt-ad-code {
    width: 100%;
    max-width: 336px;
    margin-left: auto;
    margin-right: auto;
}

.mt-single-sidebar-ad img,
.mt-single-sidebar-ad iframe,
.mt-single-sidebar-ad ins,
.mt-single-sidebar-ad .mt-ad-placeholder {
    max-width: 100% !important;
}

.mt-single-sidebar-ad .mt-ad-placeholder {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eef6f8;
    color: #5b6b76;
    font-weight: 900;
}

.mt-mobile-sticky-ad {
    display: none;
}

@media (max-width: 760px) {
    body.mt-has-mobile-sticky-ad {
        padding-bottom: calc(180px + env(safe-area-inset-bottom));
    }

    .mt-content-inline-ad {
        margin: 22px 0;
        padding: 10px;
        border-radius: 16px;
    }

    .mt-content-inline-ad .mt-managed-ad,
    .mt-content-inline-ad .mt-ad-widget,
    .mt-content-inline-ad .mt-ad-placeholder,
    .mt-content-inline-ad .mt-ad-code {
        max-width: 444px;
    }

    .mt-content-inline-ad .mt-managed-ad img,
    .mt-content-inline-ad .mt-ad-widget img,
    .mt-content-inline-ad .mt-ad-placeholder {
        width: 100%;
        aspect-ratio: 444 / 200;
        object-fit: cover;
    }

    .mt-mobile-sticky-ad {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(82px + env(safe-area-inset-bottom));
        z-index: 11950;
        display: block;
        max-width: 444px;
        margin: 0 auto;
        padding: 8px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(1, 144, 173, 0.22);
        box-shadow: 0 -8px 28px rgba(5, 41, 98, 0.20);
    }

    .mt-mobile-sticky-ad.is-hidden {
        display: none;
    }

    .mt-mobile-sticky-close {
        position: absolute;
        top: -11px;
        right: -5px;
        width: 26px;
        height: 26px;
        border: 0;
        border-radius: 999px;
        background: #052962;
        color: #fff;
        font-size: 18px;
        line-height: 1;
        font-weight: 900;
        cursor: pointer;
        box-shadow: 0 6px 16px rgba(5, 41, 98, 0.22);
    }

    .mt-mobile-sticky-ad .mt-managed-ad,
    .mt-mobile-sticky-ad .mt-ad-widget,
    .mt-mobile-sticky-ad .mt-ad-placeholder,
    .mt-mobile-sticky-ad .mt-ad-code {
        width: 100%;
        max-width: 444px;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        border-radius: 14px;
        text-align: center;
    }

    .mt-mobile-sticky-ad img,
    .mt-mobile-sticky-ad iframe,
    .mt-mobile-sticky-ad ins,
    .mt-mobile-sticky-ad .mt-ad-placeholder {
        max-width: 100% !important;
    }

    .mt-mobile-sticky-ad .mt-managed-ad img,
    .mt-mobile-sticky-ad .mt-ad-widget img,
    .mt-mobile-sticky-ad .mt-ad-placeholder {
        width: 100%;
        aspect-ratio: 444 / 120;
        object-fit: cover;
        min-height: 96px;
    }

    .mt-mobile-sticky-ad .mt-ad-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eef6f8;
        color: #5b6b76;
        font-size: 13px;
        font-weight: 900;
    }
}


/* v28 - Masaüstü logo alanı daha kompakt */
@media (min-width: 981px) {
    .mt-brand-area {
        padding: 16px 0 14px;
    }

    .mt-brand-flex {
        align-items: center;
    }

    .mt-logo-text {
        font-size: clamp(34px, 3.4vw, 46px);
        letter-spacing: -1.7px;
        line-height: .96;
    }

    .mt-logo-img img {
        max-height: 58px;
        width: auto;
    }

    .mt-tagline {
        margin-top: 5px;
        font-size: 13px;
    }

    .mt-search {
        min-height: 42px;
    }
}


/* v33 - Mobil logo alanı ve Haber Ara alanı %20 daha kompakt */
@media (max-width: 760px) {
    .mt-brand-area {
        padding-top: 11px;
        padding-bottom: 10px;
    }

    .mt-brand-flex {
        gap: 10px;
    }

    .mt-logo-text {
        font-size: clamp(25px, 8vw, 34px);
        letter-spacing: -1px;
        line-height: .94;
    }

    .mt-logo-img img {
        max-width: 208px;
        max-height: 50px;
        width: auto;
    }

    .mt-tagline {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.2;
    }

    .mt-search {
        min-height: 34px;
        padding: 2px;
        border-radius: 10px;
    }

    .mt-search input {
        padding: 7px 8px;
        font-size: 13px;
        line-height: 1.2;
    }

    .mt-search button {
        padding: 7px 10px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 1.2;
    }
}

@media (max-width: 420px) {
    .mt-logo-img img {
        max-width: 196px;
        max-height: 46px;
    }

    .mt-logo-text {
        font-size: clamp(24px, 8.5vw, 32px);
    }
}


/* v34 - Manşet slider üstündeki başlık/açıklama yazıları kaldırıldı */
.mt-hero-slider .mt-slider-head {
    display: none !important;
}
.mt-hero-slider {
    padding-top: 16px;
}


/* v35 - Revive Adserver ve tek mobil reklam kodu düzeltmesi */
.mt-managed-ad-code.only-mobile-code .mt-ad-code-mobile {
    display: block;
}
.mt-ad-code ins[data-revive-zoneid] {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* v39 - Haber detayında editoryal güçlendirme */
.mt-single-editorial-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.mt-post-views,
.mt-updated-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(1, 144, 173, 0.08);
    color: #052962;
    font-size: 13px;
    font-weight: 900;
}

.mt-post-views::before {
    content: "👁";
    font-size: 13px;
}

.mt-updated-date::before {
    content: "↻";
    color: #0190AD;
    font-weight: 950;
}

.mt-editor-picks {
    margin: 30px 0 28px;
    padding: 22px;
    border-radius: 20px;
    background: #f6fafb;
    border: 1px solid rgba(1, 144, 173, 0.16);
}

.mt-editor-picks-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mt-editor-picks-head span {
    width: 14px;
    height: 30px;
    display: inline-block;
    border-radius: 999px;
    background: #0190AD;
}

.mt-editor-picks-head h2 {
    margin: 0;
    color: #052962;
    font-size: 23px;
    letter-spacing: -0.4px;
    line-height: 1;
}

.mt-editor-picks-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mt-editor-pick-card {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 12px;
    align-items: stretch;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2edf2;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.mt-editor-pick-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: #eef5f7;
}

.mt-editor-pick-thumb img,
.mt-editor-pick-thumb .mt-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-editor-pick-content h3 {
    margin: 6px 0 8px;
    font-size: 15px;
    line-height: 1.25;
}

.mt-editor-pick-content h3 a {
    color: #052962;
    text-decoration: none;
}

.mt-editor-pick-content h3 a:hover {
    color: #0190AD;
}

.mt-editor-pick-content time {
    color: #7a8b99;
    font-size: 12px;
    font-weight: 800;
}

.mt-post-nav-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid #e6edf0;
}

.mt-post-nav-card {
    display: block;
    min-height: 112px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e2edf2;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform .18s ease, border-color .18s ease;
}

.mt-post-nav-card:hover {
    transform: translateY(-2px);
    border-color: #0190AD;
}

.mt-post-nav-kicker {
    display: block;
    margin-bottom: 9px;
    color: #0190AD;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.mt-post-nav-card strong {
    color: #052962;
    font-size: 16px;
    line-height: 1.3;
}

.mt-post-nav-next {
    text-align: right;
}

.mt-post-nav-empty {
    visibility: hidden;
}

@media (max-width: 760px) {
    .mt-single-editorial-meta {
        gap: 8px;
    }

    .mt-post-views,
    .mt-updated-date {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }

    .mt-editor-picks {
        padding: 14px;
        border-radius: 16px;
    }

    .mt-editor-picks-grid,
    .mt-post-nav-cards {
        grid-template-columns: 1fr;
    }

    .mt-editor-pick-card {
        grid-template-columns: 116px 1fr;
    }

    .mt-post-nav-next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .mt-editor-pick-card {
        grid-template-columns: 1fr;
    }

    .mt-editor-pick-thumb {
        aspect-ratio: 16 / 9;
    }
}


/* v40 - Panelden yönetilebilir Son Dakika bandı */
.mt-breaking-flash-ticker {
    border-top-color: color-mix(in srgb, var(--mt-breaking-color, #e30613) 18%, transparent);
    border-bottom-color: color-mix(in srgb, var(--mt-breaking-color, #e30613) 25%, transparent);
}

.mt-breaking-flash-ticker .mt-breaking-label {
    border-color: var(--mt-breaking-color, #e30613);
    color: var(--mt-breaking-color, #e30613);
}

.mt-breaking-flash-ticker .mt-breaking-label::before {
    background: var(--mt-breaking-color, #e30613);
}

.mt-breaking-flash-ticker .mt-breaking-track {
    animation-duration: var(--mt-breaking-duration, 34s);
}

.mt-breaking-flash-ticker .mt-breaking-track a:hover,
.mt-breaking-flash-ticker .mt-breaking-separator {
    color: var(--mt-breaking-color, #e30613);
}

.mt-breaking-no-flash .mt-breaking-label,
.mt-breaking-no-flash .mt-breaking-label::before {
    animation: none !important;
    box-shadow: none !important;
}

.mt-breaking-no-flash .mt-breaking-label {
    background: #fff !important;
    color: var(--mt-breaking-color, #e30613) !important;
}

.mt-breaking-no-marquee .mt-breaking-viewport {
    overflow-x: auto;
    scrollbar-width: thin;
}

.mt-breaking-no-marquee .mt-breaking-track {
    animation: none !important;
    transform: none !important;
}

.mt-breaking-no-marquee .mt-breaking-group[aria-hidden="true"] {
    display: none;
}

@keyframes mt-breaking-flash {
    0%, 52% {
        color: var(--mt-breaking-color, #e30613);
        background: #fff;
        box-shadow: 0 0 0 rgba(227, 6, 19, 0);
    }
    53%, 100% {
        color: #fff;
        background: var(--mt-breaking-color, #e30613);
        box-shadow: 0 0 18px color-mix(in srgb, var(--mt-breaking-color, #e30613) 45%, transparent);
    }
}

@media (max-width: 768px) {
    .mt-breaking-flash-ticker .mt-breaking-track {
        animation-duration: calc(var(--mt-breaking-duration, 34s) * .78);
    }
}

/* v41 - Reklam Test Modu */
.mt-ad-test-wrap {
    position: relative;
    border: 2px dashed rgba(1, 144, 173, .72);
    background: rgba(1, 144, 173, .045);
    padding: 34px 10px 10px;
    border-radius: 10px;
    min-height: 78px;
}

.mt-ad-test-wrap.is-passive {
    border-color: rgba(220, 38, 38, .65);
    background: rgba(220, 38, 38, .045);
}

.mt-ad-test-badge {
    position: absolute;
    left: 10px;
    top: 8px;
    right: 10px;
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #0190AD;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .14);
    pointer-events: none;
}

.mt-ad-test-badge strong {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
}

.mt-ad-test-badge span {
    opacity: .88;
    font-size: 11px;
    font-family: Consolas, Monaco, monospace;
}

.mt-ad-test-badge-passive {
    background: #dc2626;
}

.mt-ad-test-wrap .mt-ad-placeholder {
    border-color: rgba(15, 23, 42, .24);
    background: rgba(255, 255, 255, .75);
}

.mt-mobile-sticky-ad .mt-ad-test-wrap {
    min-height: 92px;
    padding-top: 36px;
}

@media (max-width: 768px) {
    .mt-ad-test-wrap {
        padding: 36px 8px 8px;
        border-radius: 8px;
    }

    .mt-ad-test-badge {
        left: 8px;
        right: 8px;
        font-size: 11px;
    }
}


/* v42 - Mobil Kullanıcı Deneyimi */
.mt-back-to-top {
    position: fixed;
    right: 16px;
    bottom: 88px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--mt-primary, #0190AD);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    cursor: pointer;
}

.mt-back-to-top.is-visible {
    display: flex;
}

.mt-back-to-top:hover,
.mt-back-to-top:focus {
    background: var(--mt-primary-dark, #017f99);
    color: #fff;
    outline: 2px solid rgba(255, 255, 255, .75);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    body.single .mt-single-image {
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 14px;
        background: #f1f5f9;
        margin-bottom: 10px;
    }

    body.single .mt-single-image img,
    body.single .mt-single-image .mt-placeholder {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 0;
    }

    body.single .mt-single-tools {
        position: sticky;
        top: 0;
        z-index: 40;
        margin: 10px -16px 16px;
        padding: 8px 12px;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 8px 24px rgba(15, 23, 42, .10);
        backdrop-filter: blur(10px);
    }

    body.admin-bar.single .mt-single-tools {
        top: 46px;
    }

    body.single .mt-single-tools .mt-share-buttons,
    body.single .mt-single-tools .mt-font-tools {
        width: auto;
        flex: 0 0 auto;
    }

    body.single .mt-single-tools .mt-share-label,
    body.single .mt-single-tools .mt-font-tools span {
        display: none;
    }

    body.single .mt-single-tools .mt-share-btn,
    body.single .mt-single-tools .mt-font-tools button {
        min-width: 38px;
        min-height: 38px;
        padding: 8px 10px;
        border-radius: 999px;
    }

    body.single .mt-content {
        overflow-wrap: anywhere;
    }

    .mt-breaking,
    .mt-breaking-flash-ticker {
        margin: 8px 0;
    }

    .mt-breaking-inner,
    .mt-breaking-flash-ticker .mt-breaking-inner {
        min-height: 34px;
        gap: 8px;
        padding: 5px 8px;
        border-radius: 10px;
    }

    .mt-breaking strong,
    .mt-breaking-flash-ticker .mt-breaking-label {
        min-height: 26px;
        padding: 5px 8px;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }

    .mt-breaking span,
    .mt-breaking-flash-ticker .mt-breaking-track a,
    .mt-breaking-flash-ticker .mt-breaking-text {
        font-size: 13px;
        line-height: 1.2;
    }

    .mt-breaking-flash-ticker .mt-breaking-viewport {
        min-height: 26px;
    }

    .mt-single-inline-ad {
        margin: 14px 0;
    }

    .mt-single-inline-ad .mt-single-style-ad,
    .mt-single-paragraph-ad,
    .mt-single-middle-ad,
    .mt-single-bottom-ad,
    .mt-managed-ad.mt-single-style-ad,
    .mt-ad-code-single {
        width: min(100%, 444px);
        max-width: 444px;
        margin-left: auto;
        margin-right: auto;
    }

    .mt-single-inline-ad .mt-single-style-ad img,
    .mt-single-paragraph-ad img,
    .mt-single-middle-ad img,
    .mt-single-bottom-ad img,
    .mt-managed-ad.mt-single-style-ad img,
    .mt-ad-code-single iframe,
    .mt-ad-code-single ins,
    .mt-single-inline-ad .mt-ad-placeholder {
        width: 100%;
        max-width: 444px;
        aspect-ratio: 444 / 200;
        object-fit: cover;
    }

    .mt-mobile-sticky-ad .mt-managed-ad,
    .mt-mobile-sticky-ad .mt-ad-widget,
    .mt-mobile-sticky-ad .mt-ad-placeholder,
    .mt-mobile-sticky-ad .mt-ad-code,
    .mt-mobile-sticky-ad iframe,
    .mt-mobile-sticky-ad ins,
    .mt-mobile-sticky-ad img {
        width: min(100%, 444px) !important;
        max-width: 444px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .mt-mobile-sticky-ad img,
    .mt-mobile-sticky-ad iframe,
    .mt-mobile-sticky-ad ins,
    .mt-mobile-sticky-ad .mt-ad-placeholder {
        aspect-ratio: 444 / 200;
        min-height: 0;
        object-fit: cover;
    }

    .mt-back-to-top {
        display: none;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .mt-back-to-top.is-visible {
        display: flex;
    }

    body.mt-has-mobile-bottom-nav .mt-back-to-top {
        bottom: 84px;
    }

    body.mt-has-mobile-sticky-ad .mt-back-to-top {
        bottom: 142px;
    }

    body.mt-has-mobile-bottom-nav.mt-has-mobile-sticky-ad .mt-back-to-top {
        bottom: 198px;
    }
}

@media (max-width: 480px) {
    body.single .mt-single-tools {
        justify-content: space-between;
        gap: 8px;
    }

    body.single .mt-single-tools .mt-share-buttons {
        gap: 6px;
    }

    body.single .mt-single-tools .mt-share-btn,
    body.single .mt-single-tools .mt-font-tools button {
        min-width: 36px;
        min-height: 36px;
        padding: 7px 9px;
        font-size: 12px;
    }

    .mt-breaking-inner,
    .mt-breaking-flash-ticker .mt-breaking-inner {
        min-height: 32px;
        padding: 4px 7px;
    }

    .mt-breaking strong,
    .mt-breaking-flash-ticker .mt-breaking-label {
        min-height: 24px;
        padding: 4px 7px;
        font-size: 10px;
    }
}

/* v43 - Son Dakika kayan yazı düzeltmesi */
.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-viewport {
    overflow: hidden !important;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-track {
    display: inline-flex !important;
    align-items: center;
    gap: 0;
    width: max-content;
    min-width: max-content;
    white-space: nowrap;
    will-change: transform;
    animation-name: mt-breaking-marquee-v43 !important;
    animation-duration: var(--mt-breaking-duration, 34s) !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-group {
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    padding-right: 14px;
    flex: 0 0 auto !important;
    white-space: nowrap;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-track a,
.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-text,
.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-separator {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-track-ready {
    transform: translate3d(0, 0, 0);
}

@keyframes mt-breaking-marquee-v43 {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(calc(-1 * var(--mt-breaking-distance, 50%)), 0, 0);
    }
}

@media (max-width: 768px) {
    .mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-track {
        animation-duration: calc(var(--mt-breaking-duration, 34s) * .78) !important;
    }

    .mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-viewport {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-track {
        animation: none !important;
        transform: none !important;
    }
}


/* v44 - Son Dakika yazısını kesin sola kaydırma ve cache sonrası animasyon düzeltmesi */
.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-viewport {
    position: relative;
    overflow: hidden !important;
    width: 100%;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-track {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex: 0 0 auto !important;
    width: max-content !important;
    min-width: max-content !important;
    white-space: nowrap !important;
    will-change: transform;
    animation: mt-breaking-left-v44 var(--mt-breaking-duration, 34s) linear infinite !important;
    animation-play-state: running !important;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-viewport:hover .mt-breaking-track {
    animation-play-state: running !important;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding-right: 28px !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-group[aria-hidden="true"] {
    display: inline-flex !important;
}

.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-track a,
.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-text,
.mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-separator {
    display: inline-block !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

@keyframes mt-breaking-left-v44 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .mt-breaking-flash-ticker:not(.mt-breaking-no-marquee) .mt-breaking-track {
        animation: mt-breaking-left-v44 calc(var(--mt-breaking-duration, 34s) * .72) linear infinite !important;
    }
}


/* v45 - Otomatik Son Dakika ticker: kesin sağdan sola akış + flaş etiket */
.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] {
    --mt-breaking-color: var(--mt-breaking-color, #e30613);
    overflow: hidden !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-inner {
    overflow: hidden !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-label {
    background: var(--mt-breaking-color, #e30613) !important;
    border-color: var(--mt-breaking-color, #e30613) !important;
    color: #fff !important;
    animation: mt-breaking-label-flash-v45 .82s steps(2, end) infinite !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-label::before {
    background: #fff !important;
    box-shadow: 0 0 0 0 rgba(255,255,255,.7) !important;
    animation: mt-breaking-pulse-v45 .82s ease-in-out infinite !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-viewport {
    position: relative !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
    -webkit-overflow-scrolling: auto !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-track {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex: 0 0 auto !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
    transform: translate3d(var(--mt-breaking-start, 100vw),0,0);
    will-change: transform !important;
    animation-name: mt-breaking-auto-left-v45 !important;
    animation-duration: var(--mt-breaking-effective-duration, var(--mt-breaking-duration, 34s)) !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-viewport:hover .mt-breaking-track,
.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-track:hover {
    animation-play-state: running !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding-right: 44px !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-group[aria-hidden="true"] {
    display: inline-flex !important;
}

.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-track a,
.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-text,
.mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-separator {
    display: inline-block !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

@keyframes mt-breaking-auto-left-v45 {
    0% { transform: translate3d(var(--mt-breaking-start, 100vw), 0, 0); }
    100% { transform: translate3d(calc(-1 * var(--mt-breaking-end, 100%)), 0, 0); }
}

@keyframes mt-breaking-label-flash-v45 {
    0%, 49% {
        opacity: 1;
        filter: brightness(1);
        box-shadow: 0 0 0 rgba(227,6,19,0);
    }
    50%, 100% {
        opacity: .72;
        filter: brightness(1.32);
        box-shadow: 0 0 18px rgba(227,6,19,.55);
    }
}

@keyframes mt-breaking-pulse-v45 {
    0% { transform: translateY(-50%) scale(.78); opacity: .75; }
    50% { transform: translateY(-50%) scale(1.18); opacity: 1; }
    100% { transform: translateY(-50%) scale(.78); opacity: .75; }
}

@media (max-width: 768px) {
    .mt-breaking-flash-ticker[data-mt-breaking-auto="1"] .mt-breaking-track {
        animation-duration: calc(var(--mt-breaking-effective-duration, var(--mt-breaking-duration, 34s)) * .78) !important;
    }
}


/* v46 - Son Dakika için CSS animasyonundan bağımsız JavaScript destekli kesin kayan yazı */
.mt-breaking-v46-js,
.mt-breaking-v46-js .mt-breaking-inner,
.mt-breaking-v46-js .mt-breaking-viewport {
    overflow: hidden !important;
}

.mt-breaking-v46-js .mt-breaking-viewport {
    position: relative !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: auto !important;
}

.mt-breaking-v46-js .mt-breaking-track {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
    animation: none !important;
    transition: none !important;
    will-change: transform !important;
}

.mt-breaking-v46-js .mt-breaking-group,
.mt-breaking-v46-js .mt-breaking-group[aria-hidden="true"] {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    gap: 16px !important;
    padding-right: 46px !important;
    white-space: nowrap !important;
}

.mt-breaking-v46-js .mt-breaking-track a,
.mt-breaking-v46-js .mt-breaking-text,
.mt-breaking-v46-js .mt-breaking-separator {
    display: inline-block !important;
    flex: 0 0 auto !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

.mt-breaking-v46-js .mt-breaking-label {
    background: var(--mt-breaking-color, #e30613) !important;
    border-color: var(--mt-breaking-color, #e30613) !important;
    color: #fff !important;
    animation: mt-breaking-label-flash-v46 .74s steps(2, end) infinite !important;
}

.mt-breaking-v46-js .mt-breaking-label::before {
    background: #fff !important;
    animation: mt-breaking-dot-flash-v46 .74s ease-in-out infinite !important;
}

@keyframes mt-breaking-label-flash-v46 {
    0%, 48% { opacity: 1; filter: brightness(1); }
    49%, 100% { opacity: .68; filter: brightness(1.35); }
}

@keyframes mt-breaking-dot-flash-v46 {
    0% { opacity: .65; transform: translateY(-50%) scale(.75); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.25); }
    100% { opacity: .65; transform: translateY(-50%) scale(.75); }
}


/* v48 - Blinking red arrow before news titles */
@keyframes mtBlinkArrow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .35; transform: scale(.92); }
}

.mt-slide-content h2 a,
.mt-category-feature-content h3 a,
.mt-list-card h3 a,
.mt-category-news-overlay h3,
.mt-latest-sidebar-item h4 a,
.mt-related-card h3 a,
.mt-editor-pick-card h3 a,
.mt-columnist-title,
.single-post .entry-header h1,
.single-post article h1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mt-slide-content h2 a::before,
.mt-category-feature-content h3 a::before,
.mt-list-card h3 a::before,
.mt-category-news-overlay h3::before,
.mt-latest-sidebar-item h4 a::before,
.mt-related-card h3 a::before,
.mt-editor-pick-card h3 a::before,
.mt-columnist-title::before,
.single-post .entry-header h1::before,
.single-post article h1::before {
    content: '';
    width: 14px;
    min-width: 14px;
    height: 11px;
    display: inline-block;
    background: #ff120b;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    animation: mtBlinkArrow 1s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 18, 11, .28);
}

@media (max-width: 760px) {
    .mt-slide-content h2 a,
    .mt-category-feature-content h3 a,
    .mt-list-card h3 a,
    .mt-category-news-overlay h3,
    .mt-latest-sidebar-item h4 a,
    .mt-related-card h3 a,
    .mt-editor-pick-card h3 a,
    .mt-columnist-title,
    .single-post .entry-header h1,
    .single-post article h1 {
        gap: 8px;
    }

    .mt-slide-content h2 a::before,
    .mt-category-feature-content h3 a::before,
    .mt-list-card h3 a::before,
    .mt-category-news-overlay h3::before,
    .mt-latest-sidebar-item h4 a::before,
    .mt-related-card h3 a::before,
    .mt-editor-pick-card h3 a::before,
    .mt-columnist-title::before,
    .single-post .entry-header h1::before,
    .single-post article h1::before {
        width: 12px;
        min-width: 12px;
        height: 9px;
    }
}


/* v49 - Move blinking red arrow to after truncated title / ellipsis */
.mt-slide-content h2 a,
.mt-category-feature-content h3 a,
.mt-list-card h3 a,
.mt-category-news-overlay h3,
.mt-latest-sidebar-item h4 a,
.mt-related-card h3 a,
.mt-editor-pick-card h3 a,
.mt-columnist-title,
.single-post .entry-header h1,
.single-post article h1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mt-slide-content h2 a::before,
.mt-category-feature-content h3 a::before,
.mt-list-card h3 a::before,
.mt-category-news-overlay h3::before,
.mt-latest-sidebar-item h4 a::before,
.mt-related-card h3 a::before,
.mt-editor-pick-card h3 a::before,
.mt-columnist-title::before,
.single-post .entry-header h1::before,
.single-post article h1::before {
    content: none !important;
    display: none !important;
}

.mt-slide-content h2 a::after,
.mt-category-feature-content h3 a::after,
.mt-list-card h3 a::after,
.mt-category-news-overlay h3::after,
.mt-latest-sidebar-item h4 a::after,
.mt-related-card h3 a::after,
.mt-editor-pick-card h3 a::after,
.mt-columnist-title::after,
.single-post .entry-header h1::after,
.single-post article h1::after {
    content: '';
    width: 14px;
    min-width: 14px;
    height: 11px;
    display: inline-block;
    background: #ff120b;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    animation: mtBlinkArrow 1s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 18, 11, .28);
    margin-left: 2px;
    vertical-align: middle;
}

@media (max-width: 760px) {
    .mt-slide-content h2 a,
    .mt-category-feature-content h3 a,
    .mt-list-card h3 a,
    .mt-category-news-overlay h3,
    .mt-latest-sidebar-item h4 a,
    .mt-related-card h3 a,
    .mt-editor-pick-card h3 a,
    .mt-columnist-title,
    .single-post .entry-header h1,
    .single-post article h1 {
        gap: 8px;
    }

    .mt-slide-content h2 a::after,
    .mt-category-feature-content h3 a::after,
    .mt-list-card h3 a::after,
    .mt-category-news-overlay h3::after,
    .mt-latest-sidebar-item h4 a::after,
    .mt-related-card h3 a::after,
    .mt-editor-pick-card h3 a::after,
    .mt-columnist-title::after,
    .single-post .entry-header h1::after,
    .single-post article h1::after {
        width: 12px;
        min-width: 12px;
        height: 9px;
    }
}


/* v50 - Move blinking arrow from title end to slider number area */
.mt-slide-content h2 a::after,
.mt-category-feature-content h3 a::after,
.mt-list-card h3 a::after,
.mt-category-news-overlay h3::after,
.mt-latest-sidebar-item h4 a::after,
.mt-related-card h3 a::after,
.mt-editor-pick-card h3 a::after,
.mt-columnist-title::after,
.single-post .entry-header h1::after,
.single-post article h1::after {
    content: none !important;
    display: none !important;
}

.mt-slide-number,
.mt-category-news-number {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.mt-slide-number::before,
.mt-category-news-number::before {
    content: '';
    width: 14px;
    min-width: 14px;
    height: 11px;
    display: inline-block;
    background: #ff120b;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
    animation: mtBlinkArrow 1s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 18, 11, .28);
}

@media (max-width: 760px) {
    .mt-slide-number,
    .mt-category-news-number {
        gap: 6px;
    }

    .mt-slide-number::before,
    .mt-category-news-number::before {
        width: 12px;
        min-width: 12px;
        height: 9px;
    }
}


/* v51 - Breaking ticker separator logo */
.mt-breaking-separator-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.mt-breaking-separator-logo img {
    display: block !important;
    object-fit: contain !important;
    max-width: none !important;
    height: auto;
}


/* v53 - En Çok Okunan Haberler */
.mt-popular-home {
    margin-top: 28px;
    margin-bottom: 28px;
}

.mt-popular-head span {
    color: #64748b;
    font-weight: 700;
    font-size: 13px;
}

.mt-popular-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mt-popular-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.mt-popular-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef2f7;
}

.mt-popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.mt-popular-card:hover .mt-popular-thumb img {
    transform: scale(1.045);
}

.mt-popular-rank {
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--mt-primary, #0190AD);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(1, 144, 173, .32);
}

.mt-popular-body {
    padding: 14px 15px 16px;
}

.mt-popular-body .post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 9px;
    padding: 0;
    list-style: none;
}

.mt-popular-body .post-categories a {
    display: inline-flex;
    background: rgba(1, 144, 173, .1);
    color: var(--mt-primary, #0190AD);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.mt-popular-body h3 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.28;
}

.mt-popular-body h3 a {
    color: #0f172a;
    text-decoration: none;
}

.mt-popular-body h3 a:hover {
    color: var(--mt-primary, #0190AD);
}

.mt-popular-views {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.mt-popular-views::before {
    content: '👁';
    margin-right: 6px;
}

.mt-popular-sidebar {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.mt-popular-sidebar h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #0f172a;
}

.mt-popular-sidebar-list {
    display: grid;
    gap: 10px;
}

.mt-popular-sidebar-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
    color: #0f172a;
    text-decoration: none;
}

.mt-popular-sidebar-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.mt-popular-sidebar-rank {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #fff;
    font-weight: 900;
}

.mt-popular-sidebar-title {
    display: block;
    font-weight: 800;
    line-height: 1.28;
}

.mt-popular-sidebar-views {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
}

.mt-popular-sidebar-item:hover .mt-popular-sidebar-title {
    color: var(--mt-primary, #0190AD);
}

@media (max-width: 980px) {
    .mt-popular-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mt-popular-home {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .mt-popular-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mt-popular-body h3 {
        font-size: 15px;
    }
}


/* v56 - Haber detay karanlık mod ve sade okuma modu */
.mt-reader-tools {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mt-mode-toggle {
    border: 1px solid rgba(5, 41, 98, 0.12);
    background: #fff;
    color: #052962;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    outline: 2px solid rgba(255, 255, 255, .75);
    outline-offset: 2px;
}

.mt-mode-toggle.is-active,
.mt-font-tools button.is-active {
    background: #052962;
    color: #fff;
    border-color: #052962;
}

html.mt-dark-mode-root body,
body.mt-dark-mode {
    background: #07111f !important;
    color: #dbeafe !important;
}

html.mt-dark-mode-root .mt-topbar,
html.mt-dark-mode-root .mt-site-header,
html.mt-dark-mode-root .mt-mainnav,
html.mt-dark-mode-root .mt-single-main,
html.mt-dark-mode-root .mt-single-tools,
html.mt-dark-mode-root .mt-latest-sidebar,
html.mt-dark-mode-root .mt-popular-sidebar,
html.mt-dark-mode-root .mt-source-box,
html.mt-dark-mode-root .mt-related-posts,
html.mt-dark-mode-root .mt-editor-picks,
html.mt-dark-mode-root .mt-post-nav-card,
body.mt-dark-mode .mt-topbar,
body.mt-dark-mode .mt-site-header,
body.mt-dark-mode .mt-mainnav,
body.mt-dark-mode .mt-single-main,
body.mt-dark-mode .mt-single-tools,
body.mt-dark-mode .mt-latest-sidebar,
body.mt-dark-mode .mt-popular-sidebar,
body.mt-dark-mode .mt-source-box,
body.mt-dark-mode .mt-related-posts,
body.mt-dark-mode .mt-editor-picks,
body.mt-dark-mode .mt-post-nav-card {
    background: #0f1b2d !important;
    color: #dbeafe !important;
    border-color: rgba(148, 163, 184, .20) !important;
}

html.mt-dark-mode-root .mt-content,
html.mt-dark-mode-root .mt-content p,
html.mt-dark-mode-root .mt-content li,
html.mt-dark-mode-root .mt-single-head h1,
html.mt-dark-mode-root .mt-related-posts h2,
html.mt-dark-mode-root .mt-editor-picks h2,
html.mt-dark-mode-root .mt-latest-sidebar h3,
html.mt-dark-mode-root .mt-popular-sidebar h3,
body.mt-dark-mode .mt-content,
body.mt-dark-mode .mt-content p,
body.mt-dark-mode .mt-content li,
body.mt-dark-mode .mt-single-head h1,
body.mt-dark-mode .mt-related-posts h2,
body.mt-dark-mode .mt-editor-picks h2,
body.mt-dark-mode .mt-latest-sidebar h3,
body.mt-dark-mode .mt-popular-sidebar h3 {
    color: #e5eefb !important;
}

html.mt-dark-mode-root a,
body.mt-dark-mode a {
    color: #93c5fd;
}

html.mt-dark-mode-root .mt-meta,
html.mt-dark-mode-root .mt-date,
html.mt-dark-mode-root time,
html.mt-dark-mode-root .mt-source-box,
body.mt-dark-mode .mt-meta,
body.mt-dark-mode .mt-date,
body.mt-dark-mode time,
body.mt-dark-mode .mt-source-box {
    color: #b6c7dc !important;
}

html.mt-dark-mode-root .mt-share-btn,
html.mt-dark-mode-root .mt-font-tools button,
html.mt-dark-mode-root .mt-mode-toggle,
body.mt-dark-mode .mt-share-btn,
body.mt-dark-mode .mt-font-tools button,
body.mt-dark-mode .mt-mode-toggle {
    background: #111f35;
    color: #e5eefb;
    border-color: rgba(148, 163, 184, .25);
    outline-color: rgba(15, 23, 42, .35);
}

html.mt-dark-mode-root .mt-mode-toggle.is-active,
html.mt-dark-mode-root .mt-font-tools button.is-active,
body.mt-dark-mode .mt-mode-toggle.is-active,
body.mt-dark-mode .mt-font-tools button.is-active {
    background: #0190AD;
    color: #fff;
    border-color: #0190AD;
}

html.mt-dark-mode-root .mt-single-image,
html.mt-dark-mode-root .mt-managed-ad,
html.mt-dark-mode-root .mt-ad-placeholder,
body.mt-dark-mode .mt-single-image,
body.mt-dark-mode .mt-managed-ad,
body.mt-dark-mode .mt-ad-placeholder {
    background: #0b1628 !important;
    border-color: rgba(148, 163, 184, .18) !important;
}

html.mt-reading-mode-root body.single .mt-single-layout,
body.single.mt-reading-mode .mt-single-layout {
    display: block !important;
    max-width: 980px !important;
}

html.mt-reading-mode-root body.single .mt-single-main,
body.single.mt-reading-mode .mt-single-main {
    width: 100% !important;
    max-width: 880px !important;
    margin: 0 auto !important;
}

html.mt-reading-mode-root body.single .mt-content,
body.single.mt-reading-mode .mt-content {
    font-size: 20px;
    line-height: 1.9;
}

html.mt-reading-mode-root body.single .mt-content p,
body.single.mt-reading-mode .mt-content p {
    margin-bottom: 1.35em;
}

html.mt-reading-mode-root body.single .mt-single-sidebar,
html.mt-reading-mode-root body.single .mt-single-inline-ad,
html.mt-reading-mode-root body.single .mt-content-inline-ad,
html.mt-reading-mode-root body.single .mt-mobile-sticky-ad,
html.mt-reading-mode-root body.single .mt-editor-picks,
html.mt-reading-mode-root body.single .mt-related-posts,
html.mt-reading-mode-root body.single .mt-post-nav-cards,
html.mt-reading-mode-root body.single .mt-source-box,
html.mt-reading-mode-root body.single .mt-post-tags,
html.mt-reading-mode-root body.single .mt-share-buttons-bottom,
body.single.mt-reading-mode .mt-single-sidebar,
body.single.mt-reading-mode .mt-single-inline-ad,
body.single.mt-reading-mode .mt-content-inline-ad,
body.single.mt-reading-mode .mt-mobile-sticky-ad,
body.single.mt-reading-mode .mt-editor-picks,
body.single.mt-reading-mode .mt-related-posts,
body.single.mt-reading-mode .mt-post-nav-cards,
body.single.mt-reading-mode .mt-source-box,
body.single.mt-reading-mode .mt-post-tags,
body.single.mt-reading-mode .mt-share-buttons-bottom {
    display: none !important;
}

html.mt-reading-mode-root body.single .mt-single-head,
body.single.mt-reading-mode .mt-single-head {
    text-align: left;
}

html.mt-reading-mode-root body.single .mt-single-head h1,
body.single.mt-reading-mode .mt-single-head h1 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.12;
}

html.mt-reading-mode-root body.single .mt-single-tools,
body.single.mt-reading-mode .mt-single-tools {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    body.single .mt-single-tools {
        gap: 6px;
        justify-content: center;
        overflow-x: auto;
    }

    body.single .mt-reader-tools {
        flex: 0 0 auto;
    }

    body.single .mt-mode-toggle b {
        display: none;
    }

    body.single .mt-mode-toggle,
    body.single .mt-font-tools button {
        min-width: 38px;
        min-height: 38px;
        padding: 8px 10px;
    }

    html.mt-reading-mode-root body.single .mt-content,
    body.single.mt-reading-mode .mt-content {
        font-size: 18px;
        line-height: 1.85;
    }
}


/* v58 - Yazar fotoğrafları ve yazarın diğer yazıları */
.mt-columnist-card {
    align-items: flex-start;
}

.mt-columnist-avatar {
    box-shadow: 0 10px 26px rgba(1, 144, 173, .12);
    border: 3px solid #fff;
}

.mt-columnist-body h3 a {
    color: inherit;
}

.mt-columnist-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 9px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--mt-primary);
    color: #fff !important;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(1, 144, 173, .20);
}

.mt-columnist-more:hover {
    background: #e30613;
    color: #fff !important;
}

.mt-author-archive-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    padding: 26px 0 34px;
}

.mt-author-hero {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 22px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f4fbfd 100%);
    border: 1px solid var(--mt-border);
    border-left: 6px solid var(--mt-primary);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.mt-author-hero-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--mt-soft);
    border: 5px solid #fff;
    box-shadow: 0 14px 32px rgba(1, 144, 173, .18);
}

.mt-author-hero-photo img,
.mt-author-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mt-author-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--mt-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.mt-author-hero h1 {
    margin: 0 0 8px;
    color: var(--mt-dark);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 950;
    line-height: 1.05;
}

.mt-author-hero p {
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.mt-author-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.mt-author-links a {
    padding: 7px 11px;
    border: 1px solid var(--mt-border);
    border-radius: 999px;
    background: #fff;
    color: var(--mt-primary);
    font-size: 12px;
    font-weight: 850;
}

.mt-author-posts-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--mt-border);
    border-left: 5px solid var(--mt-primary);
}

.mt-author-posts-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 950;
    color: var(--mt-dark);
}

@media (max-width: 980px) {
    .mt-author-archive-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mt-columnist-card {
        grid-template-columns: 64px 1fr;
    }

    .mt-columnist-avatar {
        width: 64px;
        height: 64px;
    }

    .mt-columnist-more {
        font-size: 10px;
        padding: 7px 9px;
    }

    .mt-author-hero {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .mt-author-hero-photo {
        width: 126px;
        height: 126px;
    }
}


/* v62 - Abonelik / reklamsız okuma modu */
body.mt-adfree-subscriber .mt-managed-ad,
body.mt-adfree-subscriber .mt-ad-placeholder,
body.mt-adfree-subscriber .mt-home-ad,
body.mt-adfree-subscriber .mt-single-inline-ad,
body.mt-adfree-subscriber .mt-content-inline-ad,
body.mt-adfree-subscriber .mt-mobile-sticky-ad,
body.mt-adfree-subscriber .mt-mobile-sticky-ad-widget,
body.mt-adfree-subscriber .mt-ad-widget,
body.mt-adfree-subscriber .mt-ad-test-wrap {
    display: none !important;
}

.mt-subscription-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    margin: 18px 0 22px;
    border-radius: 18px;
    border: 1px solid rgba(1, 144, 173, .24);
    background: linear-gradient(135deg, rgba(1, 144, 173, .10), rgba(14, 22, 32, .035));
    box-shadow: 0 16px 45px rgba(8, 24, 38, .08);
}

.mt-subscription-cta-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-primary, #0190AD);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(1, 144, 173, .25);
}

.mt-subscription-cta-body strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    color: var(--mt-dark, #101820);
    margin-bottom: 4px;
}

.mt-subscription-cta-body p {
    margin: 0;
    color: #4d5b66;
    font-size: 14px;
    line-height: 1.5;
}

.mt-subscription-cta-body span {
    display: block;
    margin-top: 5px;
    color: #7b8791;
    font-size: 12px;
}

.mt-subscription-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--mt-primary, #0190AD);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(1, 144, 173, .22);
}

.mt-subscription-cta-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

body.mt-dark-mode .mt-subscription-cta,
html.mt-dark-mode-root body .mt-subscription-cta {
    border-color: rgba(1, 144, 173, .32);
    background: linear-gradient(135deg, rgba(1, 144, 173, .18), rgba(255,255,255,.045));
}

body.mt-dark-mode .mt-subscription-cta-body strong,
html.mt-dark-mode-root body .mt-subscription-cta-body strong {
    color: #f4f8fb;
}

body.mt-dark-mode .mt-subscription-cta-body p,
html.mt-dark-mode-root body .mt-subscription-cta-body p {
    color: #c9d2dc;
}

@media (max-width: 760px) {
    .mt-subscription-cta {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 18px;
    }

    .mt-subscription-cta-button {
        width: 100%;
        white-space: normal;
    }
}


/* v63 - Subscription payment page */
.mt-subscription-page-wrap {
    padding-top: 34px;
    padding-bottom: 44px;
}

.mt-subscription-page {
    display: grid;
    gap: 24px;
}

.mt-subscription-page-hero {
    border-radius: 26px;
    padding: clamp(24px, 4vw, 44px);
    background: radial-gradient(circle at top left, rgba(1,144,173,.23), transparent 35%), linear-gradient(135deg, #06121c, #0e2534);
    color: #fff;
    box-shadow: 0 20px 60px rgba(6,18,28,.16);
}

.mt-subscription-page-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 800;
    letter-spacing: .4px;
    margin-bottom: 12px;
}

.mt-subscription-page-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 54px);
    letter-spacing: -1.5px;
}

.mt-subscription-page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

.mt-subscription-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 20px;
}

.mt-subscription-packages,
.mt-subscription-bank-card,
.mt-subscription-order-form,
.mt-subscription-alert {
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 16px 44px rgba(17,24,39,.07);
}

.mt-subscription-packages h2,
.mt-subscription-bank-card h2,
.mt-subscription-order-form h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.mt-subscription-package-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mt-subscription-package-card {
    border: 1px solid rgba(1,144,173,.18);
    background: linear-gradient(180deg, rgba(1,144,173,.08), rgba(1,144,173,.02));
    border-radius: 18px;
    padding: 18px;
}

.mt-subscription-package-card strong,
.mt-subscription-price,
.mt-subscription-package-card em {
    display: block;
}

.mt-subscription-price {
    margin: 10px 0 6px;
    color: var(--mt-primary, #0190AD);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;
}

.mt-subscription-package-card em {
    color: #64748b;
    font-style: normal;
    font-weight: 700;
}

.mt-subscription-bank-card code {
    display: inline-flex;
    padding: 7px 9px;
    background: #f1f5f9;
    border-radius: 8px;
    white-space: normal;
    word-break: break-word;
}

.mt-subscription-note {
    color: #64748b;
    border-top: 1px solid #edf2f7;
    padding-top: 12px;
}

.mt-subscription-alert {
    font-weight: 800;
}

.mt-subscription-alert-success {
    border-color: rgba(0,163,42,.22);
    background: #f0fdf4;
    color: #166534;
}

.mt-subscription-alert-error {
    border-color: rgba(214,54,56,.24);
    background: #fef2f2;
    color: #991b1b;
}

.mt-subscription-alert-info {
    border-color: rgba(1,144,173,.22);
    background: #effcff;
    color: #0f6173;
}

.mt-subscription-login-link,
.mt-subscription-order-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--mt-primary, #0190AD);
    color: #fff !important;
    font-weight: 900;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.mt-subscription-order-form {
    display: grid;
    gap: 12px;
}

.mt-subscription-order-form select,
.mt-subscription-order-form input[type=file],
.mt-subscription-order-form textarea {
    width: 100%;
    border: 1px solid #dbe4ea;
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
}

.mt-subscription-order-form textarea {
    min-height: 110px;
    resize: vertical;
}

.mt-subscription-order-form small {
    color: #64748b;
}

@media (max-width: 820px) {
    .mt-subscription-grid,
    .mt-subscription-package-list {
        grid-template-columns: 1fr;
    }
}


/* v65 - Bildirim / Push izin kutusu */
.mt-push-permission {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: min(360px, calc(100vw - 32px));
    z-index: 99999;
    background: rgba(18, 28, 39, .96);
    color: #fff;
    border: 1px solid rgba(1, 144, 173, .45);
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .28);
    padding: 18px 18px 16px;
    backdrop-filter: blur(14px);
}

.mt-push-permission[hidden] {
    display: none !important;
}

.mt-push-permission strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
    margin: 0 26px 8px 0;
}

.mt-push-permission p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,.82);
}

.mt-push-enable {
    appearance: none;
    border: 0;
    background: #0190AD;
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
}

.mt-push-enable:hover {
    filter: brightness(1.08);
}

.mt-push-close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 760px) {
    .mt-push-permission {
        right: 12px;
        left: 12px;
        bottom: 82px;
        width: auto;
    }
}


/* v66 - Üyeye özel haberler */
.mt-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 10px 0;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #111827, #0190AD);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(1, 144, 173, .20);
}

.mt-premium-content-wrap {
    position: relative;
}

.mt-premium-preview {
    position: relative;
    max-height: 430px;
    overflow: hidden;
}

.mt-premium-preview::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 82%);
    pointer-events: none;
}

.mt-premium-lock {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    margin: 26px 0 30px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(1, 144, 173, .22);
    background: linear-gradient(135deg, rgba(1, 144, 173, .11), rgba(17, 24, 39, .04));
    box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
}

.mt-premium-lock-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #0190AD;
    color: #fff;
    font-size: 27px;
    box-shadow: 0 12px 28px rgba(1, 144, 173, .30);
}

.mt-premium-lock-body strong {
    display: block;
    font-size: 24px;
    line-height: 1.15;
    color: #101827;
    margin: 0 0 8px;
}

.mt-premium-lock-body p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.mt-premium-lock-note {
    font-size: 13px !important;
    color: #64748b !important;
}

.mt-premium-lock-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.mt-premium-lock-button,
.mt-premium-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.mt-premium-lock-button {
    background: #e30613;
    color: #fff;
    box-shadow: 0 12px 26px rgba(227, 6, 19, .22);
}

.mt-premium-lock-button:hover {
    color: #fff;
    transform: translateY(-1px);
}

.mt-premium-login-link {
    color: #0190AD;
    background: rgba(1, 144, 173, .10);
}

html.mt-dark-mode-root .mt-premium-preview::after,
body.mt-dark-mode .mt-premium-preview::after {
    background: linear-gradient(to bottom, rgba(17,24,39,0), #111827 82%);
}

html.mt-dark-mode-root .mt-premium-lock,
body.mt-dark-mode .mt-premium-lock {
    background: linear-gradient(135deg, rgba(1, 144, 173, .18), rgba(255,255,255,.04));
    border-color: rgba(1, 144, 173, .35);
}

html.mt-dark-mode-root .mt-premium-lock-body strong,
body.mt-dark-mode .mt-premium-lock-body strong {
    color: #f8fafc;
}

html.mt-dark-mode-root .mt-premium-lock-body p,
body.mt-dark-mode .mt-premium-lock-body p {
    color: #cbd5e1;
}

@media (max-width: 640px) {
    .mt-premium-lock {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 20px;
    }

    .mt-premium-lock-body strong {
        font-size: 21px;
    }

    .mt-premium-lock-actions,
    .mt-premium-lock-button,
    .mt-premium-login-link {
        width: 100%;
    }
}


/* v67 - Akıllı Okuma Asistanı */
.mt-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 99999;
    background: rgba(1, 144, 173, .12);
    pointer-events: none;
}

.admin-bar .mt-reading-progress {
    top: 32px;
}

.mt-reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--mt-primary, #0190AD), #e30613);
    box-shadow: 0 0 16px rgba(1, 144, 173, .45);
    transition: transform .12s linear;
}

.mt-smart-reader {
    margin: 18px 0 22px;
    padding: 18px;
    border: 1px solid rgba(1, 144, 173, .18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(1, 144, 173, .10), rgba(255,255,255,.94));
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
}

.mt-smart-reader-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.mt-smart-reader-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
    color: var(--mt-primary, #0190AD);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.mt-smart-reader-kicker::before {
    content: '✦';
    color: #e30613;
}

.mt-smart-reader h2 {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.15;
    color: #101828;
}

.mt-smart-reader-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.mt-smart-action {
    border: 0;
    border-radius: 999px;
    background: #101828;
    color: #fff;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .16);
}

.mt-smart-action:hover,
.mt-smart-action.is-active {
    background: var(--mt-primary, #0190AD);
    color: #fff;
}

.mt-smart-stop {
    background: #e30613;
}

.mt-smart-summary {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mt-smart-summary li {
    position: relative;
    padding: 12px 12px 12px 36px;
    border-radius: 14px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(1, 144, 173, .13);
    color: #263445;
    font-weight: 700;
    line-height: 1.45;
}

.mt-smart-summary li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-primary, #0190AD);
    color: #fff;
    font-size: 12px;
}

.mt-smart-toc {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(1, 144, 173, .22);
}

.mt-smart-toc strong {
    display: block;
    margin-bottom: 9px;
    color: #101828;
}

.mt-smart-toc div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mt-smart-toc a {
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(1, 144, 173, .10);
    color: #0f6172;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.mt-smart-toc a:hover {
    background: var(--mt-primary, #0190AD);
    color: #fff;
}

.mt-smart-toc-level-3 {
    opacity: .86;
}

.mt-content h2[id],
.mt-content h3[id] {
    scroll-margin-top: 105px;
}

html.mt-dark-mode-root .mt-smart-reader,
body.mt-dark-mode .mt-smart-reader {
    background: linear-gradient(135deg, rgba(1, 144, 173, .20), rgba(15, 23, 42, .94));
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 16px 38px rgba(0,0,0,.22);
}

html.mt-dark-mode-root .mt-smart-reader h2,
html.mt-dark-mode-root .mt-smart-toc strong,
body.mt-dark-mode .mt-smart-reader h2,
body.mt-dark-mode .mt-smart-toc strong {
    color: #f8fafc;
}

html.mt-dark-mode-root .mt-smart-summary li,
body.mt-dark-mode .mt-smart-summary li {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.10);
    color: #e5e7eb;
}

html.mt-dark-mode-root .mt-smart-toc a,
body.mt-dark-mode .mt-smart-toc a {
    background: rgba(255,255,255,.08);
    color: #c8f5ff;
}

@media (max-width: 760px) {
    .admin-bar .mt-reading-progress {
        top: 46px;
    }

    .mt-smart-reader {
        padding: 15px;
        border-radius: 16px;
    }

    .mt-smart-reader-head {
        display: block;
    }

    .mt-smart-reader-actions {
        justify-content: flex-start;
        margin-top: 12px;
    }

    .mt-smart-action {
        padding: 9px 12px;
        font-size: 12px;
    }

    .mt-smart-summary {
        grid-template-columns: 1fr;
    }

    .mt-smart-toc div {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .mt-smart-toc a {
        white-space: nowrap;
        flex: 0 0 auto;
    }
}


/* v68 - Ana Sayfa AI Haber Botu */
.mt-ai-news-bot {
    margin-top: 26px;
    margin-bottom: 26px;
}

.mt-ai-bot-shell {
    position: relative;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: stretch;
    overflow: hidden;
    border-radius: 28px;
    padding: 22px;
    background:
        radial-gradient(circle at 12% 15%, rgba(1,144,173,.28), transparent 30%),
        radial-gradient(circle at 84% 10%, rgba(227,6,19,.20), transparent 26%),
        linear-gradient(135deg, #09131d 0%, #10293a 52%, #071017 100%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(6, 24, 36, .22);
}

.mt-ai-bot-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .38;
    pointer-events: none;
}

.mt-ai-bot-left,
.mt-ai-bot-chat,
.mt-ai-bot-news {
    position: relative;
    z-index: 1;
}

.mt-ai-bot-left {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
}

.mt-ai-bot-avatar {
    position: relative;
    width: 86px;
    height: 86px;
    min-width: 86px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: linear-gradient(135deg, #01a5c8, #026b85);
    box-shadow: 0 0 0 8px rgba(1,144,173,.15), 0 18px 40px rgba(1,144,173,.35);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.05em;
}

.mt-ai-bot-avatar i {
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #28f59f;
    border: 4px solid #10293a;
    box-shadow: 0 0 20px rgba(40,245,159,.75);
}

.mt-ai-bot-kicker {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.11);
    color: #9eeeff;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mt-ai-bot-heading h2 {
    margin: 10px 0 8px;
    color: #fff;
    font-size: 28px;
    line-height: 1.05;
}

.mt-ai-bot-heading p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.45;
}

.mt-ai-bot-chat {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(12px);
}

.mt-ai-bot-bubble,
.mt-ai-bot-answer {
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(4, 17, 26, .58);
    border: 1px solid rgba(255,255,255,.10);
}

.mt-ai-bot-bubble strong,
.mt-ai-bot-answer span {
    display: block;
    color: #73e8ff;
    font-weight: 900;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mt-ai-bot-bubble p,
.mt-ai-bot-answer p {
    margin: 0;
    color: #fff;
    line-height: 1.55;
}

.mt-ai-bot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mt-ai-bot-actions button {
    border: 0;
    border-radius: 999px;
    padding: 10px 13px;
    background: rgba(255,255,255,.13);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.mt-ai-bot-actions button:first-child {
    background: linear-gradient(135deg, #01a5c8, #0190ad);
}

.mt-ai-bot-actions button:hover,
.mt-ai-bot-actions button.is-active {
    transform: translateY(-2px);
    background: #e30613;
}

.mt-ai-bot-news {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    color: #101820;
}

.mt-ai-bot-news-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.mt-ai-bot-news-head strong {
    font-size: 14px;
    font-weight: 900;
}

.mt-ai-bot-news-head a {
    color: var(--mt-primary, #0190AD);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.mt-ai-bot-news-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: center;
    padding: 11px 0;
    color: #101820;
    text-decoration: none;
    border-top: 1px solid rgba(16,24,32,.09);
}

.mt-ai-bot-news-item span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 11px;
    background: #e30613;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
}

.mt-ai-bot-news-item b {
    font-size: 14px;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .mt-ai-bot-shell {
        grid-template-columns: 1fr;
    }

    .mt-ai-bot-left {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .mt-ai-news-bot {
        margin-top: 18px;
        margin-bottom: 20px;
    }

    .mt-ai-bot-shell {
        padding: 14px;
        border-radius: 22px;
    }

    .mt-ai-bot-left {
        padding: 14px;
    }

    .mt-ai-bot-avatar {
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 20px;
        font-size: 22px;
    }

    .mt-ai-bot-heading h2 {
        font-size: 23px;
    }

    .mt-ai-bot-actions button {
        width: 100%;
    }
}


/* v70 - Premium AI Assistant redesign */
.mt-ai-bot-shell-premium {
    grid-template-columns: 300px minmax(0,1fr) 360px;
    gap: 20px;
    border-radius: 32px;
    padding: 24px;
    background:
        radial-gradient(circle at 12% 12%, rgba(0,255,220,.16), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(227,6,19,.16), transparent 24%),
        linear-gradient(135deg, #081019 0%, #10263b 46%, #060d14 100%);
    box-shadow: 0 28px 72px rgba(6, 18, 30, .28);
}
.mt-ai-bot-left,
.mt-ai-bot-chat {
    background: rgba(255,255,255,.085);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
}
.mt-ai-bot-left {
    display: grid;
    align-content: space-between;
}
.mt-ai-bot-left-top {
    display: flex;
    gap: 16px;
    align-items: center;
}
.mt-ai-bot-avatar {
    border-radius: 28px;
    background: linear-gradient(135deg, #01c6ef 0%, #0777a0 100%);
    box-shadow: 0 0 0 10px rgba(1,144,173,.12), 0 18px 40px rgba(1,144,173,.28);
}
.mt-ai-bot-avatar span { position: relative; z-index: 1; }
.mt-ai-bot-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}
.mt-ai-bot-metric {
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(8,18,27,.52);
    border: 1px solid rgba(255,255,255,.08);
}
.mt-ai-bot-metric strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 4px;
}
.mt-ai-bot-metric span {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.35;
}
.mt-ai-bot-chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}
.mt-ai-bot-chat-head strong {
    color: #aef4ff;
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.mt-ai-bot-thinking {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}
.mt-ai-bot-thinking i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7cecff;
    display: block;
    animation: mtAiPulse 1.2s infinite ease-in-out;
}
.mt-ai-bot-thinking i:nth-child(2){ animation-delay: .18s; }
.mt-ai-bot-thinking i:nth-child(3){ animation-delay: .36s; }
@keyframes mtAiPulse {
    0%,80%,100% { transform: translateY(0); opacity: .4; }
    40% { transform: translateY(-3px); opacity: 1; }
}
.mt-ai-bot-bullets {
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}
.mt-ai-bot-bullets li {
    position: relative;
    padding-left: 18px;
    color: rgba(255,255,255,.84);
    line-height: 1.45;
}
.mt-ai-bot-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #01c6ef;
    box-shadow: 0 0 0 4px rgba(1,198,239,.14);
}
.mt-ai-bot-news {
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,250,252,.96));
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.mt-ai-bot-news-list {
    display: grid;
    gap: 10px;
}
.mt-ai-bot-news-card {
    display: grid;
    grid-template-columns: 38px 82px minmax(0,1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    text-decoration: none;
    color: #101820;
    background: #fff;
    border: 1px solid rgba(16,24,32,.08);
    box-shadow: 0 10px 24px rgba(16,24,32,.06);
    transition: transform .22s ease, box-shadow .22s ease;
}
.mt-ai-bot-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(16,24,32,.10);
}
.mt-ai-bot-news-rank {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e30613, #ff6b74);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.mt-ai-bot-news-thumb {
    display: block;
    width: 82px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dfe7ee, #f7fbff);
    background-size: cover;
    background-position: center;
}
.mt-ai-bot-news-body { min-width: 0; }
.mt-ai-bot-news-body small {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--mt-primary, #0190AD);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.mt-ai-bot-news-body b {
    display: block;
    font-size: 14px;
    line-height: 1.4;
}
@media (max-width: 1180px) {
    .mt-ai-bot-shell-premium {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .mt-ai-bot-metrics {
        grid-template-columns: 1fr;
    }
    .mt-ai-bot-left-top { align-items: flex-start; }
    .mt-ai-bot-news-card {
        grid-template-columns: 34px 70px minmax(0,1fr);
        gap: 10px;
    }
    .mt-ai-bot-news-thumb {
        width: 70px;
        height: 52px;
    }
}


/* v72 - AI Overlay Assistant */
body.mt-ai-overlay-open { overflow: hidden; }
.mt-ai-overlay { position: fixed; right: 18px; bottom: 20px; z-index: 9998; }
.mt-ai-overlay-backdrop {
    position: fixed; inset: 0; background: rgba(3, 9, 16, .54); opacity: 0; visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease; z-index: 9998;
}
.mt-ai-overlay-fab {
    position: relative; z-index: 10000; display: inline-flex; align-items: center; gap: 10px;
    border: 0; border-radius: 999px; padding: 12px 16px 12px 12px; cursor: pointer;
    color: #fff; font-weight: 800; letter-spacing: .01em;
    background: linear-gradient(135deg, #07131d 0%, #0b2940 55%, #0190AD 100%);
    box-shadow: 0 18px 40px rgba(1, 49, 77, .36);
}
.mt-ai-overlay-fab-icon,
.mt-ai-overlay-avatar {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: linear-gradient(135deg, #01d2ff 0%, #0c86bb 100%); color: #fff; font-weight: 900;
    box-shadow: 0 0 0 8px rgba(1, 144, 173, .14);
}
.mt-ai-overlay-avatar { position: relative; flex: 0 0 auto; }
.mt-ai-overlay-avatar i {
    position: absolute; right: 1px; bottom: 3px; width: 10px; height: 10px; border-radius: 50%;
    background: #2de38c; border: 2px solid #07131d;
}
.mt-ai-overlay-fab-label { white-space: nowrap; }
.mt-ai-overlay-panel {
    position: fixed; top: 0; right: 0; width: min(440px, 100vw); height: 100vh; z-index: 9999;
    display: flex; flex-direction: column; background: linear-gradient(180deg, #07131d 0%, #0d2233 100%);
    color: #fff; transform: translateX(105%); transition: transform .32s ease;
    box-shadow: -14px 0 40px rgba(0,0,0,.28);
}
.mt-ai-overlay.is-open .mt-ai-overlay-panel { transform: translateX(0); }
.mt-ai-overlay.is-open .mt-ai-overlay-backdrop { opacity: 1; visibility: visible; }
.mt-ai-overlay-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
    padding: 18px 18px 14px; border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04); backdrop-filter: blur(10px);
}
.mt-ai-overlay-head-main { display: flex; gap: 12px; align-items: center; min-width: 0; }
.mt-ai-overlay-kicker {
    display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800;
    color: #8fe9ff; margin-bottom: 3px;
}
.mt-ai-overlay-head strong { display: block; font-size: 19px; line-height: 1.2; }
.mt-ai-overlay-head small { display: block; color: rgba(255,255,255,.72); margin-top: 3px; font-size: 13px; }
.mt-ai-overlay-close {
    border: 0; width: 38px; height: 38px; border-radius: 12px; cursor: pointer;
    background: rgba(255,255,255,.10); color: #fff; font-size: 26px; line-height: 1;
}
.mt-ai-overlay-body { padding: 18px; overflow-y: auto; display: grid; gap: 14px; }
.mt-ai-overlay .mt-ai-bot-bubble,
.mt-ai-overlay .mt-ai-bot-answer,
.mt-ai-overlay-list {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); border-radius: 20px;
    padding: 15px 16px;
}
.mt-ai-overlay-answer span,
.mt-ai-overlay-list > strong { display: block; color: #9fefff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.mt-ai-overlay-actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.mt-ai-overlay-actions button {
    width: 100%; min-height: 44px; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
    color: #fff; font-weight: 700;
}
.mt-ai-overlay-actions button.is-active,
.mt-ai-overlay-actions button:hover { background: linear-gradient(135deg, #01b7d7, #0190AD); border-color: transparent; }
.mt-ai-overlay-cards { display: grid; gap: 10px; }
.mt-ai-overlay-card {
    display: grid; grid-template-columns: 28px 64px minmax(0,1fr); align-items: center; gap: 10px;
    text-decoration: none; color: #fff; padding: 10px; border-radius: 16px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
}
.mt-ai-overlay-rank {
    width: 28px; height: 28px; border-radius: 10px; display: grid; place-items: center;
    background: linear-gradient(135deg, #e30613, #ff6d6d); font-size: 12px; font-weight: 900;
}
.mt-ai-overlay-card-thumb {
    display: block; width: 64px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.12);
    background-size: cover; background-position: center;
}
.mt-ai-overlay-card-body { min-width: 0; font-size: 14px; line-height: 1.4; }
@media (max-width: 640px) {
    .mt-ai-overlay { right: 12px; bottom: 76px; }
    .mt-ai-overlay-fab { padding: 10px 14px 10px 10px; }
    .mt-ai-overlay-fab-icon { width: 38px; height: 38px; }
    .mt-ai-overlay-panel { width: 100vw; }
    .mt-ai-overlay-actions { grid-template-columns: 1fr; }
}


/* v73 - Mobil AI overlay panel scroll fix */
.mt-ai-overlay-panel {
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
}

.mt-ai-overlay-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
}

.mt-ai-overlay.is-open .mt-ai-overlay-fab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 640px) {
    .mt-ai-overlay-panel {
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        border-radius: 0;
    }

    .mt-ai-overlay-head {
        flex: 0 0 auto;
        padding-top: calc(16px + env(safe-area-inset-top));
    }

    .mt-ai-overlay-body {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow-y: auto !important;
        padding-bottom: calc(90px + env(safe-area-inset-bottom)) !important;
    }

    .mt-ai-overlay-cards {
        padding-bottom: 18px;
    }
}


/* v78 - Content Copy Protection & No Right Click */
body.mt-content-no-select :where(main, article, .site-content, .mt-main, .mt-single-content, .entry-content, .mt-home-section, .mt-hero-section) {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body.mt-content-protected img {
    -webkit-user-drag: none;
    user-drag: none;
}
body.mt-content-protected :where(input, textarea, select, button, [contenteditable="true"], .mt-allow-copy, form, .wp-block-search) {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.mt-content-protection-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 100000;
    transform: translate(-50%, 18px);
    opacity: 0;
    visibility: hidden;
    max-width: min(92vw, 460px);
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, rgba(7,19,29,.96), rgba(1,144,173,.94));
    box-shadow: 0 18px 42px rgba(0,0,0,.25);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    pointer-events: none;
}
.mt-content-protection-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
@media (max-width: 640px) {
    .mt-content-protection-toast {
        bottom: calc(88px + env(safe-area-inset-bottom));
        font-size: 13px;
        border-radius: 18px;
    }
}


/* v79 - Screenshot deterrence / watermark protection */
.mt-screenshot-watermark {
    position: fixed;
    inset: 0;
    z-index: 9996;
    pointer-events: none;
    display: none;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 52px 28px;
    padding: 38px;
    opacity: .12;
    overflow: hidden;
}

.mt-screenshot-watermark-enabled .mt-screenshot-watermark {
    display: grid;
}

.mt-screenshot-watermark span {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(-24deg);
    text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

.mt-screenshot-shield {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 12, 20, .72);
    backdrop-filter: blur(16px);
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.mt-screenshot-shield.is-active {
    display: flex;
}

.mt-screenshot-shield > div {
    max-width: 420px;
    border-radius: 24px;
    padding: 26px 28px;
    background: linear-gradient(135deg, rgba(1,144,173,.94), rgba(10,24,38,.96));
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.mt-screenshot-shield strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 900;
}

.mt-screenshot-shield p {
    margin: 0;
    color: rgba(255,255,255,.88);
    line-height: 1.55;
}

html.mt-page-hidden-protected body.mt-screenshot-guard-enabled #page,
html.mt-page-hidden-protected body.mt-screenshot-guard-enabled .site,
html.mt-page-hidden-protected body.mt-screenshot-guard-enabled main {
    filter: blur(18px);
}

html.mt-page-hidden-protected body.mt-screenshot-guard-enabled::before {
    content: 'ManisaTürk İçerik Koruma';
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: rgba(6, 14, 22, .78);
    color: #fff;
    font-size: clamp(22px, 4vw, 46px);
    font-weight: 900;
    text-align: center;
}

@media print {
    body.mt-screenshot-guard-enabled * {
        visibility: hidden !important;
    }

    body.mt-screenshot-guard-enabled::before {
        content: 'Bu içerik ManisaTürk tarafından korunmaktadır.';
        visibility: visible !important;
        display: block !important;
        color: #000 !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        margin: 60px auto !important;
        text-align: center !important;
    }
}

@media (max-width: 640px) {
    .mt-screenshot-watermark {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 46px 18px;
        padding: 24px;
        opacity: .10;
    }

    .mt-screenshot-watermark span {
        font-size: 11px;
    }
}


/* v80 - Temiz mobil ve tablet yerleşimi */
@media (max-width: 900px) {
    .mt-container {
        width: min(calc(100% - 24px), 1280px);
    }

    .mt-top-right {
        display: none;
    }

    .mt-brand-area {
        padding: 14px 0 13px;
    }

    .mt-brand-flex {
        width: 100%;
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 11px;
    }

    .mt-brand-left,
    .mt-logo-text,
    .mt-tagline {
        min-width: 0;
        max-width: 100%;
    }

    .mt-logo-text {
        display: block;
        font-size: clamp(28px, 6vw, 42px);
        line-height: .98;
        overflow-wrap: break-word;
    }

    .mt-search {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .mt-search input {
        flex: 1 1 auto;
        width: 0;
        min-width: 0;
    }

    .mt-search button {
        flex: 0 0 auto;
        min-height: 38px;
    }

    .mt-nav-flex {
        min-height: 50px;
        align-items: center;
    }

    .mt-mobile-toggle {
        display: inline-grid;
        place-items: center;
        flex: 0 0 44px;
        min-width: 44px;
        min-height: 40px;
    }

    .mt-primary-wrap {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1100;
        max-height: calc(100dvh - 52px);
        overflow-y: auto;
        background: var(--mt-primary);
        border-top: 1px solid rgba(255,255,255,.18);
        box-shadow: 0 18px 30px rgba(0,0,0,.20);
    }

    .mt-primary-wrap.active {
        display: block;
    }

    .mt-primary-menu,
    .mt-primary-wrap .mt-default-menu {
        flex-direction: column;
        align-items: stretch;
        overflow: visible;
    }

    .mt-primary-menu a,
    .mt-primary-wrap .mt-default-menu a {
        min-height: 48px;
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .mt-secondary-menu,
    .mt-subnav .mt-default-menu {
        justify-content: flex-start !important;
        padding-inline: 12px;
        scroll-padding-inline: 12px;
    }

    .mt-secondary-menu > li:first-child > a,
    .mt-subnav .mt-default-menu > li:first-child > a {
        padding-left: 0 !important;
    }

    .mt-slide-content,
    .mt-category-feature-content,
    .mt-columnist-body,
    .mt-list-card > div {
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .mt-container {
        width: min(calc(100% - 18px), 1280px);
    }

    .mt-topbar-inner {
        min-height: 32px;
    }

    .mt-topbar a {
        min-height: 32px;
        margin-right: 12px;
    }

    .mt-logo-text {
        font-size: clamp(25px, 8vw, 34px);
        letter-spacing: -.8px;
    }

    .mt-tagline {
        font-size: 11px;
        line-height: 1.35;
    }

    .mt-search {
        min-height: 42px;
    }

    .mt-search button {
        min-width: 54px;
        min-height: 36px;
    }

    .mt-mega-toggle {
        min-height: 40px;
        padding-inline: 14px;
    }

    .mt-breaking-inner,
    .mt-breaking-flash-ticker .mt-breaking-inner {
        width: 100%;
        padding-inline: 9px;
    }

    .mt-breaking-flash-ticker .mt-breaking-label {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .mt-hero-slider {
        padding-top: 10px;
    }

    .mt-slide-content {
        padding: 15px 16px 18px;
    }

    .mt-slide h2 {
        font-size: clamp(22px, 7vw, 28px);
        overflow-wrap: anywhere;
    }

    .mt-columnist-card {
        min-width: 0;
    }

    .mt-columnist-title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .mt-ai-overlay {
        right: 10px;
        bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .mt-ai-overlay-fab {
        width: 48px;
        height: 48px;
        justify-content: center;
        padding: 5px;
    }

    .mt-ai-overlay-fab-icon {
        width: 36px;
        height: 36px;
    }

    .mt-ai-overlay-fab-label {
        display: none;
    }
}

@media (max-width: 380px) {
    .mt-container {
        width: min(calc(100% - 14px), 1280px);
    }

    .mt-logo-text {
        font-size: 24px;
    }

    .mt-mobile-bottom-nav {
        padding-inline: 4px;
    }

    .mt-mobile-bottom-menu {
        gap: 2px;
    }

    .mt-mobile-bottom-menu a strong {
        font-size: 9.5px;
    }
}
