/* =========================================================
   HABER AKIŞI / TIMELINE
========================================================= */

.mh-ticker-page{
    background:#fff;
    color:#111827;
    font-family:Inter,Arial,sans-serif;
}

.mh-ticker-page *{
    box-sizing:border-box;
}

.mh-ticker-page a{
    text-decoration:none;
}

.mh-ticker-container{
    width:min(980px,calc(100% - 32px));
    margin:0 auto;
}

/* Header */

.mh-ticker-header{
    padding:26px 0 34px;
    background:#fff;
}

.mh-ticker-tabs-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:34px;
}

.mh-ticker-tabs{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:9px;
    max-width:100%;
}

.mh-ticker-tabs a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 18px;
    background:#f1f3f5;
    color:#1f2937;
    border-radius:10px;
    font-size:14px;
    font-weight:900;
    transition:.18s ease;
}

.mh-ticker-tabs a:hover{
    background:#e5e7eb;
}

.mh-ticker-tabs a.active{
    background:#d71920;
    color:#fff;
}

.mh-ticker-title-area{
    text-align:center;
    margin-bottom:8px;
}

.mh-ticker-title-area h1{
    margin:0;
    color:#1f2937;
    font-size:38px;
    line-height:1.1;
    font-weight:950;
    letter-spacing:-.05em;
}

.mh-ticker-title-area p{
    margin:14px 0 0;
    color:#6b7280;
    font-size:16px;
    line-height:1.55;
    font-weight:500;
}

/* Content */

.mh-ticker-content{
    padding:8px 0 70px;
}

.mh-ticker-empty{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    padding:26px;
    text-align:center;
    color:#64748b;
    font-size:15px;
    font-weight:700;
}

/* Day */

.mh-ticker-day{
    margin-top:22px;
}

.mh-ticker-day-title{
    position:relative;
    z-index:3;
    text-align:center;
    margin:0 auto 16px;
    color:#b8bec8;
    font-size:13px;
    line-height:1;
    font-weight:950;
    letter-spacing:.06em;
    text-transform:uppercase;
}

/* Timeline */

.mh-ticker-line{
    position:relative;
    max-width:760px;
    margin:0 auto;
    padding-left:30px;
}

.mh-ticker-line:before{
    content:"";
    position:absolute;
    left:8px;
    top:0;
    bottom:0;
    width:2px;
    background:#e5e7eb;
}

/* Item */

.mh-ticker-item{
    position:relative;
    margin-bottom:12px;
}

.mh-ticker-dot{
    position:absolute;
    left:-28px;
    top:14px;
    width:12px;
    height:12px;
    background:#e30613;
    border-radius:999px;
    z-index:3;
    box-shadow:0 0 0 4px #fff;
}

/* Card */

.mh-ticker-card{
    display:grid;
    grid-template-columns:92px 220px minmax(0,1fr);
    align-items:stretch;
    min-height:124px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:6px;
    box-shadow:0 2px 8px rgba(15,23,42,.08);
    overflow:hidden;
    color:inherit;
    transition:.18s ease;
}

.mh-ticker-card.no-image{
    grid-template-columns:92px minmax(0,1fr);
}

.mh-ticker-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 26px rgba(15,23,42,.12);
}

.mh-ticker-time{
    padding:18px 12px;
    color:#4b5563;
    font-size:17px;
    line-height:1;
    font-weight:500;
    white-space:nowrap;
}

.mh-ticker-image{
    width:220px;
    height:124px;
    min-width:220px;
    max-width:220px;
    min-height:124px;
    max-height:124px;
    background:#f3f4f6;
    overflow:hidden;
}

.mh-ticker-image img{
    display:block;
    width:220px;
    height:124px;
    object-fit:cover;
    object-position:center center;
}

.mh-ticker-body{
    position:relative;
    padding:18px 18px 16px;
    min-width:0;
}

.mh-ticker-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:7px;
}

