/* Özel News Theme — EsenHaber Demo 6 inspired */
:root {
    --ozel-brand: #0066bf;
    --ozel-accent: #ffe500;
    --ozel-ink: #1a1a1a;
    --ozel-muted: #666;
    --ozel-line: #ddd;
    --ozel-paper: #fff;
    --ozel-soft: #f5f5f5;
    --ozel-dark: #1e1e1e;
    --ozel-dark-2: #2a2a2a;
    --ozel-container: 1200px;
    --ozel-font: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ozel-theme {
    margin: 0;
    background: var(--ozel-paper);
    color: var(--ozel-ink);
    font-family: var(--ozel-font);
    font-size: 14px;
    line-height: 1.45;
}

.ozel-theme a { color: inherit; text-decoration: none; }
.ozel-theme a:hover { color: var(--ozel-brand); }
.ozel-theme img { max-width: 100%; display: block; height: auto; }
.ozel-theme ul, .ozel-theme ol { margin: 0; padding: 0; list-style: none; }

.ozel-container {
    width: min(var(--ozel-container), calc(100% - 24px));
    margin-inline: auto;
}

/* ── Top Bar ── */
.ozel-topbar {
    background: var(--ozel-dark);
    color: #ccc;
    font-size: 12px;
    border-bottom: 1px solid #333;
}

.ozel-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 36px;
    flex-wrap: wrap;
}

.ozel-topbar__left,
.ozel-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ozel-weather {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ozel-weather__temp { font-weight: 700; color: var(--ozel-accent); }
.ozel-weather__city {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    font-size: 11px;
    padding: 2px 6px;
    cursor: pointer;
}

.ozel-topbar__links { display: flex; gap: 14px; }
.ozel-topbar__links a { color: #ccc; font-weight: 600; text-transform: uppercase; font-size: 11px; letter-spacing: .3px; }
.ozel-topbar__links a:hover { color: var(--ozel-accent); }

.ozel-social { display: flex; gap: 8px; }
.ozel-social a {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    background: #333;
    border-radius: 3px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}
.ozel-social a:hover { background: var(--ozel-brand); color: #fff; }

/* ── Header ── */
.ozel-header {
    background: #fff;
    border-bottom: 1px solid var(--ozel-line);
    padding: 14px 0;
}

.ozel-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ozel-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--ozel-brand);
    line-height: 1;
}

.ozel-logo img { max-height: 56px; width: auto; }
.ozel-logo__text span { color: var(--ozel-accent); background: var(--ozel-brand); padding: 0 4px; }

.ozel-header-ad {
    flex: 1;
    max-width: 728px;
    min-height: 90px;
    background: var(--ozel-soft);
    border: 1px dashed var(--ozel-line);
    display: grid;
    place-items: center;
    color: var(--ozel-muted);
    font-size: 12px;
    text-align: center;
}

/* ── Navigation ── */
.ozel-nav {
    background: var(--ozel-brand);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.ozel-nav__inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.ozel-nav__toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 12px 14px;
    cursor: pointer;
    line-height: 1;
}

.ozel-nav__menu {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
}
.ozel-nav__menu::-webkit-scrollbar { display: none; }

.ozel-nav__menu > li > a,
.ozel-nav__home {
    display: block;
    padding: 13px 16px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.15);
    transition: background .15s;
}

.ozel-nav__home { background: rgba(0,0,0,.12); }
.ozel-nav__menu > li > a:hover,
.ozel-nav__home:hover { background: rgba(0,0,0,.2); color: var(--ozel-accent); }

.ozel-nav__search {
    margin-left: auto;
    padding: 8px 14px;
    color: #fff;
    font-size: 16px;
}

/* Mobile drawer */
.ozel-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 200;
}
.ozel-drawer-overlay.is-open { display: block; }

.ozel-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--ozel-dark);
    z-index: 201;
    transition: left .25s ease;
    overflow-y: auto;
    padding: 20px 0;
}
.ozel-drawer.is-open { left: 0; }

.ozel-drawer__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px 20px;
    cursor: pointer;
    display: block;
}

