
* { box-sizing: border-box; }
body {
    font-family: var(--t2-font-body);
    color: var(--t2-gray-900);
    background: var(--t2-gray-100);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
.container {
    max-width: var(--t2-container-max);
    margin: 0 auto;
    padding: 0 16px;
}
.t2-tepe-reklam {
    text-align: center;
    background: var(--t2-white);
    padding: 6px 0;
}
.t2-topbar {
    background: var(--t2-gray-100);
    border-bottom: 1px solid var(--t2-gray-200);
    font-size: 0.8rem;
    line-height: 1;
}
.t2-topbar-inner {
    display: flex;
    align-items: center;
    height: 36px;
    gap: 16px;
}
.t2-topbar-date {
    color: var(--t2-gray-700);
    white-space: nowrap;
    font-weight: 500;
}
.t2-topbar-markets {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    overflow: hidden;
}
.t2-market-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    color: var(--t2-gray-700);
    padding: 0 8px;
    border-right: 1px solid var(--t2-gray-200);
}
.t2-market-item:last-child {
    border-right: none;
}
.t2-market-name {
    font-weight: 600;
    color: var(--t2-gray-900);
}
.t2-market-val {
    font-weight: 500;
}
.t2-market-up {
    color: var(--t2-success);
    font-size: 0.85rem;
}
.t2-market-down {
    color: var(--t2-danger);
    font-size: 0.85rem;
}
.t2-market-flat {
    color: var(--t2-gray-500);
}
.t2-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.t2-yt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--t2-primary);
    color: var(--t2-white);
    font-size: 14px;
    text-decoration: none;
    transition: background var(--t2-transition);
}
.t2-yt-btn:hover {
    background: var(--t2-primary-dark);
    color: var(--t2-white);
}
.t2-brand {
    background: var(--t2-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--t2-gray-200);
}
.t2-brand-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.t2-logo img {
    height: 50px;
    width: auto;
    display: block;
}
.t2-brand-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.t2-brand-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--t2-gray-900);
    text-decoration: none;
    transition: color var(--t2-transition);
    position: relative;
}
.t2-brand-link:hover {
    color: var(--t2-primary);
}
.t2-brand-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--t2-primary);
    transition: width var(--t2-transition);
}
.t2-brand-link:hover::after {
    width: 100%;
}
.t2-search-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--t2-gray-700);
    cursor: pointer;
    padding: 6px;
    transition: color var(--t2-transition);
}
.t2-search-toggle:hover {
    color: var(--t2-primary);
}
.t2-search-panel {
    display: none;
    background: var(--t2-white);
    border-bottom: 2px solid var(--t2-primary);
    padding: 12px 0;
}
.t2-search-panel.active {
    display: block;
}
.t2-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}
.t2-search-input {
    flex: 1;
    border: 1px solid var(--t2-gray-200);
    border-radius: var(--t2-radius);
    padding: 10px 16px;
    font-size: 1rem;
    font-family: var(--t2-font-body);
    outline: none;
    transition: border-color var(--t2-transition);
}
.t2-search-input:focus {
    border-color: var(--t2-primary);
}
.t2-search-submit {
    background: var(--t2-primary);
    color: var(--t2-white);
    border: none;
    border-radius: var(--t2-radius);
    padding: 10px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--t2-transition);
}
.t2-search-submit:hover {
    background: var(--t2-primary-dark);
}
.t2-search-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--t2-gray-500);
    cursor: pointer;
    padding: 6px;
}
.t2-search-close:hover {
    color: var(--t2-gray-900);
}
.t2-nav {
    background: var(--t2-primary);
    position: relative;
    z-index: 1000;
}
.t2-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--t2-shadow-md);
    animation: t2SlideDown 0.3s ease;
}
@keyframes t2SlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.t2-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--t2-nav-height);
}
.t2-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.t2-nav-item {
    position: relative;
}
.t2-nav-home .t2-nav-link {
    background: var(--color-primary, #e74c3c);
    color: #fff;
    padding: 0 22px;
}
.t2-nav-home .t2-nav-link:hover {
    background: var(--color-primary-dark, #c0392b);
}
.t2-nav-link {
    display: flex;
    align-items: center;
    height: var(--t2-nav-height);
    padding: 0 16px;
    color: var(--t2-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--t2-transition);
    white-space: nowrap;
}
.t2-nav-link:hover {
    background: rgba(0,0,0,0.15);
    color: var(--t2-white);
}
.t2-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--t2-white);
    min-width: 200px;
    box-shadow: var(--t2-shadow-lg);
    border-radius: 0 0 var(--t2-radius) var(--t2-radius);
    padding: 6px 0;
    z-index: 1001;
    list-style: none;
    margin: 0;
}
.t2-has-sub:hover > .t2-dropdown {
    display: block;
}
.t2-dropdown li a {
    display: block;
    padding: 10px 18px;
    color: var(--t2-gray-900);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background var(--t2-transition), color var(--t2-transition);
}
.t2-dropdown li a:hover {
    background: var(--t2-gray-100);
    color: var(--t2-primary);
}
.t2-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.t2-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--t2-white);
    border-radius: 1px;
    transition: all 0.3s ease;
}
.t2-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.t2-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.t2-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.t2-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
}
.t2-mobile-overlay.active {
    display: block;
}
.t2-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--t2-white);
    z-index: 99999;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: var(--t2-shadow-lg);
}
.t2-mobile-menu.active {
    right: 0;
}
.t2-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: var(--t2-border);
}
.t2-mobile-logo img {
    height: 32px;
}
.t2-mobile-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--t2-gray-700);
    cursor: pointer;
}
.t2-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.t2-mobile-nav > li {
    border-bottom: 1px solid var(--t2-gray-100);
    position: relative;
}
.t2-mobile-nav > li > a {
    display: block;
    padding: 14px 16px;
    color: var(--t2-gray-900);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}
