.sb-timeline-wrap {
    padding: 28px 22px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .06);
}

/* Başlık */
.sb-section-title {
    margin: 0 0 18px;
    color: var(--sb-general-color);
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.sb-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 240px;
    height: 2px;
    background: var(--sb-general-color);
    opacity: .75;
}

/* Timeline alanı */
.sb-timeline {
    position: relative;
    margin-top: 8px;
    padding-left: 44px; /* çizgi + nokta için boşluk */
}

/* Sol dikey çizgi */
.sb-timeline::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(0, 0, 0, .12);
}

/* Her item */
.sb-item {
    position: relative;
    padding: 5px 0 15px;
}

.sb-item:not(:last-child) {
    border-bottom: 2px dotted rgba(0, 0, 0, .14);
}

/* Kırmızı nokta */
.sb-item::before {
    content: "";
    position: absolute;
    left: -44px; /* timeline padding-left ile uyumlu */
    top: -3px;
    width: 10px;
    height: 10px;
    background: var(--sb-general-color);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(209, 13, 13, .12); /* görseldeki gibi yumuşak halka */
}

/* Başlık */
.sb-title {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 650;
    color: #111;
}

.sb-big-title {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Tarih-saat */
.sb-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 12px;
    font-style: italic;
}

.sb-date {
    color: var(--sb-general-color);
    opacity: .9;
}

.sb-time {
    color: var(--sb-general-color);
    font-weight: 800;
    font-style: normal;
}

/* Responsive */
@media (max-width: 576px) {
    .sb-section-title {
        font-size: 28px;
    }

    .sb-title {
        font-size: 20px;
    }

    .sb-meta {
        font-size: 16px;
    }
}

.sb-writers-section{
    max-width:1400px;
    margin:20px auto;
    padding:22px;
    background:#f7f7f7;
}

.sb-section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:26px;
}

.sb-head-left{
    display:flex;
    align-items:center;
    gap:14px;
    flex:1;
    min-width:0;
}

.sb-chip{
    background:var(--sb-general-color);
    color:#fff;
    font-weight:800;
    letter-spacing:.5px;
    padding:16px 34px;
    border-radius:6px;
    text-transform:uppercase;
    font-size:20px;
    line-height:1;
    white-space:nowrap;
}

.sb-head-line{
    height:2px;
    background:var(--sb-muted);
    flex:1;
    border-radius:999px;
}

.sb-head-btn{
    background:var(--sb-general-color);
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:6px;
    font-weight:700;
    white-space:nowrap;
    transition:transform .12s ease, opacity .12s ease;
}

.sb-head-btn:hover{
    opacity:.92;
    transform:translateY(-1px);
    color:#fff;
}

.sb-writers-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:34px;
    align-items:stretch;
}

.sb-writer-card{
    background:#fff;
    text-decoration:none;
    border:1px solid rgba(209,13,13,.55);
    border-radius:10px;
    padding:34px 22px 30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    height:100%;
}

.sb-writer-card:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 26px rgba(0,0,0,.08);
    border-color:rgba(209,13,13,.85);
}

.sb-avatar{
    width:120px;
    height:120px;
    border-radius:50%;
    overflow:hidden;
    border:3px solid var(--sb-general-color);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:6px 0 22px;
    background:#fff;
    flex-shrink:0;
}

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

.sb-avatar--logo{
    background:var(--sb-general-color);
    border-color:rgba(0,0,0,.15);
    color:#fff;
    font-weight:900;
    line-height:1.05;
    letter-spacing:.2px;
    text-transform:uppercase;
    padding:12px;
}

.sb-avatar--logo span{
    font-size:18px;
    line-height:1.1;
    display:block;
}

.sb-author{
    color:var(--sb-general-color);
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:14px;
    font-size:18px;
}

.sb-post-title{
    color:var(#333);
    font-size: 1rem;
    line-height:1.25;
    font-weight:650;
    margin:0;
    max-width:260px;
}

@media (max-width:1200px){
    .sb-writers-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width:768px){
    .sb-section-head{
        flex-direction:column;
        align-items:stretch;
    }

    .sb-head-left{
        width:100%;
    }

    .sb-writers-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:18px;
    }

    .sb-writer-card{
        padding:26px 18px 22px;
    }

    .sb-post-title{
        font-size:18px;
    }
}

@media (max-width:420px){
    .sb-writers-grid{
        grid-template-columns:1fr;
    }

    .sb-chip{
        padding:14px 22px;
        font-size:18px;
    }
}

:root {
    #333: #111;
    --sb-muted: #cfcfcf;
}

.sb-sport-block {
    margin: 22px auto;
    padding: 0 12px;
}

/* SPOR başlığı */
.sb-block-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 8px 0 18px;
}

.sb-block-title h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: .8px;
    font-weight: 700;
    color: var(#333);
}