.mh-ticker-meta strong{
    color:#d71920;
    font-size:13px;
    line-height:1.2;
    font-weight:950;
}

.mh-ticker-meta span{
    color:#6b7280;
    font-size:13px;
    line-height:1.2;
    font-weight:500;
}

.mh-ticker-body h2{
    margin:0;
    color:#1f2937;
    font-size:23px;
    line-height:1.12;
    font-weight:950;
    letter-spacing:-.035em;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.mh-ticker-body p{
    margin:8px 0 0;
    color:#64748b;
    font-size:13px;
    line-height:1.45;
    font-weight:600;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* Load more */

.mh-ticker-more{
    display:flex;
    justify-content:center;
    margin-top:30px;
}

.mh-ticker-more button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 22px;
    border:0;
    background:#111827;
    color:#fff;
    border-radius:10px;
    font-size:14px;
    font-weight:900;
    cursor:pointer;
    transition:.18s ease;
}

.mh-ticker-more button:hover{
    background:#d71920;
    transform:translateY(-2px);
}

.mh-ticker-more button.is-loading{
    opacity:.68;
    pointer-events:none;
}

.mh-ticker-more button.is-loading:after{
    content:"";
    width:15px;
    height:15px;
    margin-left:10px;
    border:2px solid rgba(255,255,255,.45);
    border-top-color:#fff;
    border-radius:999px;
    animation:mhTickerSpin .7s linear infinite;
}

@keyframes mhTickerSpin{
    to{
        transform:rotate(360deg);
    }
}

/* Responsive */

@media(max-width:900px){
    .mh-ticker-container{
        width:min(100% - 24px,980px);
    }

    .mh-ticker-card{
        grid-template-columns:82px 180px minmax(0,1fr);
    }

    .mh-ticker-card.no-image{
        grid-template-columns:82px minmax(0,1fr);
    }

    .mh-ticker-image,
    .mh-ticker-image img{
        width:180px;
        min-width:180px;
        max-width:180px;
        height:112px;
        min-height:112px;
        max-height:112px;
    }

    .mh-ticker-body h2{
        font-size:20px;
    }
}

@media(max-width:700px){
    .mh-ticker-title-area h1{
        font-size:30px;
    }

    .mh-ticker-line{
        max-width:100%;
        padding-left:24px;
    }

    .mh-ticker-line:before{
        left:6px;
    }

    .mh-ticker-dot{
        left:-23px;
    }

    .mh-ticker-card,
    .mh-ticker-card.no-image{
        grid-template-columns:1fr;
        min-height:0;
    }

    .mh-ticker-time{
        padding:14px 14px 0;
        font-size:15px;
        font-weight:800;
    }

    .mh-ticker-image,
    .mh-ticker-image img{
        width:100%;
        min-width:100%;
        max-width:100%;
        height:190px;
        min-height:190px;
        max-height:190px;
    }

    .mh-ticker-body{
        padding:14px;
    }

    .mh-ticker-body h2{
        font-size:21px;
    }

    .mh-ticker-meta{
        justify-content:flex-start;
    }
}

@media(max-width:480px){
    .mh-ticker-tabs-wrap{
        justify-content:flex-start;
        overflow-x:auto;
        margin-bottom:24px;
    }

    .mh-ticker-tabs{
        justify-content:flex-start;
        flex-wrap:nowrap;
        padding-bottom:6px;
    }

    .mh-ticker-tabs a{
        white-space:nowrap;
        min-height:38px;
        padding:0 14px;
        font-size:13px;
    }

    .mh-ticker-title-area{
        text-align:left;
    }

    .mh-ticker-title-area h1{
        font-size:27px;
    }

    .mh-ticker-title-area p{
        font-size:14px;
    }

    .mh-ticker-day-title{
        text-align:left;
        padding-left:24px;
    }

    .mh-ticker-image,
    .mh-ticker-image img{
        height:170px;
        min-height:170px;
        max-height:170px;
    }
}