.t2-mobile-nav > li > a i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    color: var(--t2-primary);
}
.t2-mob-has-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.t2-mob-has-sub > a {
    flex: 1;
}
.t2-mob-toggle {
    background: none;
    border: none;
    padding: 14px 16px;
    color: var(--t2-gray-500);
    cursor: pointer;
    font-size: 0.8rem;
    transition: transform 0.3s;
}
.t2-mob-toggle.open {
    transform: rotate(180deg);
}
.t2-mob-sub {
    display: none;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--t2-gray-100);
}
.t2-mob-sub.open {
    display: block;
}
.t2-mob-sub li a {
    display: block;
    padding: 10px 16px 10px 40px;
    color: var(--t2-gray-700);
    text-decoration: none;
    font-size: 0.88rem;
}
.t2-mob-sub li a:hover {
    color: var(--t2-primary);
}
.t2-mobile-extras {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: var(--t2-border);
}
.t2-mobile-extras a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--t2-gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.t2-mobile-extras a i {
    width: 18px;
    text-align: center;
    color: var(--t2-primary);
}
.t2-mobile-social {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: var(--t2-border);
}
.t2-mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--t2-gray-100);
    color: var(--t2-gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--t2-transition);
}
.t2-mobile-social a:hover {
    background: var(--t2-primary);
    color: var(--t2-white);
}
.t2-breaking {
    background: var(--t2-white);
    border-bottom: var(--t2-border);
    font-size: 0.88rem;
    position: relative;
    z-index: 2;
}
.t2-breaking-inner {
    display: flex;
    align-items: center;
    height: 42px;
    gap: 12px;
}
.t2-breaking-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--t2-white);
    color: var(--t2-primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border: 2px solid var(--t2-primary);
    border-radius: 4px;
}
.t2-breaking-badge i {
    animation: t2Pulse 1.5s infinite;
}
@keyframes t2Pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.t2-breaking-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.t2-breaking-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}
.t2-breaking-item {
    display: none;
    width: 100%;
}
.t2-breaking-item.active {
    display: block;
}
.t2-breaking-item a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--t2-transition);
}
.t2-breaking-item a:hover {
    color: var(--t2-primary);
}
.t2-breaking-nav {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.t2-breaking-nav button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--t2-gray-300);
    background: var(--t2-white);
    color: var(--t2-gray-700);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t2-transition);
}
.t2-breaking-nav button:hover {
    background: var(--t2-primary);
    color: var(--t2-white);
    border-color: var(--t2-primary);
}
/* ── Hero Manşet ────────────────────────────────────────────── */
.hero-section {
    background: #f0f1f3;
    padding: 16px 0 0;
    margin-bottom: 16px;
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 12px;
    height: 480px;
}
.hero-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}
.hero-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 28px 32px 85px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    position: relative;
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 40%, transparent 100%);
    pointer-events: none;
}
.hero-overlay {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 2.15rem;
    font-family: "Inter", sans-serif;
    color: #fff;
    line-height: 1.35;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.hero-meta {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}
.hero-meta i {
    margin-right: 4px;
}
.hero-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: stretch;
    gap: 0;
    background: rgba(0,0,0,0.92);
    padding: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.hero-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,0.95);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 0;
    opacity: 1;
    transition: all 0.2s;
    cursor: pointer;
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
}
.hero-pagination .swiper-pagination-bullet:hover,
.hero-pagination .swiper-pagination-bullet-active {
    color: #fff;
    background: var(--color-primary, #e74c3c);
}
.hero-pagination .hero-bullet-ad {
    color: rgba(255,255,255,0.6);
    font-style: italic;
    border-left: 1px solid rgba(255,255,255,0.15);
    margin-left: auto;
}
.hero-pagination .hero-bullet-ad:hover,
.hero-pagination .hero-bullet-ad.swiper-pagination-bullet-active {
    background: #2980b9;
    color: #fff;
}
.swiper-slide-ad .hero-slide-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
}
.swiper-slide-ad .hero-slide-ad::after {
    display: none;
}
@media (max-width: 991px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }
    .hero-main {
        min-height: 360px;
    }
}
@media (max-width: 576px) {
    .hero-main {
        min-height: 280px;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-slide {
        padding: 18px 16px 70px;
    }
    .hero-pagination {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
    }
    .hero-pagination::-webkit-scrollbar { display: none; }
    .hero-pagination .swiper-pagination-bullet {
        padding: 6px 10px;
        font-size: 0.72rem;
        flex: none;
    }
}

.page-with-towers {
    position: relative;
    overflow: visible;
}
.page-main-col {
    width: 100%;
}
.tower-col {
    position: absolute;
    top: 14px;
    bottom: 0;
    width: 160px;
    z-index: 9999;
}
.tower-col-left {
    left: calc((100vw - 1240px) / 2 - 170px);
}
.tower-col-right {
    right: calc((100vw - 1240px) / 2 - 170px);
}
.tower-col .pn-item > div {
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
}
.tower-sticky {
    position: sticky;
    top: 52px;
}
@media (max-width: 1600px) {
    .tower-col { width: 120px; }
}
@media (max-width: 1400px) {
    .tower-col { display: none; }
}
@media (max-width: 992px) {
    .t2-nav-menu {
        display: none;
    }
    .t2-hamburger {
        display: flex;
    }
    .t2-brand-links {
        gap: 16px;
    }
    .t2-brand-link {
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .t2-topbar-markets {
        display: none;
    }
    .t2-brand-inner {
        gap: 12px;
    }
    .t2-logo img {
        height: 36px;
    }
}
@media (max-width: 576px) {
    .t2-brand-links .t2-brand-link {
        display: none;
    }
    .hd-promo {
        padding: 0 5px !important;
        overflow: hidden;
    }
    .t2-topbar-inner {
        height: 30px;
    }
    .t2-breaking-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}
.gazete-breadcrumb { padding: 14px 0; font-size: 0.85rem; color: #666; border-bottom: 1px solid #ddd; margin-bottom: 24px; }
.gazete-breadcrumb a { color: #555; text-decoration: none; }
.gazete-breadcrumb a:hover { color: #e74c3c; }
.gazete-breadcrumb i.fa-chevron-right { font-size: 0.65rem; margin: 0 8px; color: #999; }
.gazete-breadcrumb i.fa-home { margin-right: 4px; }
.content-area { background: #f0f1f3; padding: 28px 0; }
.content-row {
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-rows: auto auto 1fr;
    gap: 24px;
    align-items: start;
}
.etiket-full-row { grid-template-columns: 1fr; }
.content-full { min-width: 0; overflow: hidden; }
.diger-grid-4 { grid-template-columns: repeat(4, 1fr); }
.content-main { grid-column: 1; grid-row: 1 / -1; min-width: 0; overflow: hidden; align-self: start; }
.block-card { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 1px 6px rgba(0,0,0,0.06); min-width: 0; }
.block-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid #eee; margin-bottom: 18px; position: relative; }
.block-header::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 80px; height: 3px; background: #e74c3c; }
.block-title { font-size: 1.15rem; font-weight: 700; color: #1a1a2e; margin: 0; line-height: 1.2; }
.block-title i { margin-right: 6px; color: #e74c3c; }
.block-more { font-size: 0.82rem; font-weight: 600; color: #888; text-decoration: none; transition: color 0.2s; }
.block-more:hover { color: #e74c3c; }
.content-sidebar { grid-column: 2; display: flex; flex-direction: column; gap: 20px; }.sidebar-widget { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.sw-header { padding: 12px 16px; font-size: 0.92rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.sw-header-dark { background: #1a1a2e; }
.sw-header-blue { background: #2980b9; }
.sw-header-green { background: #27ae60; }
.sw-header-red { background: #e74c3c; }
.sw-body { padding: 25px 28px; }
.sw-namaz .sw-body, .sw-anket .sw-body { padding: 14px 16px; }
.sw-puan .sw-body { padding: 12px 14px; }
.sw-body-nopad { padding: 0; }
.puan-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; padding: 0 12px; }
.puan-table thead { background: #f8f9fa; }
.puan-table th { padding: 8px 6px; font-weight: 700; color: #666; text-align: center; font-size: 0.7rem; text-transform: uppercase; }
.puan-table th:nth-child(2) { text-align: left; }
.puan-table td { padding: 7px 6px; text-align: center; border-bottom: 1px solid #f0f0f0; color: #333; }
.puan-table td:nth-child(2) { text-align: left; font-weight: 600; }
.puan-table td:first-child { font-weight: 700; color: #999; width: 24px; }
.puan-table td:last-child { font-weight: 700; color: #1a1a2e; }
.puan-sam td:first-child { color: #27ae60; }
.puan-avr td:first-child { color: #2980b9; }
.puan-dus td:first-child { color: #e74c3c; }
.puan-sam { background: rgba(39,174,96,0.04); }
.puan-avr { background: rgba(41,128,185,0.04); }
.puan-dus { background: rgba(231,76,60,0.04); }
.puan-more { display: block; text-align: center; padding: 10px; font-size: 0.78rem; font-weight: 600; color: #e74c3c; text-decoration: none; border-top: 1px solid #f0f0f0; transition: background 0.2s; }
.puan-more:hover { background: #fef2f2; }
.fikstur-hafta { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: #f8f9fa; border-bottom: 1px solid #eee; }
.fikstur-hafta-title { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; }
.fikstur-nav-btn { width: 28px; height: 28px; border: 1px solid #ddd; background: #fff; border-radius: 50%; color: #666; font-size: 0.7rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.fikstur-nav-btn:hover { background: #27ae60; border-color: #27ae60; color: #fff; }
.fikstur-list { padding: 0; }
.fikstur-mac { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 10px 14px; border-bottom: 1px solid #f5f5f5; gap: 8px; }
.fikstur-mac:last-child { border-bottom: none; }
.fikstur-takim { font-size: 0.8rem; font-weight: 600; color: #1a1a2e; }
.fikstur-ev { text-align: right; }
.fikstur-dep { text-align: left; }
.fikstur-skor { font-size: 0.82rem; font-weight: 700; color: #fff; background: #1a5276; padding: 3px 10px; border-radius: 4px; text-align: center; min-width: 50px; }
.sw-popular-list { padding: 0; }
.sw-popular-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; text-decoration: none; border-bottom: 1px solid #f2f2f2; transition: background 0.2s; }
.sw-popular-item:last-child { border-bottom: none; }
.sw-popular-item:hover { background: #fef2f2; }
.sw-popular-no { font-size: 1.4rem; font-weight: 800; color: #ddd; min-width: 24px; text-align: center; line-height: 1; }
.sw-popular-item:nth-child(1) .sw-popular-no { color: #e74c3c; }
.sw-popular-item:nth-child(2) .sw-popular-no { color: #e67e22; }
.sw-popular-item:nth-child(3) .sw-popular-no { color: #f1c40f; }
.sw-popular-img { width: 56px; min-width: 56px; height: 42px; border-radius: 6px; background-size: cover; background-position: center; }
.sw-popular-body { flex: 1; min-width: 0; }
.sw-popular-title { font-size: 0.78rem; font-weight: 600; color: #1a1a2e; margin: 0 0 3px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sw-popular-item:hover .sw-popular-title { color: #e74c3c; }
.sw-popular-meta { font-size: 0.68rem; color: #999; }
.sw-popular-meta i { margin-right: 3px; }
.sw-authors { overflow: hidden; grid-column: 2; }
.aw-viewport { overflow: hidden; }
.aw-track { transition: transform 0.35s ease; }
.aw-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; text-decoration: none; color: inherit; border-bottom: 1px solid #f0f1f3; transition: background 0.25s; position: relative; }
.aw-item:last-child { border-bottom: none; }
.aw-item:hover { background: #f8f9fb; }
.aw-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.aw-avatar::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid #e0e0e0; transition: border-color 0.3s, transform 0.5s; }
.aw-item:hover .aw-avatar::after { border-color: #e74c3c; transform: rotate(180deg); }
.aw-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.aw-content { flex: 1; min-width: 0; }
.aw-name { font-size: 0.88rem; font-weight: 700; color: #1a1a2e; margin: 0 0 4px; transition: color 0.2s; }
.aw-item:hover .aw-name { color: #e74c3c; }
.aw-article { font-size: 0.72rem; color: #888; margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.aw-arrow { color: #ccc; font-size: 0.75rem; flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.aw-item:hover .aw-arrow { color: #e74c3c; transform: translateX(3px); }
.aw-footer { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border-top: 1px solid #f0f1f3; }
.aw-all { font-size: 0.78rem; font-weight: 600; color: #e74c3c; text-decoration: none; transition: color 0.2s; }
.aw-all:hover { color: #c0392b; }
.aw-all i { font-size: 0.58rem; margin-left: 3px; transition: margin-left 0.2s; }
.aw-all:hover i { margin-left: 7px; }
.aw-nav { display: flex; gap: 6px; }
.aw-nav-btn { width: 30px; height: 30px; border: 2px solid #e0e0e0; background: #fff; border-radius: 50%; color: #555; font-size: 0.65rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.aw-nav-btn:hover { border-color: #e74c3c; color: #e74c3c; background: #fef2f2; }
.aw-nav-btn.aw-disabled { opacity: 0.3; pointer-events: none; }
.anket-soru { font-size: 0.92rem; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; line-height: 1.4; }
.anket-secenekler { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.anket-option { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid #e8e8e8; border-radius: 6px; font-size: 0.85rem; color: #555; cursor: pointer; transition: all 0.2s; }
.anket-option:hover { border-color: #e74c3c; background: #fef2f2; }
.anket-option input[type="radio"] { accent-color: #e74c3c; }
.anket-btn { width: 100%; padding: 10px; background: #e74c3c; color: #fff; border: none; border-radius: 6px; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.anket-btn:hover { background: #c0392b; }
.anket-sonuc-item { margin-bottom: 8px; }
.anket-sonuc-label { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; }
.anket-sonuc-bar { height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.anket-sonuc-fill { height: 100%; background: #e74c3c; border-radius: 3px; transition: width 0.5s; }
.sw-vefat { overflow: hidden; }
.vefat-slider-wrap { position: relative; }
.vefat-slide-card { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: inherit; padding: 10px 0; }
.vefat-slide-img img { width: 100%; max-height: 220px; object-fit: cover; border-radius: 10px; display: block; background: #e9ecef; }
.vefat-slide-name { font-size: 0.95rem; font-weight: 700; color: #1a1a2e; margin: 10px 0 4px; text-align: center; }
.vefat-slide-meta { font-size: 0.75rem; color: #999; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; }
.vefat-slide-date { color: #e74c3c; }
.vefat-nav { display: flex; justify-content: center; gap: 8px; padding: 8px 0; }
.vefat-nav-btn { width: 30px; height: 30px; border: 1px solid #ddd; background: #fff; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: #666; transition: all 0.2s; }
.vefat-nav-btn:hover { background: #e74c3c; color: #fff; border-color: #e74c3c; }
.namaz-select { width: 100%; padding: 8px 10px; border: 1px solid #ddd; border-radius: 6px; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.namaz-il { text-align: center; font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.namaz-tarih { font-size: 0.75rem; color: #999; text-align: center; margin-bottom: 10px; }
.namaz-list { list-style: none; padding: 0; margin: 0; }
.namaz-list li { display: flex; justify-content: space-between; align-items: center; padding: 9px 10px; border-bottom: 1px solid #f5f5f5; font-size: 0.85rem; transition: background 0.2s; }
.namaz-list li:last-child { border-bottom: none; }
.namaz-name { color: #555; font-weight: 500; }
.namaz-name i { width: 18px; margin-right: 6px; color: #999; font-size: 0.75rem; }
.namaz-time { font-weight: 700; color: #1a1a2e; }
.namaz-active { background: #e74c3c !important; border-radius: 6px; margin: 2px 0; }
.namaz-active .namaz-name, .namaz-active .namaz-time, .namaz-active .namaz-name i { color: #fff !important; }
.hava-bugun { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.hava-icon { font-size: 2.8rem; color: #f39c12; }
.hava-derece { font-size: 2rem; font-weight: 700; color: #1a1a2e; line-height: 1; }
.hava-durum { font-size: 0.82rem; color: #666; margin-top: 2px; }
.hava-sehir { font-size: 0.75rem; color: #999; }
.hava-hafta { display: flex; justify-content: space-between; border-top: 1px solid #f0f0f0; padding-top: 12px; }
.hava-gun { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.75rem; color: #666; }
.hava-gun i { font-size: 1.1rem; color: #f39c12; }
.eczane-baslik { font-size: 0.82rem; font-weight: 600; color: #27ae60; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px dashed #e0e0e0; }
.eczane-item { padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.eczane-item:last-of-type { border-bottom: none; }
.eczane-name { font-size: 0.88rem; font-weight: 700; color: #333; margin-bottom: 3px; }
.eczane-name i { color: #27ae60; margin-right: 5px; font-size: 0.8rem; }
.eczane-adres { font-size: 0.78rem; color: #777; margin-bottom: 2px; }
.eczane-tel { font-size: 0.78rem; color: #2980b9; }
.eczane-tel i { margin-right: 4px; }
.eczane-tumu { display: block; text-align: center; padding: 10px; margin-top: 8px; font-size: 0.82rem; font-weight: 600; color: #27ae60; text-decoration: none; border-top: 1px solid #f0f0f0; }
.eczane-tumu:hover { color: #1e8449; }
@media (max-width: 1199px) {
    .content-row { grid-template-columns: 1fr 280px; }
}
@media (max-width: 991px) {
    .content-row { grid-template-columns: 1fr 260px; gap: 18px; }
}
@media (max-width: 767px) {
    .content-row { grid-template-columns: 1fr; }
    .content-main { grid-column: 1; grid-row: auto; }
    .sw-authors, .sw-gazete { grid-column: 1; }
    .content-sidebar { grid-column: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 575px) {
    .content-sidebar { display: block; }
    .sidebar-mob-tabs { display: flex !important; gap: 0; background: #e8e9eb; border-radius: 12px; overflow: hidden; margin-bottom: 10px; }
    .sidebar-mob-tab { flex: 1; padding: 10px 6px; text-align: center; font-size: 0.72rem; font-weight: 700; color: #666; background: #e8e9eb; border: none; cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 3px; }
    .sidebar-mob-tab i { font-size: 1rem; }
    .sidebar-mob-tab.active { background: #fff; color: #e74c3c; }
    .content-sidebar .sidebar-widget { display: none; }
    .content-sidebar .sidebar-widget.sw-active { display: block; border-radius: 12px; overflow: hidden; animation: swFadeIn 0.3s ease; }
    .content-sidebar .sidebar-widget.sw-active .sw-body { padding: 25px; }
    .content-sidebar .sidebar-widget.sw-active .sw-header { display: none; }
    @keyframes swFadeIn { from { opacity: 0; } to { opacity: 1; } }
    .block-title { font-size: 1rem; }
    .sw-authors .aw-viewport { overflow: hidden; position: relative; }
    .sw-authors .aw-track { display: flex; flex-direction: row; transition: transform 0.35s ease; }
    .sw-authors .aw-item { min-width: 100%; flex-shrink: 0; box-sizing: border-box; border-bottom: none; flex-direction: column; align-items: center; text-align: center; padding: 20px 40px; gap: 10px; }
    .sw-authors .aw-avatar { width: 80px; height: 80px; }
    .sw-authors .aw-content { text-align: center; }
    .sw-authors .aw-name { font-size: 1rem; margin-bottom: 6px; }
    .sw-authors .aw-article { -webkit-line-clamp: 3; }
    .sw-authors .aw-arrow { display: none; }
    .sw-authors { position: relative; }
    .sw-authors .aw-nav { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 8px; pointer-events: none; z-index: 2; }
    .sw-authors .aw-nav-btn { pointer-events: auto; width: 30px; height: 30px; background: #fff; border-color: #ddd; box-shadow: 0 1px 6px rgba(0,0,0,0.15); }
    .sw-authors .aw-nav-btn i { transform: rotate(-90deg); }
}
.site-footer {
    background: #1a1a2e;
    padding: 50px 0 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav-group { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-left: 30px; }
.footer-logo { display: inline-block; margin-bottom: 14px; }
.footer-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1) brightness(0.65); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #94a3b8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { background: #e74c3c; color: #fff; }
.footer-apps { display: flex; gap: 10px; }
.app-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 8px; background: rgba(255,255,255,0.08); color: #fff; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.app-badge:hover { background: rgba(255,255,255,0.15); color: #fff; }
.app-badge i { font-size: 1.2rem; }
.footer-heading { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a { display: block; padding: 5px 0; font-size: 0.88rem; color: #94a3b8; text-decoration: none; transition: all 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a i { margin-right: 6px; width: 16px; }
.footer-newsletter p { font-size: 0.88rem; color: #94a3b8; margin-bottom: 14px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 8px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: #fff; font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form input:focus { border-color: #e74c3c; }
.newsletter-form button { padding: 10px 20px; border-radius: 20px; border: none; background: #e74c3c; color: #fff; font-size: 0.85rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.newsletter-form button:hover { background: #c0392b; }
.footer-contact { margin-top: 24px; }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: #475569; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #475569; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }
.scroll-top { position: fixed; bottom: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: #e74c3c; color: #fff; border: none; cursor: pointer; font-size: 0.9rem; display: none; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 2px 8px rgba(0,0,0,0.2); transition: all 0.3s; }
.scroll-top:hover { background: #c0392b; }
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-nav-group { grid-template-columns: 1fr 1fr; gap: 20px; padding-left: 0; }
    .footer-social { justify-content: center; }
    .footer-apps { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
}
.gazete-page {
    background: #f0f1f3;
    min-height: 60vh;
    padding: 0 0 40px;
}
.gazete-page-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 0 6px;
    padding-left: 12px;
    border-left: 4px solid #e74c3c;
}
.gazete-page-tarih {
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 22px;
}
.gazete-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gazete-grid-item {
    text-decoration: none;
    color: inherit;
}
.gazete-grid-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.gazete-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.gazete-grid-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    background: #e9ecef;
}
.gazete-grid-name {
    text-align: center;
    padding: 12px 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
}
.gazete-dropdown-wrap {
    margin-bottom: 20px;
}
.gazete-dropdown {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    cursor: pointer;
    appearance: auto;
}
.gazete-dropdown:focus {
    border-color: #e74c3c;
    outline: none;
}
.gazete-buyuk-wrap {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.gazete-buyuk-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
@media (max-width: 991px) {
    .gazete-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
@media (max-width: 575px) {
    .gazete-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gazete-page-title {
        font-size: 1.1rem;
    }
    .gazete-grid-name {
        font-size: 0.82rem;
        padding: 8px 6px;
    }
    .gazete-buyuk-wrap {
        padding: 12px;
    }
    .gazete-dropdown {
        max-width: 100%;
    }
}
.news-badge {
    display: inline-block;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: none;
}
.badge-gundem,
.badge-siyaset,
.badge-ekonomi,
.badge-spor,
.badge-teknoloji,
.badge-dunya,
.badge-saglik { background: none; color: #e74c3c; }
.son-haberler-card {
    overflow: hidden;
}
.nfs-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 340px;
    margin-bottom: 16px;
}
.nfs-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.nfs-slide {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.nfs-slide.nfs-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.nfs-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.nfs-slide:hover .nfs-img {
    transform: scale(1.04);
}
.nfs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    color: #fff;
}
.nfs-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    margin: 6px 0 10px;
    line-height: 1.35;
}
.nfs-nav {}
.nfs-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.nfs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.nfs-dot:hover {
    background: rgba(255,255,255,0.7);
}
.nfs-dot.nfs-dot-active {
    background: #e74c3c;
    transform: scale(1.3);
}
.nfs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s;
}
.nfs-arrow:hover { background: #e74c3c; }
.nfs-prev { left: 12px; }
.nfs-next { right: 12px; }
.news-featured {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 340px;
    text-decoration: none;
}
.news-featured-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
}
.news-featured:hover .news-featured-img {
    transform: scale(1.04);
}
.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.news-featured-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 8px 0;
    line-height: 1.35;
}
.news-meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
}
.news-meta i {
    margin-right: 3px;
}
.meta-sep {
    margin: 0 6px;
    opacity: 0.4;
}
.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.news-list-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.2s;
}
.news-list-item:hover {
    border-color: #e74c3c;
    box-shadow: 0 2px 10px rgba(231,76,60,0.08);
}
.news-list-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.news-list-content {
    flex: 1;
    min-width: 0;
    padding: 12px;
}
.news-list-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 6px 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-list-item:hover .news-list-title {
    color: #e74c3c;
}
.news-list-desc {
    font-size: 0.82rem;
    color: #666;
    margin: 0 0 6px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-list-item .news-meta {
    color: #999;
}
.news-load-more {
    display: block;
    text-align: center;
    padding: 14px;
    margin-top: 16px;
    border-radius: 8px;
    background: #f8f9fa;
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.news-load-more:hover {
    background: #e74c3c;
    color: #fff;
}
.sosyal-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    transition: filter 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sosyal-item:last-child {
    border-bottom: none;
}
.sosyal-item:hover {
    filter: brightness(1.1);
}
.sosyal-item i {
    width: 28px;
    font-size: 1.1rem;
}
.sosyal-name {
    flex: 1;
}
.sosyal-count {
    font-size: 0.78rem;
    opacity: 0.85;
}
.sosyal-facebook { background: #1877f2; }
.sosyal-twitter { background: #1da1f2; }
.sosyal-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sosyal-youtube { background: #ff0000; }
.sosyal-telegram { background: #0088cc; }
.diger-cat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}
.saatlik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.saatlik-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8f9fb;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, box-shadow 0.2s;
}
.saatlik-item:hover {
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.saatlik-no {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e67e22;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    line-height: 1;
}
.saatlik-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.saatlik-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.saatlik-body {
    flex: 1;
    min-width: 0;
}
.saatlik-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 5px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.saatlik-item:hover .saatlik-title {
    color: #e74c3c;
}
.saatlik-time {
    font-size: 0.68rem;
    color: #e67e22;
    font-weight: 600;
}
.saatlik-time i {
    margin-right: 3px;
}
@media (max-width: 991px) {
    .saatlik-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .saatlik-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .saatlik-item {
        padding: 10px 12px;
    }
}
.spor-block {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../assets/images/placeholders/spor-bg.jpg') center/cover no-repeat;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.spor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 14px;
    position: relative;
    z-index: 2;
}
.spor-head-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.spor-head-title i {
    color: #4ade80;
    margin-right: 8px;
}
.spor-head-more {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
    text-decoration: none;
    transition: color 0.2s;
}
.spor-head-more:hover { color: #fff; }
.spor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 24px 24px;
    position: relative;
    z-index: 2;
}
.spor-banner {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    grid-row: 1 / 3;
    min-height: 340px;
}
.spor-banner-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}
.spor-banner:hover .spor-banner-img { transform: scale(1.05); }
.spor-banner-over {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.spor-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: #27ae60;
    padding: 3px 12px;
    border-radius: 3px;
    margin-bottom: 10px;
    width: fit-content;
}
.spor-banner-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.35;
}
.spor-banner-meta {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
}
.spor-banner-meta span {
    color: #4ade80;
    font-weight: 600;
    margin-left: 10px;
}
.spor-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    grid-row: 1 / 3;
}
.spor-card {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
}
.spor-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
}
.spor-card:hover .spor-card-img { transform: scale(1.06); }
.spor-card-body {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}
.spor-card-cat {
    display: block;
    font-size: 0.56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4ade80;
    margin-bottom: 4px;
}
.spor-card-title {
    font-size: 0.76rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.spor-card:hover .spor-card-title { color: #4ade80; }
.spor-card-time {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.45);
}
@media (max-width: 767px) {
    .spor-block {
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        border-radius: 12px;
    }
    .spor-head {
        padding: 16px 16px 12px;
        border-bottom: 2px solid #27ae60;
    }
    .spor-head-title {
        color: #1a1a2e;
        text-shadow: none;
        font-size: 1rem;
    }
    .spor-head-title i { color: #27ae60; }
    .spor-head-more { color: #27ae60; }
    .spor-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    
    .spor-banner {
        grid-row: auto;
        min-height: 200px;
        border-radius: 0;
    }
    .spor-banner-over { padding: 16px; }
    .spor-banner-title { font-size: 1.1rem; }
    
    .spor-cards {
        grid-row: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
        padding: 0;
    }
    .spor-card {
        display: flex;
        flex-direction: row;
        height: auto;
        min-height: 0;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        padding: 12px 16px;
        align-items: center;
        gap: 12px;
    }
    .spor-card:last-child { border-bottom: none; }
    .spor-card-img {
        width: 80px;
        min-width: 80px;
        height: 56px;
        border-radius: 8px;
        position: relative;
    }
    .spor-card-body {
        padding: 0;
        background: transparent;
        position: relative;
    }
    .spor-card-cat {
        font-size: 0.6rem;
        color: #27ae60;
        background: transparent;
        padding: 0;
        margin-bottom: 3px;
    }
    .spor-card-title {
        font-size: 0.82rem;
        color: #1a1a2e;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }
    .spor-card-time {
        color: #999;
        font-size: 0.68rem;
    }
}
@media (max-width: 575px) {
    .spor-content { padding: 0; gap: 0; }
    .spor-head { padding: 14px 14px 10px; }
    .spor-banner { min-height: 180px; }
    .spor-banner-title { font-size: 1rem; }
    .spor-card { padding: 10px 14px; }
    .spor-card-img { width: 72px; min-width: 72px; height: 50px; }
    .spor-card-title { font-size: 0.78rem; }
}
.diger-cat-head {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 20px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
}
.diger-cat-head:first-of-type {
    margin-top: 8px;
}
.diger-cat-head i {
    margin-right: 6px;
    color: #e74c3c;
}
.diger-cat-ekonomi { border-color: #e67e22; }
.diger-cat-ekonomi i { color: #e67e22; }
.diger-cat-spor { border-color: #27ae60; }
.diger-cat-spor i { color: #27ae60; }
.diger-cat-teknoloji { border-color: #2980b9; }
.diger-cat-teknoloji i { color: #2980b9; }
.diger-cat-saglik { border-color: #8e44ad; }
.diger-cat-saglik i { color: #8e44ad; }
.diger-cat-dunya { border-color: #2c3e50; }
.diger-cat-dunya i { color: #2c3e50; }
.diger-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.diger-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.diger-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.diger-img {
    position: relative;
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
    overflow: hidden;
}
.diger-card:hover .diger-img {
    transform: scale(1.05);
}
.diger-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.diger-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.diger-card:hover .diger-title {
    color: #e74c3c;
}
.diger-meta {
    font-size: 0.7rem;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.diger-meta i { margin-right: 2px; }
.diger-author {
    color: #666;
    font-weight: 600;
    margin-left: 6px;
}
.diger-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.diger-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e74c3c;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}
.diger-card:hover .diger-link {
    gap: 8px;
}
@media (max-width: 991px) {
    .diger-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .diger-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .diger-grid, .diger-grid-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .diger-card {
        flex-direction: column;
    }
    .diger-img {
        width: 100%;
        min-width: unset;
        height: 180px;
        min-height: unset;
    }
    .diger-body {
        padding: 12px;
    }
    .diger-title {
        font-size: 0.85rem;
    }
    .diger-desc {
        display: none;
    }
}
.bik-section {
    background: #f0f1f3;
    padding: 28px 0;
}
.bik-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}
.bik-tab {
    flex: 1;
    padding: 12px 10px;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
    font-family: inherit;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.bik-tab-icra { background: #64b5f6; }
.bik-tab-ihale { background: #81c784; }
.bik-tab-tebligat { background: #e57373; }
.bik-tab-personel { background: #ffb74d; }
.bik-tab:hover { filter: brightness(1.1); transform: translateY(-1px); }
.bik-slider-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bik-slider-content {
    flex: 1;
    overflow: hidden;
}
.bik-slider-track {
    display: flex;
    gap: 14px;
    transition: transform 0.4s ease;
}
.bik-slide-item {
    flex-shrink: 0;
    width: calc(50% - 7px);
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.bik-slide-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
    line-height: 1.45;
}
.bik-slide-item:hover h4 { color: #e74c3c; }
.bik-slide-meta {
    font-size: 0.72rem;
    color: #999;
}
.bik-slide-meta i { margin-right: 3px; margin-left: 12px; }
.bik-slide-meta i:first-child { margin-left: 0; }
.bik-nav {
    display: flex;
    flex-direction: row;
    gap: 4px;
    flex-shrink: 0;
}
.bik-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    color: #555;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.bik-nav-btn:hover { background: #e74c3c; border-color: #e74c3c; color: #fff; }
@media (max-width: 767px) {
    .bik-slide-item { width: 100%; }
    .bik-tabs { gap: 4px; }
    .bik-tab { font-size: 0.7rem; padding: 10px 6px; border-radius: 6px; }
}
.bik-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f0f1f3;
    border-top: 1px solid #eee;
    border-radius: 0 0 10px 10px;
}
.bik-paging {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bik-page-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background: #fff;
    color: #555;
    border-radius: 6px;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.bik-page-btn:hover { background: #e74c3c; border-color: #e74c3c; color: #fff; }
.bik-page-info {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
}
.bik-page-info small {
    font-weight: 400;
    color: #999;
}
.bik-logo {
    display: flex;
    align-items: center;
}
.bik-logo-img {
    height: 28px;
    width: auto;
}
.bik-update {
    font-size: 0.68rem;
    color: #aaa;
}
@media (max-width: 767px) {
    .bik-tabs {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .bik-tabs::-webkit-scrollbar { display: none; }
    .bik-tab {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 0.7rem;
    }
}
.burclar-section {
    background: #f0f1f3;
    padding: 28px 0;
}
.burc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.burc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.burc-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(231,76,60,0.15);
    transform: translateY(-3px);
}
.burc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s;
}
.burc-card:nth-child(1) .burc-icon { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.burc-card:nth-child(2) .burc-icon { background: linear-gradient(135deg, #27ae60, #1e8449); }
.burc-card:nth-child(3) .burc-icon { background: linear-gradient(135deg, #f39c12, #d68910); }
.burc-card:nth-child(4) .burc-icon { background: linear-gradient(135deg, #3498db, #2471a3); }
.burc-card:nth-child(5) .burc-icon { background: linear-gradient(135deg, #e67e22, #ca6f1e); }
.burc-card:nth-child(6) .burc-icon { background: linear-gradient(135deg, #8e44ad, #6c3483); }
.burc-card:nth-child(7) .burc-icon { background: linear-gradient(135deg, #1abc9c, #148f77); }
.burc-card:nth-child(8) .burc-icon { background: linear-gradient(135deg, #2c3e50, #1a252f); }
.burc-card:nth-child(9) .burc-icon { background: linear-gradient(135deg, #e74c3c, #e67e22); }
.burc-card:nth-child(10) .burc-icon { background: linear-gradient(135deg, #2980b9, #1a5276); }
.burc-card:nth-child(11) .burc-icon { background: linear-gradient(135deg, #16a085, #0e6655); }
.burc-card:nth-child(12) .burc-icon { background: linear-gradient(135deg, #9b59b6, #7d3c98); }
.burc-card:hover .burc-icon {
    transform: scale(1.1) rotate(5deg);
}
.burc-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.burc-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
    line-height: 1;
}
.burc-card span {
    font-size: 0.68rem;
    color: #999;
    display: block;
    line-height: 1.2;
}
.vid-section {
    background: #0d1117;
    padding: 28px 0;
}
.vid-card {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 12px;
    padding: 20px;
}
.vid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 12px;
    border-bottom: 1px solid #21262d;
    margin-bottom: 18px;
    position: relative;
}
.vid-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #e74c3c;
}
.vid-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e6edf3;
    margin: 0;
}
.vid-title i {
    color: #e74c3c;
    margin-right: 6px;
}
.vid-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: #8b949e;
    text-decoration: none;
    transition: color 0.2s;
}
.vid-more:hover { color: #e74c3c; }
.vm-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.vm-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}
.vm-item:hover .vm-img {
    transform: scale(1.08);
}
.vm-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
    transition: background 0.4s;
}
.vm-item:hover .vm-info {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.1) 100%);
}
.vm-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(231,76,60,0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(231,76,60,0.4), 0 0 40px rgba(231,76,60,0.12);
}
.vm-play-lg {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    box-shadow: 0 0 30px rgba(231,76,60,0.5), 0 0 60px rgba(231,76,60,0.15);
}
.vm-item:hover .vm-play {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 30px rgba(231,76,60,0.6), 0 0 60px rgba(231,76,60,0.2);
}
.vm-sure {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 0.7rem;
    z-index: 2;
}
.vm-sure i { margin-right: 3px; }
.vm-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    background: #e74c3c;
    padding: 3px 10px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 8px;
    z-index: 2;
}
.vm-badge i {
    font-size: 0.45rem;
    animation: vmPulse 1.5s infinite;
}
@keyframes vmPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.vm-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}
.vm-title-lg {
    font-size: 1.2rem;
}
.vm-hero .vm-title {
    font-size: 1.15rem;
}
.vm-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 190px 190px;
    gap: 12px;
}
.vm-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.vm-tall {
    grid-row: 1 / 3;
}
.yazarlar-section {
    background: #f0f1f3;
    padding: 28px 0;
}
.yazarlar-slider-wrap {
    position: relative;
}
.yazarlarSwiper .swiper-wrapper {
    align-items: stretch;
}
.yazarlarSwiper .swiper-slide {
    height: auto;
}
.yazar-card {
    background: linear-gradient(180deg, #e8eaf0 0%, #f6f7fa 100%);
    border-radius: 10px;
    padding: 28px 18px 20px;
    text-align: center;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    transition: all 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.yazar-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.yazar-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                conic-gradient(#e74c3c, #f39c12, #e74c3c) border-box;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.yazar-card:hover .yazar-avatar {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(231,76,60,0.2);
}
.yazar-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.yazar-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}
.yazar-unvan { display: none; }
.yazar-ozet {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
    margin: 6px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.yazarlar-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s;
}
.yazarlar-nav-btn:hover {
    background: #e74c3c;
}
.yazarlar-prev { left: -14px; }
.yazarlar-next { right: -14px; }
.galeri-section {
    background: #f0f1f3;
    padding: 28px 0 36px;
}
.galeri-switcher {
    display: flex;
    gap: 6px;
    margin-left: auto;
    margin-right: 16px;
}
.galeri-sw-btn {
    border: 1.5px solid #ddd;
    background: #fff;
    color: #666;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
}
.galeri-sw-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}
.galeri-sw-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}
.galeri-sw-btn i {
    font-size: 0.7rem;
}
.galeri-section .block-header {
    flex-wrap: wrap;
}
.galeri-panel {
    display: none;
}
.galeri-panel.active {
    display: block;
    animation: galeriFadeIn 0.4s ease;
}
@keyframes galeriFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.g1-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 190px 190px;
    gap: 12px;
}
.g1-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}
.g1-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.g1-tall {
    grid-row: 1 / 3;
}
.g1-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.g1-item:hover .g1-img {
    transform: scale(1.08);
}
.g1-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: background 0.4s;
}
.g1-item:hover .g1-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.1) 100%);
}
.g1-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #fff;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.15);
}
.g1-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}
.g1-hero .g1-title {
    font-size: 1.15rem;
}
.g1-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(231,76,60,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 2;
}
.g1-item:hover .g1-zoom {
    transform: translate(-50%, -50%) scale(1);
}
.g2-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.g2-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.g2-side .g2-item {
    flex: 1;
}
.g2-hero {
    min-height: 380px;
}
.g2-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.g2-bottom .g2-item {
    min-height: 180px;
}
.g2-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}
.g2-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.g2-item:hover .g2-img {
    transform: scale(1.08);
}
.g2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: background 0.4s;
}
.g2-item:hover .g2-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.12) 100%);
}
.g2-cat {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #e74c3c;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    width: fit-content;
}
.g2-cat-spor { background: #27ae60; }
.g2-cat-tech { background: #2980b9; }
.g2-cat-yasam { background: #16a085; }
.g2-cat-ekonomi { background: #e67e22; }
.g2-cat-dunya { background: #2c3e50; }
.g2-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #fff;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.15);
}
.g2-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}
.g2-hero .g2-title {
    font-size: 1.25rem;
}
.g2-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(231,76,60,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 2;
}
.g2-item:hover .g2-zoom {
    transform: translate(-50%, -50%) scale(1);
}
.g3-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
}
.g3-hero {
    grid-row: 1 / 3;
}
.g3-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}
.g3-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.4s;
}
.g3-item:hover .g3-img {
    transform: scale(1.08);
    filter: brightness(0.85);
}
.g3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.05) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: background 0.4s;
}
.g3-item:hover .g3-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.08) 100%);
}
.g3-cat {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    background: #e74c3c;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
    width: fit-content;
}
.g3-cat-spor { background: #27ae60; }
.g3-cat-tech { background: #2980b9; }
.g3-cat-yasam { background: #16a085; }
.g3-cat-ekonomi { background: #e67e22; }
.g3-cat-dunya { background: #2c3e50; }
.g3-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: #fff;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.15);
}
.g3-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}
.g3-hero .g3-title {
    font-size: 1.2rem;
}
.g3-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(231,76,60,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(231,76,60,0.4);
}
.g3-item:hover .g3-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 1199px) {
    .content-row {
        grid-template-columns: 1fr 280px;
    }
}
@media (max-width: 991px) {
    .content-row {
        grid-template-columns: 1fr 260px;
        gap: 18px;
    }
    .news-featured { height: 280px; }
    .nfs-wrap { height: 280px; }
    .news-list-img {
        width: 110px;
        min-height: 80px;
    }
    
    .vm-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 170px 170px;
    }
    .vm-hero { grid-column: 1 / 3; }
    .burc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .g1-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 170px 170px;
    }
    .g1-hero { grid-column: 1 / 3; }
    
    .g2-hero { min-height: 320px; }
    .g2-bottom .g2-item { min-height: 160px; }
    
    .g3-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        grid-template-rows: 180px 180px;
    }
}
@media (max-width: 767px) {
    .content-row {
        grid-template-columns: 1fr;
    }
    .content-main {
        grid-column: 1;
        grid-row: auto;
    }
    .sw-authors,
    .sw-gazete {
        grid-column: 1;
    }
    .content-sidebar {
        grid-column: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .news-featured { height: 220px; }
    .nfs-wrap { height: auto; overflow: visible; }
    .nfs-track { height: 280px; }
    .nfs-title { font-size: 1.1rem; }
    .nfs-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 0 4px;
    }
    .nfs-dots {
        position: static;
        transform: none;
    }
    .nfs-dot {
        background: rgba(0,0,0,0.15);
    }
    .nfs-arrow {
        display: none;
    }
    .nfs-track {
        border-radius: 12px;
        overflow: hidden;
    }
    .news-featured-title {
        font-size: 1.1rem;
    }
    .news-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .news-list-item {
        flex-direction: column;
        border-radius: 10px;
    }
    .news-list-img {
        width: 100%;
        min-width: unset;
        height: 180px;
        border-radius: 0;
        margin: 0;
    }
    .news-list-content {
        padding: 10px 12px;
    }
    .news-list-title {
        font-size: 0.88rem;
        margin: 4px 0 3px;
    }
    .news-list-desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
    .burc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .burc-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .burc-card {
        padding: 10px 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    
    .vm-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 300px 150px 150px;
    }
    .vm-hero { grid-column: 1 / 3; grid-row: auto; }
    .vm-tall { grid-row: auto; }
    .vm-hero .vm-title { font-size: 1rem; }
    .vm-img { filter: brightness(0.55); transition: transform 0.5s, filter 0.4s; }
    .vm-item:hover .vm-img { filter: brightness(1); }
    .vm-info { background: none; }
    .vm-item:hover .vm-info { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); }
    
    .g1-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }
    .g1-hero { grid-column: 1 / 3; grid-row: auto; }
    .g1-tall { grid-row: auto; }
    .g1-hero .g1-title { font-size: 1rem; }
    
    .g2-top { grid-template-columns: 1fr; }
    .g2-hero { min-height: 240px; }
    .g2-side { flex-direction: row; }
    .g2-side .g2-item { min-height: 160px; }
    .g2-bottom { grid-template-columns: repeat(3, 1fr); }
    .g2-bottom .g2-item { min-height: 150px; }
    .g2-hero .g2-title { font-size: 1.1rem; }
    
    .g3-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }
    .g3-hero { grid-row: 1 / 3; }
    .g3-hero .g3-title { font-size: 1rem; }
    .yazarlar-prev { left: -6px; }
    .yazarlar-next { right: -6px; }
}
@media (max-width: 575px) {
    
    .content-sidebar {
        display: block;
    }
    .sidebar-mob-tabs {
        display: flex !important;
        gap: 0;
        background: #e8e9eb;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 10px;
    }
    .sidebar-mob-tab {
        flex: 1;
        padding: 10px 6px;
        text-align: center;
        font-size: 0.72rem;
        font-weight: 700;
        color: #666;
        background: #e8e9eb;
        border: none;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }
    .sidebar-mob-tab i {
        font-size: 1rem;
    }
    .sidebar-mob-tab.active {
        background: #fff;
        color: #e74c3c;
    }
    .content-sidebar .sidebar-widget {
        display: none;
    }
    
    .sw-authors .aw-viewport {
        overflow: hidden;
        position: relative;
    }
    .sw-authors .aw-track {
        display: flex;
        flex-direction: row;
        transition: transform 0.35s ease;
    }
    .sw-authors .aw-item {
        min-width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;
        border-bottom: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 40px;
        gap: 10px;
    }
    .sw-authors .aw-avatar {
        width: 80px;
        height: 80px;
    }
    .sw-authors .aw-content {
        text-align: center;
    }
    .sw-authors .aw-name {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .sw-authors .aw-article {
        -webkit-line-clamp: 3;
    }
    .sw-authors .aw-arrow {
        display: none;
    }
    .sw-authors {
        position: relative;
    }
    .sw-authors .aw-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 8px;
        pointer-events: none;
        z-index: 2;
    }
    .sw-authors .aw-nav-btn {
        pointer-events: auto;
        width: 30px;
        height: 30px;
        background: #fff;
        border-color: #ddd;
        box-shadow: 0 1px 6px rgba(0,0,0,0.15);
    }
    .sw-authors .aw-nav-btn i {
        transform: rotate(-90deg);
    }
    .content-sidebar .sidebar-widget.sw-active {
        display: block;
        border-radius: 12px;
        overflow: hidden;
        animation: swFadeIn 0.3s ease;
    }
    .content-sidebar .sidebar-widget.sw-active .sw-body {
        padding: 25px;
    }
    @keyframes swFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .content-sidebar .sidebar-widget.sw-active .sw-header {
        display: none;
    }
    .news-featured {
        height: 200px;
    }
    .news-featured-title {
        font-size: 1rem;
    }
    .news-list-img {
        height: 140px;
    }
    .block-title {
        font-size: 1rem;
    }
    .burc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .burc-card h4 {
        font-size: 0.8rem;
    }
    .burc-card span {
        font-size: 0.65rem;
    }
    
    .vm-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 140px 140px;
        gap: 8px;
    }
    .vm-title { font-size: 0.78rem; }
    .vm-hero .vm-title { font-size: 0.92rem; }
    .vm-play { width: 36px; height: 36px; font-size: 0.8rem; }
    .vm-play-lg { width: 46px; height: 46px; font-size: 1rem; }
    
    .galeri-switcher {
        margin-left: 0;
        margin-right: auto;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    .galeri-sw-btn span { display: none; }
    .galeri-sw-btn { padding: 5px 12px; font-size: 0.7rem; }
    
    .g1-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 140px);
        gap: 10px;
    }
    .g1-title { font-size: 0.78rem; }
    .g1-hero .g1-title { font-size: 0.92rem; }
    .g1-badge { font-size: 0.62rem; padding: 3px 8px; }
    
    .g2-top { grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; }
    .g2-hero { min-height: 200px; }
    .g2-side { flex-direction: column; gap: 10px; }
    .g2-side .g2-item { min-height: 140px; }
    .g2-bottom { grid-template-columns: 1fr 1fr; gap: 10px; }
    .g2-bottom .g2-item { min-height: 130px; }
    .g2-title { font-size: 0.78rem; }
    .g2-hero .g2-title { font-size: 1rem; }
    
    .g3-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 140px);
        gap: 10px;
    }
    .g3-hero { grid-row: 1 / 3; }
    .g3-title { font-size: 0.78rem; }
    .g3-hero .g3-title { font-size: 0.92rem; }
}
.burc-sidebar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.burc-sb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}
.burc-sb-item:hover, .burc-sb-item.active {
    background: #f5f5f5;
}
.burc-sb-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.burc-sb-name {
    font-size: 0.7rem;
    color: #555;
    text-align: center;
    line-height: 1.2;
}
.burc-sb-item.active .burc-sb-name { color: #1a1a2e; font-weight: 600; }
.burc-sidebar-yorum {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}
.burc-yorum-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.burc-yorum-text {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
    margin: 0 0 10px;
}
.burc-d-item {
    font-size: 0.8rem;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
    line-height: 1.4;
}
.burc-d-item i { margin-right: 5px; }
.burc-d-item:last-child { border-bottom: none; }
.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 16px 16px;
}
.eco-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8f9fb;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, box-shadow 0.2s;
}
.eco-item:hover {
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.eco-no {
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    line-height: 1;
}
.eco-no-red { color: #e74c3c; }
.eco-no-orange { color: #e67e22; }
.eco-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.eco-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eco-body {
    flex: 1;
    min-width: 0;
}
.eco-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 5px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.eco-item:hover .eco-title {
    color: #e74c3c;
}
.eco-time {
    font-size: 0.68rem;
    color: #999;
    font-weight: 600;
}
.eco-time i {
    margin-right: 3px;
}
.eco-empty {
    padding: 30px 16px;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}
.eco-empty i {
    margin-right: 5px;
}
@media (max-width: 991px) {
    .eco-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .eco-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .eco-item {
        padding: 10px 12px;
    }
}
.eco-carousel-wrap {
    position: relative;
    padding: 0 40px 16px;
}
.eco-carousel-wrap .swiper-slide {
    height: auto;
}
.eco-carousel-wrap .eco-item {
    margin: 0;
    height: 100%;
    min-height: 80px;
    box-sizing: border-box;
}
.eco-carousel-wrap .eco-body {
    display: flex;
    flex-direction: column;
}
.eco-carousel-wrap .eco-time {
    display: block;
}
.eco-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.eco-nav:hover {
    background: var(--color-primary, #e74c3c);
    color: #fff;
    border-color: var(--color-primary, #e74c3c);
}
.eco-nav-prev { left: 4px; }
.eco-nav-next { right: 4px; }
@media (max-width: 575px) {
    .eco-carousel-wrap { padding: 0 30px 12px; }
}
.topbar-user-menu { position: relative; padding-bottom:8px; margin-bottom:-8px; }
.topbar-user-toggle { display:flex; align-items:center; gap:6px; color:#ccc; text-decoration:none; font-size:0.8rem; cursor:pointer; }
.topbar-user-toggle:hover { color:#fff; }
.topbar-user-avatar { width:22px; height:22px; border-radius:50%; object-fit:cover; border:1px solid rgba(255,255,255,.3); }
.topbar-user-dropdown { display:none; position:absolute; right:0; top:100%; padding-top:4px; z-index:9999; min-width:200px; }
.topbar-user-dropdown::before { content:''; position:absolute; top:0; right:16px; border:6px solid transparent; border-bottom-color:#fff; }
.topbar-user-dropdown-inner { background:#fff; border-radius:10px; box-shadow:0 8px 30px rgba(0,0,0,.2); overflow:hidden; }
.topbar-user-menu:hover .topbar-user-dropdown { display:block; }
.topbar-user-dropdown a { display:flex; align-items:center; gap:10px; padding:10px 16px; color:#333; text-decoration:none; font-size:0.82rem; transition:background .15s; }
.topbar-user-dropdown a:hover { background:#f5f5f5; }
.topbar-user-dropdown a i { width:16px; text-align:center; color:#999; }
.topbar-user-divider { height:1px; background:#eee; margin:4px 0; }
.topbar-user-logout { color:#e74c3c !important; }
.topbar-user-logout i { color:#e74c3c !important; }
.uye-badge { display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px; padding:0 5px; background:#e74c3c; color:#fff; border-radius:9px; font-size:0.65rem; font-weight:700; margin-left:4px; }
.uye-auth-wrap { display:flex; justify-content:center; padding:40px 16px; min-height:400px; }
.uye-auth-card { background:#fff; border-radius:14px; box-shadow:0 4px 20px rgba(0,0,0,.08); padding:36px; width:100%; max-width:440px; }
.uye-auth-card-wide { max-width:580px; }
.uye-auth-header { text-align:center; margin-bottom:28px; }
.uye-auth-header i { font-size:2.5rem; color:#e74c3c; margin-bottom:10px; display:block; }
.uye-auth-header h2 { font-size:1.4rem; font-weight:700; color:#1a1a2e; margin:0 0 6px; }
.uye-auth-header p { font-size:0.85rem; color:#888; margin:0; }
.uye-auth-form { display:flex; flex-direction:column; gap:16px; }
.uye-form-group { display:flex; flex-direction:column; gap:4px; }
.uye-form-group label { font-size:0.78rem; font-weight:600; color:#555; display:flex; align-items:center; gap:5px; }
.uye-form-group label i { color:#999; font-size:0.75rem; }
.uye-form-group input, .uye-form-group select, .uye-form-group textarea { border:1px solid #ddd; border-radius:8px; padding:10px 14px; font-size:0.85rem; outline:none; transition:border-color .2s; background:#fafbfc; }
.uye-form-group input:focus, .uye-form-group select:focus, .uye-form-group textarea:focus { border-color:#e74c3c; background:#fff; }
.uye-form-group input:disabled { background:#f0f0f0; color:#999; }
.uye-form-group small { font-size:0.7rem; color:#aaa; }
.uye-form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.uye-form-row { display:flex; justify-content:space-between; align-items:center; }
.uye-password-wrap { position:relative; display:flex; }
.uye-password-wrap input { flex:1; padding-right:40px; }
.uye-password-toggle { position:absolute; right:10px; top:50%; transform:translateY(-50%); border:none; background:none; color:#999; cursor:pointer; padding:4px; }
.uye-checkbox { display:flex; align-items:center; gap:8px; font-size:0.8rem; color:#555; cursor:pointer; }
.uye-checkbox input { width:16px; height:16px; accent-color:#e74c3c; }
.uye-checkbox a { color:#e74c3c; }
.uye-link { font-size:0.78rem; color:#e74c3c; text-decoration:none; }
.uye-link:hover { text-decoration:underline; }
.uye-btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; border:none; border-radius:8px; padding:11px 20px; font-size:0.85rem; font-weight:600; cursor:pointer; transition:all .2s; }
.uye-btn-primary { background:#e74c3c; color:#fff; }
.uye-btn-primary:hover { background:#c0392b; }
.uye-btn-sm { padding:6px 12px; font-size:0.75rem; border-radius:6px; }
.uye-btn-danger { background:#e74c3c; color:#fff; }
.uye-msg { padding:10px 14px; border-radius:8px; font-size:0.82rem; margin-top:8px; }
.uye-msg-success { background:#d4edda; color:#155724; border:1px solid #c3e6cb; }
.uye-msg-error { background:#f8d7da; color:#721c24; border:1px solid #f5c6cb; }
.uye-auth-footer { text-align:center; margin-top:20px; padding-top:16px; border-top:1px solid #f0f0f0; font-size:0.82rem; color:#888; }
.uye-auth-footer a { color:#e74c3c; font-weight:600; text-decoration:none; }
.uye-profil-wrap { padding:0 0 40px; }
.uye-profil-header { display:flex; align-items:center; gap:20px; padding:30px; background:linear-gradient(135deg,#1a1a2e,#16213e); border-radius:14px; margin-bottom:20px; color:#fff; }
.uye-profil-avatar { width:80px; height:80px; border-radius:50%; overflow:hidden; border:3px solid rgba(255,255,255,.3); flex-shrink:0; }
.uye-profil-avatar img { width:100%; height:100%; object-fit:cover; }
.uye-profil-info h2 { font-size:1.3rem; font-weight:700; margin:0 0 2px; }
.uye-profil-username { font-size:0.8rem; color:rgba(255,255,255,.6); }
.uye-profil-stats { display:flex; gap:16px; margin-top:8px; font-size:0.78rem; color:rgba(255,255,255,.7); }
.uye-profil-stats i { margin-right:3px; }
.uye-tabs { display:flex; gap:4px; background:#f5f5f5; border-radius:10px; padding:4px; margin-bottom:20px; overflow-x:auto; }
.uye-tab { display:flex; align-items:center; gap:6px; padding:10px 16px; border:none; background:none; border-radius:8px; font-size:0.8rem; font-weight:600; color:#666; cursor:pointer; transition:all .2s; white-space:nowrap; }
.uye-tab:hover { color:#333; background:rgba(0,0,0,.04); }
.uye-tab.active { background:#fff; color:#e74c3c; box-shadow:0 2px 8px rgba(0,0,0,.08); }
.uye-tab span:last-child { font-size:0.7rem; }
.uye-tab-content { background:#fff; border-radius:14px; box-shadow:0 2px 12px rgba(0,0,0,.06); overflow:hidden; }
.uye-tab-pane { display:none; padding:24px; }
.uye-tab-pane.active { display:block; }
.uye-liste-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; font-size:0.85rem; color:#666; }
.uye-liste-item { display:flex; gap:14px; padding:14px 0; border-bottom:1px solid #f2f2f2; align-items:center; }
.uye-liste-item:last-child { border-bottom:none; }
.uye-liste-item.uye-unread { background:#fff8e6; margin:0 -24px; padding:14px 24px; }
.uye-liste-img { width:70px; height:50px; border-radius:8px; background-size:cover; background-position:center; background-color:#eee; flex-shrink:0; }
.uye-liste-body { flex:1; min-width:0; }
.uye-liste-title { font-size:0.85rem; font-weight:600; color:#1a1a2e; text-decoration:none; display:block; margin-bottom:4px; }
a.uye-liste-title:hover { color:#e74c3c; }
.uye-liste-desc { font-size:0.78rem; color:#888; margin:0 0 4px; line-height:1.4; }
.uye-liste-meta { font-size:0.7rem; color:#aaa; }
.uye-liste-meta i { margin-right:3px; }
.uye-empty { text-align:center; padding:40px 16px; color:#aaa; font-size:0.85rem; }
.uye-empty i { font-size:2rem; display:block; margin-bottom:10px; }
.uye-loading { text-align:center; padding:30px; color:#aaa; }
.uye-durum-aktif { color:#27ae60; font-weight:600; }
.uye-durum-bekliyor { color:#e67e22; font-weight:600; }
.uye-section-title { font-size:1rem; font-weight:700; color:#1a1a2e; margin:0 0 16px; display:flex; align-items:center; gap:8px; }
.uye-section-title i { color:#e74c3c; }
.uye-mesaj-tabs { display:flex; gap:8px; }
.uye-mesaj-tab { padding:6px 14px; border:1px solid #ddd; border-radius:6px; background:#fff; font-size:0.78rem; cursor:pointer; transition:all .15s; }
.uye-mesaj-tab.active { background:#e74c3c; color:#fff; border-color:#e74c3c; }
@media (max-width:768px) {
    .uye-auth-card { padding:24px 20px; }
    .uye-form-row-2 { grid-template-columns:1fr; }
    .uye-profil-header { flex-direction:column; text-align:center; padding:20px; }
    .uye-profil-stats { justify-content:center; }
    .uye-tabs { gap:2px; padding:3px; }
    .uye-tab { padding:8px 10px; font-size:0.72rem; }
    .uye-tab span:not(.uye-badge) { display:none; }
    .uye-tab i { font-size:1rem; }
    .uye-tab-pane { padding:16px; }
    .uye-liste-item.uye-unread { margin:0 -16px; padding:14px 16px; }
}
.uye-avatar-picker { display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }
.uye-avatar-option { cursor:pointer; position:relative; }
.uye-avatar-option input { display:none; }
.uye-avatar-option img { width:44px; height:44px; border-radius:50%; border:3px solid transparent; transition:all .2s; object-fit:cover; }
.uye-avatar-option:hover img { border-color:#ddd; transform:scale(1.1); }
.uye-avatar-option.selected img,
.uye-avatar-option input:checked + img { border-color:#e74c3c; box-shadow:0 0 0 2px #e74c3c; }
.yorum-uye-bilgi { display:flex; align-items:center; gap:10px; padding:12px 16px; background:#f0f9ff; border:1px solid #bfdbfe; border-radius:8px; margin-bottom:14px; font-size:0.85rem; color:#1e40af; }
.yorum-uye-avatar { width:28px; height:28px; border-radius:50%; object-fit:cover; }
.rss-page { padding: 20px 0 40px; }
.rss-header { text-align:center; margin-bottom:32px; }
.rss-header h1 { font-size:1.6rem; font-weight:700; margin:12px 0 8px; }
.rss-header p { color:#666; font-size:0.9rem; max-width:540px; margin:0 auto; }
.rss-icon { font-size:2.4rem; color:#ee802f; }
.rss-section { margin-bottom:28px; }
.rss-section h2 { font-size:1.1rem; font-weight:600; margin-bottom:12px; padding-bottom:8px; border-bottom:2px solid #f0f0f0; }
.rss-section h2 i { color:#ee802f; margin-right:6px; }
.rss-item { display:flex; align-items:center; justify-content:space-between; padding:12px 16px; border:1px solid #eee; border-radius:8px; margin-bottom:8px; transition:all .2s; }
.rss-item:hover { border-color:#ee802f; background:#fffaf5; }
.rss-item-main { background:#fff8f0; border-color:#f5d9b8; }
.rss-item-child { margin-left:24px; }
.rss-item-info { display:flex; flex-direction:column; gap:2px; }
.rss-item-info strong { font-size:0.95rem; }
.rss-item-info span { font-size:0.8rem; color:#888; }
.rss-link { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:#ee802f; color:#fff; border-radius:6px; font-size:0.82rem; font-weight:600; text-decoration:none; white-space:nowrap; transition:background .2s; }
.rss-link:hover { background:#d6711f; color:#fff; }
.rss-link i { font-size:0.75rem; }
.rss-info { background:#f8f9fa; border-radius:10px; padding:24px; margin-top:20px; }
.rss-info h3 { font-size:0.95rem; font-weight:600; margin-bottom:8px; }
.rss-info h3 i { color:#ee802f; margin-right:4px; }
.rss-info p { font-size:0.85rem; color:#555; margin-bottom:16px; line-height:1.6; }
.rss-info ol { font-size:0.85rem; color:#555; padding-left:20px; margin:0; }
.rss-info ol li { margin-bottom:6px; line-height:1.5; }
@media (max-width:576px) {
    .rss-item { flex-direction:column; align-items:flex-start; gap:8px; }
    .rss-item-child { margin-left:12px; }
}

/* Editor Pick Badge */
.editor-pick-badge{display:inline-block;background:#ff9800;color:#fff;font-size:.65rem;font-weight:700;padding:2px 8px;border-radius:3px;margin-bottom:4px}
.editor-pick-badge i{margin-right:3px}

/* ── Haber Rozet Sistemi ── */
.nb-stack{position:absolute;top:8px;right:8px;z-index:10;display:flex;flex-direction:column;align-items:flex-end;gap:4px;pointer-events:none}
.nb{display:inline-flex;align-items:center;gap:4px;font-size:.72rem;font-weight:800;padding:4px 10px;border-radius:4px;letter-spacing:.5px;line-height:1;white-space:nowrap;text-transform:uppercase;box-shadow:0 2px 8px rgba(0,0,0,.4)}
.nb i{font-size:.6rem}
.nb-son-dakika{background:#e00;color:#fff;animation:nb-pulse 1s ease-in-out infinite}
@keyframes nb-pulse{0%,100%{opacity:1}50%{opacity:.65}}
.nb-flash{background:#ff4500;color:#fff;animation:nb-pulse 1.4s ease-in-out infinite}
.nb-galeri{background:#556ee6;color:#fff}
.nb-spot{background:#00897b;color:#fff}
.nb-onecikar{background:#f4b400;color:#1a1a1a}
.nb-editor{background:#ff9800;color:#fff}

/* ── Haber Araç Çubuğu (hd-toolbar) ── */
.hd-toolbar{display:flex;align-items:center;gap:4px;padding:12px 0;border-top:1px solid #e8e8e8;border-bottom:1px solid #e8e8e8;margin:16px 0;flex-wrap:wrap}
.hd-tool-btn{display:inline-flex;flex-direction:column;align-items:center;gap:4px;padding:8px 14px;background:none;border:none;cursor:pointer;color:#444;font-size:.72rem;font-weight:600;letter-spacing:.3px;text-decoration:none;border-radius:8px;transition:background .15s,color .15s;line-height:1;position:relative}
.hd-tool-btn i{font-size:1.3rem;color:#555;transition:color .15s}
.hd-tool-btn:hover{background:#f4f4f4}
.hd-tool-btn:hover i{color:#c0392b}
.hd-yorum-badge{position:absolute;top:-6px;right:-8px;background:#c0392b;color:#fff;font-size:.6rem;font-weight:700;border-radius:10px;padding:1px 5px;min-width:16px;text-align:center;line-height:1.6}
.hd-toolbar-sep{width:1px;height:32px;background:#e0e0e0;margin:0 6px;flex-shrink:0}
.hd-sc-group{display:flex;align-items:center;gap:7px;flex-wrap:wrap}

/* ── Haber Detay Yeni Tasarım (nd-*) ── */
.nd-breadcrumb{font-size:.78rem;font-weight:700;letter-spacing:.5px;color:#888;margin-bottom:14px;display:flex;align-items:center;gap:6px}
.nd-breadcrumb a{color:#888;text-decoration:none;text-transform:uppercase}
.nd-breadcrumb a:hover{color:#c0392b}
.nd-breadcrumb .fas{font-size:.6rem;color:#bbb}
.nd-title{font-size:3.8rem;font-weight:700;line-height:1.15;color:#111;margin:0 0 14px;letter-spacing:-.3px;font-family:"Oswald",sans-serif}
.nd-subtitle{font-size:1.1rem;color:#555;line-height:1.55;margin:0 0 10px;font-weight:400;font-style:italic;font-family:"Poppins",sans-serif}
.nd-spot{font-size:1rem;color:#444;line-height:1.65;margin:0 0 18px;font-weight:400}
/* Meta bilgi şeridi */
.nd-meta-strip{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;font-size:.82rem;color:#666;margin-bottom:16px;padding-bottom:14px;border-bottom:1px solid #eee;flex-wrap:nowrap}
.nd-ms-left{display:flex;align-items:center;flex-wrap:wrap;gap:6px;flex:1;min-width:0}
.nd-ms-right{display:flex;align-items:center;gap:7px;flex-shrink:0;padding-top:2px}
.nd-ms-item{display:inline-flex;align-items:center;gap:5px;white-space:nowrap}
.nd-ms-item i{font-size:.75rem;color:#bbb;flex-shrink:0}
.nd-ms-sep{color:#ccc;user-select:none}
.nd-ms-editor{color:#555}
.nd-ms-source{color:#888;font-style:italic}
/* Yuvarlak sosyal butonlar */
.nd-sc-btn{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;font-size:.88rem;text-decoration:none;color:#fff;transition:transform .15s,opacity .15s}
.nd-sc-btn:hover{transform:scale(1.12);opacity:.9;color:#fff}
.nd-sc-fb{background:#1877f2}
.nd-sc-tw{background:#000}
.nd-sc-wa{background:#25d366}
.nd-sc-tg{background:#2ca5e0}
.nd-sc-li{background:#0a66c2}
.nd-sc-pi{background:#e60023}
.nd-sc-copy{background:#555;border:none;cursor:pointer}
.nd-makale-yazar-link{display:inline-flex;align-items:center;gap:6px;color:#333;text-decoration:none;font-weight:600}
.nd-makale-yazar-link:hover{color:#1877f2}
.nd-makale-avatar{width:180px;height:180px;border-radius:50%;object-fit:cover;border:3px solid #eee;display:block;flex-shrink:0}
.nd-makale-strip{display:flex;flex-direction:row;align-items:flex-start;gap:20px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #eee;flex-wrap:wrap}
.nd-makale-strip-right{flex:1;min-width:0;display:flex;flex-direction:column;gap:10px;align-items:flex-start;padding-left:20px}
.nd-makale-baslik{font-size:3.2rem;margin:0 0 12px}
.nd-makale-strip-left{flex-shrink:0;display:flex;flex-direction:column;align-items:center;gap:8px}
.nd-makale-strip-right{flex:1;min-width:0;display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.nd-ms-tools{display:flex;align-items:center;flex-wrap:wrap;gap:7px;align-self:flex-end}
.nd-makale-yazar-kart{display:flex;flex-direction:column;align-items:center;gap:10px;text-decoration:none;color:#333}
.nd-makale-yazar-kart:hover{color:#1877f2}
.nd-makale-yazar-isim{font-weight:700;font-size:1.1rem;line-height:1.2;text-align:center}
.nd-makale-meta{display:flex;align-items:center;flex-wrap:wrap;gap:6px;font-size:.82rem;color:#666;align-self:flex-end}
.nd-makale-meta .nd-ms-item{display:inline-flex;align-items:center;gap:5px}
.nd-makale-meta .nd-ms-item i{font-size:.75rem;color:#bbb}
.nd-makale-meta .nd-ms-sep{color:#ccc}
.nd-makale-etiketler{display:flex;flex-wrap:wrap;gap:6px}
.nd-makale-etiket{background:#f0f2f5;color:#555;font-size:.75rem;padding:3px 10px;border-radius:20px;cursor:default}
@media(max-width:600px){
  .nd-title{font-size:1.6rem}
  .nd-sc-btn{width:34px;height:34px;font-size:.82rem}
  .nd-share-bar{gap:8px}
  .nd-meta-strip{flex-wrap:wrap}
  .nd-ms-right{width:100%;justify-content:flex-start;border-top:1px solid #f0f0f0;padding-top:10px;margin-top:4px}
}



/* ---- Story Bar ---- */
.story-section {
    background: #f0f1f3;
    padding: 14px 0;
}
.story-bar {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.story-list {
    display: flex;
    justify-content: space-between;
}
.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}
.story-ring {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #e74c3c, #f39c12, #e74c3c);
    transition: transform 0.25s;
}
.story-item:hover .story-ring {
    transform: scale(1.08);
}
.story-item.viewed .story-ring {
    background: linear-gradient(135deg, #ccc, #999, #ccc);
}
.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}
.story-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    max-width: 86px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.story-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.story-modal.active {
    display: flex;
    animation: storyFadeIn 0.3s ease;
}
@keyframes storyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.story-modal-inner {
    position: relative;
    width: 520px;
    max-width: 95vw;
    max-height: 94vh;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.story-progress {
    display: flex;
    gap: 4px;
    padding: 10px 12px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}
.story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}
.story-progress-bar.active .story-progress-fill,
.story-progress-bar.done .story-progress-fill {
    display: block;
}
.story-progress-fill {
    display: none;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 3px;
}
.story-progress-bar.done .story-progress-fill {
    width: 100%;
}
.story-progress-bar.active .story-progress-fill {
    animation: storyProgressAnim 6s linear forwards;
}
@keyframes storyProgressAnim {
    from { width: 0; }
    to { width: 100%; }
}
.story-close {
    position: absolute;
    top: 22px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 4;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-close:hover {
    background: rgba(255,255,255,0.3);
}
.story-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 4;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-nav-btn:hover { background: rgba(255,255,255,0.3); }
.story-prev-btn { left: 10px; }
.story-next-btn { right: 10px; }
.story-content {
    position: relative;
}
.story-full-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}
.story-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.story-full-cat {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    background: #e74c3c;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.story-full-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.35;
}
.story-full-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 6px;
    line-height: 1.45;
}
.story-full-meta {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    display: flex;
    gap: 14px;
}
.story-full-meta i { margin-right: 3px; }
.story-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.story-link:hover {
    background: #c0392b;
}
@media (max-width: 575px) {
    .story-list {
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    .story-list::-webkit-scrollbar { display: none; }
    .story-ring {
        width: 62px;
        height: 62px;
    }
    .story-bar { padding: 10px 12px; overflow: hidden; }
    .story-label { font-size: 0.62rem; max-width: 62px; }
    .story-full-img { height: 70vh; }
    .story-nav-btn { width: 34px; height: 34px; font-size: 0.8rem; }
    .story-prev-btn { left: 6px; }
    .story-next-btn { right: 6px; }
    .story-modal-inner { width: 100vw; max-width: 100vw; border-radius: 0; max-height: 100vh; }
    .story-full-title { font-size: 1rem; }
}
@media (max-width: 991px) {
    .story-list {
        justify-content: flex-start;
        gap: 14px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    .story-list::-webkit-scrollbar { display: none; }
    .story-ring { width: 72px; height: 72px; }
    .story-bar { padding: 12px 14px; overflow: hidden; }
}
@media (max-width: 767px) {
    .story-prev-btn { left: 6px; }
    .story-next-btn { right: 6px; }
}