.sb-line {
    height: 2px;
    background: var(--sb-muted);
    flex: 1;
    border-radius: 999px;
    opacity: .6;
}

/* Üst grid */
.sb-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* solda büyük, sağda yan */
    gap: 22px;
    align-items: start;
}

/* Sağ tarafta 2 haber üst üste */
.sb-side-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

/* Alt grid 3lü */
.sb-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 22px;
}

/* Card ortak */
.sb-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.sb-thumb {
    width: 100%;
    overflow: hidden;
    background: #eee;
}

.sb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s ease;
}

.sb-card:hover .sb-thumb img {
    transform: scale(1.03);
}

/* Oran (küçük ve side kartlar için) */
.sb-thumb--ratio {
    aspect-ratio: 16 / 9;
}

/* Büyük kart */
.sb-card--big .sb-thumb {
    position: relative;
    aspect-ratio: 16 / 10; /* büyük görsel biraz daha yüksek */
}

.sb-overlay-title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

/* Başlıklar */

.sb-title {
    margin: 10px 0 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 650;
    color: var(#333);
}

.sb-timeline-wrap .sb-title {
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .sb-top-grid {
        grid-template-columns: 1fr; /* alta düşsün */
    }

    .sb-side-stack {
        grid-template-columns: repeat(2, 1fr); /* sağdaki 2 haber yan yana */
        grid-template-rows: auto;
    }
}

@media (max-width: 640px) {
    .sb-side-stack {
        grid-template-columns: 1fr; /* iki haber tekrar alt alta */
    }

    .sb-bottom-grid {
        grid-template-columns: 1fr; /* mobilde tek sütun */
    }

    .sb-overlay-title {
        font-size: 16px;
        left: 12px;
        right: 12px;
    }
}

:root {
    #333: #111;
    --sb-muted: #dcdcdc;
}

.sb-sport-block {
    margin: 30px auto;
    padding: 0 12px;
}

/* Başlık */
.sb-block-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.sb-block-title h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sb-line {
    height: 2px;
    flex: 1;
    background: var(--sb-muted);
    opacity: .6;
}

/* GRID */
.sb-top-grid {
    display: grid;
    grid-template-columns:2fr 1fr;
    gap: 20px;
}

.sb-side-stack {
    display: grid;
    grid-template-rows:1fr 1fr;
    gap: 20px;
}

.sb-bottom-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Card */
.sb-card {
    display: block;
    text-decoration: none;
    color: #fff;
}

.sb-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
}

.sb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

/* Overlay */
.sb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            transparent 100%
    );
    transition: background .3s ease;
}

.sb-overlay h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

/* Büyük haber yazısı biraz büyük */
.sb-card--big .sb-overlay h3 {
    font-size: 22px;
}

/* Hover efekti */
.sb-card:hover img {
    transform: scale(1.05);
}

.sb-card:hover .sb-overlay {
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.2) 80%,
            transparent 100%
    );
}

/* Responsive */
@media (max-width: 992px) {
    .sb-top-grid {
        grid-template-columns:1fr;
    }

    .sb-side-stack {
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
    }
}

@media (max-width: 640px) {
    .sb-side-stack {
        grid-template-columns:1fr;
    }

    .sb-bottom-grid {
        grid-template-columns:1fr;
    }

    .sb-card--big .sb-overlay h3 {
        font-size: 18px;
    }
}


.sb-trend {
    margin: 28px auto;
    padding: 0 12px;
}

.sb-trend-title {
    text-align: center;
    font-size: 18px;
    letter-spacing: .8px;
    margin: 0 0 18px;
    font-weight: 800;
    color: #111;
}

/* ANA GRID: sol büyük + sağ blok */
.sb-trend-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* solda büyük alan */
    gap: 26px;
    align-items: start;
}

/* SOL BÜYÜK KART */
.sb-trend-big {
    display: block;
    text-decoration: none;
    color: #111;
}

.sb-trend-big__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee;
}

.sb-trend-big__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.sb-trend-big__title {
    margin: 18px 0 0;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.sb-trend-big:hover img {
    transform: scale(1.03);
}

/* SAĞ BLOK: 2x2 grid */
.sb-trend-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Küçük kartlar */
.sb-trend-card {
    display: block;
    text-decoration: none;
    color: #111;
    background: #fff;
}

.sb-trend-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee;
}

.sb-trend-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.sb-trend-card__body {
    background: #f3f3f3;
    padding: 16px 16px 18px;
    min-height: 120px; /* görseldeki gibi alt blok yüksek dursun */
    display: flex;
    align-items: flex-start;
}

.sb-trend-card__body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.sb-trend-card:hover img {
    transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .sb-trend-grid {
        grid-template-columns: 1fr; /* alt alta */
    }

    .sb-trend-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sb-trend-big__title {
        font-size: 22px;
    }

    .sb-trend-right {
        grid-template-columns: 1fr; /* tek sütun */
    }

    .sb-trend-card__body {
        min-height: auto;
    }
}