.ozel-drawer a {
    display: block;
    padding: 12px 20px;
    color: #eee;
    font-weight: 600;
    border-bottom: 1px solid #333;
    text-transform: uppercase;
    font-size: 13px;
}
.ozel-drawer a:hover { background: var(--ozel-brand); color: #fff; }

/* ── Breaking News ── */
.ozel-breaking {
    background: #fff;
    border-bottom: 2px solid var(--ozel-accent);
}

.ozel-breaking__inner {
    display: flex;
    align-items: stretch;
    min-height: 40px;
}

.ozel-breaking__label {
    background: var(--ozel-accent);
    color: var(--ozel-ink);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: .5px;
}

.ozel-breaking__ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.ozel-breaking__track {
    display: flex;
    animation: ozel-ticker 30s linear infinite;
    white-space: nowrap;
}

.ozel-breaking__track:hover { animation-play-state: paused; }

.ozel-breaking__item {
    padding: 0 30px;
    font-weight: 600;
    font-size: 13px;
    color: var(--ozel-ink);
}
.ozel-breaking__item::before {
    content: "●";
    color: var(--ozel-brand);
    margin-right: 10px;
    font-size: 8px;
    vertical-align: middle;
}

@keyframes ozel-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Markets Strip ── */
.ozel-markets {
    background: var(--ozel-soft);
    border-bottom: 1px solid var(--ozel-line);
}

.ozel-markets__inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.ozel-markets__inner::-webkit-scrollbar { display: none; }

.ozel-markets__title {
    background: var(--ozel-brand);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    padding: 10px 14px;
    white-space: nowrap;
    letter-spacing: .3px;
}

.ozel-markets__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-right: 1px solid var(--ozel-line);
    white-space: nowrap;
    font-size: 12px;
}

.ozel-markets__name { font-weight: 700; color: var(--ozel-muted); text-transform: uppercase; font-size: 10px; }
.ozel-markets__value { font-weight: 700; }
.ozel-markets__change { font-size: 11px; font-weight: 700; }
.ozel-markets__change--up { color: #16a34a; }
.ozel-markets__change--down { color: #dc2626; }

/* ── Main Layout ── */
.ozel-main { padding: 20px 0 30px; }

.ozel-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.ozel-content { min-width: 0; }

/* ── Manset Slider ── */
.ozel-manset {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 0;
    background: #000;
    margin-bottom: 24px;
    border: 1px solid var(--ozel-line);
}

.ozel-manset__stage { position: relative; aspect-ratio: 16/9; overflow: hidden; }

.ozel-manset__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}
.ozel-manset__slide.is-active { opacity: 1; pointer-events: auto; }

.ozel-manset__slide a { display: block; height: 100%; position: relative; }
.ozel-manset__slide img { width: 100%; height: 100%; object-fit: cover; }

.ozel-manset__caption {
    position: absolute;
    inset: auto 0 0;
    padding: 40px 20px 18px;
    background: linear-gradient(transparent, rgba(0,0,0,.88));
    color: #fff;
}

.ozel-manset__cat {
    display: inline-block;
    background: var(--ozel-accent);
    color: var(--ozel-ink);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    margin-bottom: 6px;
}

.ozel-manset__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.ozel-manset__meta { font-size: 11px; color: #ccc; margin-top: 6px; }

.ozel-manset__thumbs {
    display: flex;
    flex-direction: column;
    background: var(--ozel-dark);
}

.ozel-manset__thumb {
    flex: 1;
    display: grid;
    place-items: center;
    background: var(--ozel-dark-2);
    color: #888;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: all .2s;
    min-height: 36px;
}
.ozel-manset__thumb:last-child { border-bottom: none; }
.ozel-manset__thumb.is-active,
.ozel-manset__thumb:hover { background: var(--ozel-accent); color: var(--ozel-ink); }

/* ── Section Blocks ── */
.ozel-section {
    margin-bottom: 28px;
}

.ozel-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--ozel-brand);
    margin-bottom: 16px;
    padding-bottom: 8px;
}

.ozel-section__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ozel-brand);
    letter-spacing: -.3px;
}

.ozel-section__more {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ozel-muted);
    letter-spacing: .5px;
}
.ozel-section__more:hover { color: var(--ozel-brand); }

/* Featured row (Günün Öne Çıkanları) */
.ozel-featured-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ozel-featured-card {
    border: 1px solid var(--ozel-line);
    background: #fff;
    transition: box-shadow .2s;
}
.ozel-featured-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); }

.ozel-featured-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--ozel-soft); }
.ozel-featured-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.ozel-featured-card:hover .ozel-featured-card__img img { transform: scale(1.04); }

.ozel-featured-card__body { padding: 10px 12px 14px; }
.ozel-featured-card__cat { font-size: 10px; font-weight: 800; color: var(--ozel-brand); text-transform: uppercase; }
.ozel-featured-card__title { margin: 4px 0 0; font-size: 14px; line-height: 1.35; font-weight: 700; }

