
/* Premium Mobile News Layout */
.m-news-section {
     padding: 30px 0 0px;
    background: #f8fafc;
}

.m-news-header {
display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 20px;
    margin-top: 110px;
}

.m-news-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #334155;
    margin: 0;
    text-transform: uppercase;
}

.m-news-header .m-btn-all {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-news-header .m-btn-all i {
    font-size: 12px;
}

.m-news-carousel .owl-stage-outer {
    padding: 10px 0 30px 20px; /* Offset for next slide preview */
}

.m-news-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-right: 15px;
    display: block;
}

.m-news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.m-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.m-news-date {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
}

.m-news-title {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom Dots for Premium Mobile */
.m-news-carousel .owl-dots {
    margin-top: 10px !important;
    text-align: center;
}

.m-news-carousel .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #cbd5e1 !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    transition: all 0.3s !important;
}

.m-news-carousel .owl-dot.active span {
    width: 24px !important;
    background: #024e6e !important;
    border-radius: 4px !important;
}
