.mtl-blog-widget {
    background: #f4f7fb;
    padding: 80px 60px;
    font-family: inherit;
}

.mtl-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 45px;
}

.mtl-small-title {
    color: #ff6b2c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.mtl-small-title span {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #ff6b2c;
    margin-right: 12px;
    vertical-align: middle;
}

.mtl-blog-header h2 {
    margin: 0;
    color: #071933;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.mtl-blog-header h2 span {
    color: #1976ff;
}

.mtl-view-link {
    color: #1976ff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.mtl-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.mtl-blog-card {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

.mtl-blog-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.mtl-blog-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.mtl-blog-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.mtl-blog-tags span {
    background: rgba(10, 25, 50, 0.65);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    backdrop-filter: blur(5px);
}

.mtl-blog-content {
    position: relative;
    padding: 18px 0 44px;
}

.mtl-blog-meta {
    color: #4d6280;
    font-size: 13px;
    margin-bottom: 12px;
}

.mtl-blog-content h3 {
    margin: 0;
    padding-right: 20px;
}

.mtl-blog-content h3 a {
    color: #071933;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

.mtl-blog-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    background: #1976ff;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .mtl-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .mtl-blog-widget {
        padding: 50px 20px;
    }

    .mtl-blog-header {
        display: block;
    }

    .mtl-blog-header h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .mtl-blog-grid {
        grid-template-columns: 1fr;
    }
}