﻿/* ==========================================
   MST BLOG PAGE
========================================== */


/*=========================
    PAGE HEADER
=========================*/

.mst-page-header {
    padding: 45px 0 30px;
    background: #fff;
    text-align: center;
}

.mst-breadcrumb {
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
}

    .mst-breadcrumb a {
        color: #777;
        text-decoration: none;
    }

        .mst-breadcrumb a:hover {
            color: #f58220;
        }

.mst-page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.mst-page-line {
    width: 70px;
    height: 4px;
    background: #f58220;
    margin: 0 auto 18px;
    border-radius: 30px;
}

.mst-page-header p {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}
.mst-blog-page {
    padding: 40px 0 80px;
    background: #f7f8fa;
}

.mst-blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.mst-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    height: 100%;
}

    .mst-blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.mst-blog-image {
    height: 240px;
    overflow: hidden;
}

    .mst-blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s;
    }

.mst-blog-card:hover .mst-blog-image img {
    transform: scale(1.08);
}

.mst-blog-content {
    padding: 25px;
}

.mst-blog-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
}

.mst-blog-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 15px;
}

    .mst-blog-title a {
        color: #1f2937;
        text-decoration: none;
    }

        .mst-blog-title a:hover {
            color: #dc3545;
        }

.mst-blog-desc {
    color: #6c757d;
    line-height: 1.7;
    height: 80px;
    overflow: hidden;
}
.mst-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f58220;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .5px;
    transition: .3s;
}

    .mst-blog-link:hover {
        color: #d96d00;
        gap: 14px;
    }

@media(max-width:992px) {

    .mst-blog-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .mst-blog-grid {
        grid-template-columns: 1fr;
    }
}