/* Category block */
.ozel-cat-block__lead {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

.ozel-cat-block__main { position: relative; overflow: hidden; }
.ozel-cat-block__main img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ozel-cat-block__main-title {
    position: absolute;
    inset: auto 0 0;
    padding: 30px 14px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.ozel-cat-block__side { display: flex; flex-direction: column; gap: 10px; }

.ozel-cat-block__side-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ozel-line);
}
.ozel-cat-block__side-item:last-child { border-bottom: none; padding-bottom: 0; }
.ozel-cat-block__side-item img { width: 90px; height: 60px; object-fit: cover; }
.ozel-cat-block__side-item h4 { margin: 0; font-size: 13px; line-height: 1.3; font-weight: 700; }

.ozel-cat-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ozel-news-card { border-bottom: 1px solid var(--ozel-line); padding-bottom: 12px; }
.ozel-news-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 8px; background: var(--ozel-soft); }
.ozel-news-card__title { margin: 0; font-size: 14px; line-height: 1.35; font-weight: 700; }
.ozel-news-card__meta { font-size: 11px; color: var(--ozel-muted); margin-top: 4px; }

/* Authors widget */
.ozel-authors { display: grid; gap: 12px; }
.ozel-author {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ozel-line);
}
.ozel-author:last-child { border-bottom: none; }
.ozel-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ozel-brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    overflow: hidden;
}
.ozel-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ozel-author__name { font-weight: 800; font-size: 13px; color: var(--ozel-brand); }
.ozel-author__post { font-size: 13px; line-height: 1.35; margin-top: 2px; font-weight: 600; }

/* Gallery / Video grids */
.ozel-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ozel-media-card { position: relative; overflow: hidden; }
.ozel-media-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ozel-media-card__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 20px 10px 8px;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.ozel-media-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(0,102,191,.85);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
}

/* Horoscope tabs */
.ozel-horoscope__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.ozel-horoscope__tab {
    padding: 5px 10px;
    background: var(--ozel-soft);
    border: 1px solid var(--ozel-line);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}
.ozel-horoscope__tab.is-active { background: var(--ozel-brand); color: #fff; border-color: var(--ozel-brand); }

.ozel-horoscope__panel { display: none; font-size: 13px; line-height: 1.6; color: var(--ozel-muted); }
.ozel-horoscope__panel.is-active { display: block; }
.ozel-horoscope__sign { font-weight: 800; color: var(--ozel-brand); font-size: 15px; margin-bottom: 6px; }

/* Standings table */
.ozel-standings { width: 100%; border-collapse: collapse; font-size: 12px; }
.ozel-standings th {
    background: var(--ozel-brand);
    color: #fff;
    padding: 8px 6px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
}
.ozel-standings td { padding: 7px 6px; border-bottom: 1px solid var(--ozel-line); }
.ozel-standings tr:nth-child(even) { background: var(--ozel-soft); }
.ozel-standings .ozel-rank { font-weight: 800; color: var(--ozel-brand); width: 24px; text-align: center; }

/* ── Sidebar ── */
.ozel-sidebar { display: flex; flex-direction: column; gap: 20px; }

.ozel-widget {
    border: 1px solid var(--ozel-line);
    background: #fff;
}

.ozel-widget__head {
    background: var(--ozel-brand);
    color: #fff;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.ozel-widget__body { padding: 14px; }

.ozel-widget-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--ozel-line);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}
.ozel-widget-list li:last-child { border-bottom: none; }
.ozel-widget-list .ozel-num {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: var(--ozel-accent);
    color: var(--ozel-ink);
    text-align: center;
    line-height: 22px;
    font-size: 11px;
    font-weight: 800;
    margin-right: 8px;
}

.ozel-ad-slot {
    min-height: 250px;
    background: var(--ozel-soft);
    border: 1px dashed var(--ozel-line);
    display: grid;
    place-items: center;
    color: var(--ozel-muted);
    font-size: 11px;
}

/* ── Article Page ── */
.ozel-article-wrap { padding: 24px 0 40px; }