.sb-strip {
    margin: 18px auto;
    padding: 0 12px;
}

.sb-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: start;
}

.sb-strip-card {
    display: block;
    text-decoration: none;
    color: #111;
}

.sb-strip-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #eee;
}

.sb-strip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.sb-strip-title {
    margin: 12px 0 0;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -1px;

    /* Başlığı 3 satırla sınırla */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sb-strip-card:hover .sb-strip-thumb img {
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 1100px) {
    .sb-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .sb-strip-title {
        font-size: 18px;
    }
}

/* HERO */
.sb-hero {
    min-height: 380px;
}

@media (max-width: 992px) {
    .sb-hero {
        min-height: 280px;
    }
}

.sb-hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 30%, rgba(0, 0, 0, .75) 100%);
}

.sb-hero-title {
    font-size: clamp(18px, 2.2vw, 34px);
    line-height: 1.15;
    color: #fff;
}

/* Right list */
.sb-side-thumb {
    width: 110px;
    height: 80px;
    object-fit: cover;
    flex: 0 0 auto;
}

@media (max-width: 576px) {
    .sb-side-thumb {
        width: 96px;
        height: 72px;
    }
}

/* Cards */
.sb-card-img {
    height: clamp(170px, 22vw, 240px);
}

@media (max-width: 576px) {
    .sb-card-img {
        height: 180px;
    }
}

blockquote{
    position: relative;
    margin: 32px 0;
    padding: 36px 32px 28px 32px;
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
    border-left: 5px solid var(--sb-general-color);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

blockquote::before{
    content: "“";
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 84px;
    line-height: 1;
    font-weight: 500;
    color: rgba(209, 13, 13, .18);
}

blockquote::after{
    content: "”";
    position: absolute;
    right: 18px;
    font-size: 84px;
    line-height: 1;
    font-weight: 500;
    color: rgba(209, 13, 13, .18);
}

blockquote p{
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 700;
    color: #1a1a1a;
    padding: 15px 0;
    letter-spacing: -.5px;
}

@media (max-width:768px){
    blockquote{
        padding: 18px 10px 12px;
    }

    blockquote::before,
    blockquote::after{
        font-size: 1.2rem;
    }

    blockquote p{
        font-size: 1.2rem;
    }
}


.sb-post-meta-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:10px 0;
    flex-wrap:wrap;
}

.sb-post-meta-left{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}

.sb-post-date,
.sb-post-updated{
    font-size:15px;
    line-height:1.4;
    color:#6b6b6b;
}

.sb-post-updated{
    padding-left:28px;
    border-left:1px solid #d9d9d9;
}

.sb-post-updated strong{
    color:#4a4a4a;
    font-weight:700;
}

.sb-post-meta-right{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-left:auto;
}

.sb-font-size-btn{
    border:0;
    background:transparent;
    padding:0;
    color:#1f1f1f;
    font-size:22px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    transition:opacity .2s ease;
}

.sb-font-size-btn:hover{
    opacity:.7;
}

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

.sb-share-btn{
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:1.2rem;
    cursor:pointer;
    transition:transform .2s ease, opacity .2s ease;
    padding:0;
}

.sb-share-btn:hover{
    transform:translateY(-1px);
    opacity:.9;
    color:#fff;
}

.sb-facebook{
    background:#1877f2;
}

.sb-x{
    background:#000;
}

.sb-telegram{
    background:#29a9ea;
}

.sb-gmail{
    background:transparent;
    color:#ea4335;
    font-size:30px;
    width:auto;
    border-radius:0;
}

.sb-gmail:hover{
    color:#ea4335;
    transform:none;
}

.sb-whatsapp{
    background:#25d366;
}

.sb-copy-link{
    background:#5a5a5a;
}

.sb-google-news{
    background:transparent;
    color:#4285f4;
    font-size:28px;
    width:auto;
    border-radius:0;
}

.sb-google-news:hover{
    color:#4285f4;
    transform:none;
}

.sb-single-content{
    font-size:18px;
    line-height:1.8;
}

@media (max-width: 991px){
    .sb-post-meta-bar{
        align-items:flex-start;
    }

    .sb-post-meta-left,
    .sb-post-meta-right{
        width:100%;
    }

    .sb-post-meta-right{
        justify-content:flex-start;
        margin-left:0;
    }
}

@media (max-width: 576px){
    .sb-post-meta-left{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .sb-post-updated{
        padding-left:0;
        border-left:0;
    }

    .sb-post-date,
    .sb-post-updated{
        font-size:14px;
    }

    .sb-font-size-btn{
        font-size:20px;
    }

    .sb-share-btn{
        width:34px;
        height:34px;
        font-size:16px;
    }

    .sb-gmail,
    .sb-google-news{
        font-size:24px;
    }
}

.small, small {
    font-size: .775em;
}