/* =========================================================
   SON DAKIKA TIMELINE
========================================================= */

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

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

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

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

/* Header */

.mh-breaking-header{
    padding:34px 0 34px;
    background:
        radial-gradient(circle at 10% 0%,rgba(215,25,32,.10),transparent 30%),
        linear-gradient(180deg,#fff 0%,#fff 100%);
    text-align:center;
}

.mh-breaking-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:28px;
    padding:0 12px;
    background:#d71920;
    color:#fff;
    border-radius:999px;
    font-size:12px;
    line-height:1;
    font-weight:950;
    letter-spacing:.08em;
    margin-bottom:14px;
}

.mh-breaking-header h1{
    margin:0;
    color:#111827;
    font-size:40px;
    line-height:1.08;
    font-weight:950;
    letter-spacing:-.055em;
}

.mh-breaking-header p{
    margin:14px auto 0;
    max-width:680px;
    color:#6b7280;
    font-size:16px;
    line-height:1.55;
    font-weight:500;
}

/* Content */

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

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

/* Day */

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

.mh-breaking-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-breaking-line{
    position:relative;
    max-width:720px;
    margin:0 auto;
    padding-left:30px;
}

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

/* Item */

.mh-breaking-item{
    position:relative;
    margin-bottom:10px;
}

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

/* Card */

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

.mh-breaking-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(15,23,42,.12);
    border-color:rgba(215,25,32,.28);
}

.mh-breaking-time{
    align-self:stretch;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:19px;
    color:#4b5563;
    background:#f8fafc;
    border-right:1px solid #e5e7eb;
    font-size:17px;
    line-height:1;
    font-weight:700;
    white-space:nowrap;
}

.mh-breaking-body{
    padding:15px 18px;
    min-width:0;
}

.mh-breaking-body strong{
    display:inline-flex;
    align-items:center;
    min-height:22px;
    padding:0 8px;
    background:#fee2e2;
    color:#d71920;
    border-radius:999px;
    font-size:10px;
    line-height:1;
    font-weight:950;
    letter-spacing:.08em;
    margin-bottom:7px;
}

.mh-breaking-body h2{
    margin:0;
    color:#1f2937;
    font-size:21px;
    line-height:1.18;
    font-weight:950;
    letter-spacing:-.035em;
}

/* Load more */

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

.mh-breaking-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-breaking-more button:hover{
    background:#d71920;
    transform:translateY(-2px);
}

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

.mh-breaking-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:mhBreakingSpin .7s linear infinite;
}

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

/* Responsive */

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

    .mh-breaking-header{
        text-align:left;
        padding:28px 0 30px;
    }

    .mh-breaking-header h1{
        font-size:32px;
    }

    .mh-breaking-header p{
        font-size:14px;
    }

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

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

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

    .mh-breaking-card{
        grid-template-columns:74px minmax(0,1fr);
        min-height:72px;
    }

    .mh-breaking-time{
        font-size:15px;
        padding-top:18px;
    }

    .mh-breaking-body{
        padding:13px 14px;
    }

    .mh-breaking-body h2{
        font-size:18px;
    }
}

@media(max-width:480px){
    .mh-breaking-container{
        width:min(100% - 18px,900px);
    }

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

    .mh-breaking-card{
        grid-template-columns:68px minmax(0,1fr);
    }

    .mh-breaking-time{
        font-size:14px;
    }

    .mh-breaking-body h2{
        font-size:17px;
    }
}