/* =================================================
   LAW BLOG – MODERN 2025 INDEX (TRENDING + GRID)
================================================= */

.law-blog-wrap {
    background: #f7f7f7;
}

/* HERO */
.law-blog-hero {
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url('../images/hero.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 110px 0;
    text-align: center;
}

.law-blog-hero h1 {
    font-family: 'Bitter', serif;
    font-size: 44px;
    margin-bottom: 12px;
}

.law-blog-hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

/* LAYOUT */
.law-blog-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    padding: 80px 0;
}

/* TRENDING */
.law-blog-trending h3 {
    font-family: 'Bitter', serif;
    font-size: 24px;
    margin-bottom: 25px;
}

.trending-card {
    display: block;
    margin-bottom: 30px;
    text-decoration: none;
    color: #111;
}

.trending-thumb img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 4px;
}

.trending-content {
    padding-top: 12px;
}

.trending-tag {
    display: inline-block;
    font-size: 12px;
    color: #b45309;
    margin-bottom: 6px;
    font-weight: 600;
}

.trending-content h4 {
    font-family: 'Bitter', serif;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.trending-date {
    font-size: 13px;
    color: #6b7280;
}

/* GRID */
.law-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.law-blog-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.law-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.law-blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

.law-blog-card:hover img {
    transform: scale(1.05);
}

.law-blog-body {
    padding: 28px;
}

.law-blog-tag {
    display: inline-block;
    font-size: 12px;
    color: #92400e;
    margin-bottom: 8px;
    font-weight: 600;
}

.law-blog-body h2 {
    font-family: 'Bitter', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.law-blog-body h2 a {
    text-decoration: none;
    color: #1c2e40;
}

.law-blog-date {
    font-size: 13px;
    color: #6b7280;
    display: block;
    margin-bottom: 12px;
}

.law-blog-body p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.law-read-more {
    font-weight: 600;
    color: #0f3d63;
    text-decoration: none;
}

.law-read-more:hover {
    text-decoration: underline;
}

/* PAGINATION */
.law-blog-pagination {
    margin-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .law-blog-layout {
        grid-template-columns: 1fr;
    }
}