.ozel-breadcrumb {
    font-size: 12px;
    color: var(--ozel-muted);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.ozel-breadcrumb a { color: var(--ozel-brand); font-weight: 600; }
.ozel-breadcrumb span { color: #aaa; }

.ozel-article { max-width: 820px; margin-inline: auto; }

.ozel-article__cat {
    display: inline-block;
    background: var(--ozel-accent);
    color: var(--ozel-ink);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.ozel-article__title {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.5px;
}

.ozel-article__summary {
    font-size: 18px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 14px;
    font-weight: 500;
}

.ozel-article__meta {
    font-size: 12px;
    color: var(--ozel-muted);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ozel-line);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ozel-article__cover { margin-bottom: 24px; }
.ozel-article__cover img { width: 100%; max-height: 520px; object-fit: cover; }
.ozel-article__credit { font-size: 11px; color: var(--ozel-muted); margin-top: 6px; font-style: italic; }

.ozel-article__body {
    font-size: 17px;
    line-height: 1.75;
    color: #222;
}
.ozel-article__body h2, .ozel-article__body h3 { font-size: 22px; margin: 28px 0 12px; line-height: 1.25; }
.ozel-article__body p { margin: 0 0 16px; }
.ozel-article__body img { margin: 20px auto; }
.ozel-article__body blockquote {
    border-left: 4px solid var(--ozel-brand);
    margin: 24px 0;
    padding: 4px 0 4px 20px;
    font-size: 20px;
    color: #444;
    font-style: italic;
}

.ozel-article__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 30px 0;
}
.ozel-article__gallery figure { margin: 0; }
.ozel-article__gallery img { width: 100%; height: 240px; object-fit: cover; }
.ozel-article__gallery figcaption { font-size: 11px; color: var(--ozel-muted); margin-top: 4px; }

.ozel-related { margin-top: 40px; padding-top: 24px; border-top: 3px solid var(--ozel-brand); }
.ozel-related__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }

/* ── Category Page ── */
.ozel-category-head { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 3px solid var(--ozel-brand); }
.ozel-category-head h1 { margin: 0; font-size: 28px; font-weight: 900; text-transform: uppercase; color: var(--ozel-brand); }
.ozel-category-head p { margin: 8px 0 0; color: var(--ozel-muted); max-width: 680px; line-height: 1.6; }

.ozel-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ozel-pagination { margin-top: 30px; display: flex; justify-content: center; }
.ozel-pagination nav { display: flex; gap: 4px; flex-wrap: wrap; }
.ozel-pagination a, .ozel-pagination span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--ozel-line);
    font-size: 13px;
    font-weight: 600;
}
.ozel-pagination a:hover { background: var(--ozel-brand); color: #fff; border-color: var(--ozel-brand); }
.ozel-pagination span[aria-current="page"] { background: var(--ozel-brand); color: #fff; border-color: var(--ozel-brand); }

/* ── Footer ── */
.ozel-footer {
    background: var(--ozel-dark);
    color: #aaa;
    margin-top: 40px;
    padding: 36px 0 0;
    font-size: 13px;
}

.ozel-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
}

.ozel-footer__col h4 {
    color: var(--ozel-accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 14px;
    letter-spacing: .3px;
}

.ozel-footer__col ul li { margin-bottom: 8px; }
.ozel-footer__col a { color: #ccc; font-size: 13px; }
.ozel-footer__col a:hover { color: var(--ozel-accent); }

.ozel-footer__bottom {
    border-top: 1px solid #333;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.ozel-footer__brand { font-weight: 800; color: #fff; font-size: 16px; }
.ozel-footer__social { display: flex; gap: 8px; }

/* ── Utilities ── */
.ozel-badge {
    display: inline-block;
    background: var(--ozel-accent);
    color: var(--ozel-ink);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
}

.ozel-meta { font-size: 11px; color: var(--ozel-muted); }

.ozel-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ozel-layout { grid-template-columns: 1fr; }
    .ozel-sidebar { order: 2; }
    .ozel-featured-row { grid-template-columns: repeat(2, 1fr); }
    .ozel-media-grid { grid-template-columns: repeat(2, 1fr); }
    .ozel-cat-block__lead { grid-template-columns: 1fr; }
    .ozel-cat-block__grid { grid-template-columns: repeat(2, 1fr); }
    .ozel-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .ozel-category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ozel-nav__toggle { display: block; }
    .ozel-nav__menu { display: none; }
    .ozel-header-ad { display: none; }
    .ozel-logo { font-size: 24px; }
    .ozel-manset { grid-template-columns: 1fr; }
    .ozel-manset__thumbs {
        flex-direction: row;
        overflow-x: auto;
    }
    .ozel-manset__thumb { min-width: 40px; min-height: 40px; border-bottom: none; border-right: 1px solid #333; }
    .ozel-manset__title { font-size: 17px; }
    .ozel-featured-row { grid-template-columns: 1fr; }
    .ozel-media-grid { grid-template-columns: 1fr 1fr; }
    .ozel-cat-block__grid { grid-template-columns: 1fr; }
    .ozel-two-col { grid-template-columns: 1fr; }
    .ozel-article__title { font-size: 26px; }
    .ozel-article__gallery { grid-template-columns: 1fr; }
    .ozel-related__grid { grid-template-columns: 1fr; }
    .ozel-category-grid { grid-template-columns: 1fr; }
    .ozel-footer__grid { grid-template-columns: 1fr; }
    .ozel-topbar__links { display: none; }
}

@media (max-width: 480px) {
    .ozel-breaking__label { padding: 0 10px; font-size: 10px; }
    .ozel-markets__item { padding: 8px 10px; }
}
