
        .blog-card-2 {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
            transition: .3s;
            height: 100%;
        }

        .blog-card-2:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
        }

        .blog-card-2 .blog-img img {
            width: 100%;
            height: 230px;
            object-fit: cover;
        }

        .blog-body {
            padding: 22px;
        }

        .blog-meta {
            font-size: 13px;
            color: #777;
            margin-bottom: 10px;
            display: flex;
            gap: 18px;
        }

        .blog-meta i {
            color: #0C6161;
            margin-right: 5px;
        }

        .blog-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 18px;
            line-height: 1.4;
        }

        .blog-title a {
            color: #222;
            text-decoration: none;
        }

        .blog-title a:hover {
            color: #0C6161;
        }

        .btn-read {
            display: inline-block;
            background: #0C6161;
            color: #fff;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 14px;
            text-decoration: none;
            transition: .3s;
        }

        .btn-read:hover {
            background: #094949;
            color: #fff;
        }


        .custom-pagination {
            display: flex;
            gap: 8px;
            list-style: none;
            padding: 0;
        }

        .custom-pagination li {
            min-width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: #fff;
            border: 1px solid #eee;
            font-weight: 600;
            color: #0C6161;
            transition: .3s;
        }

        .custom-pagination li a {
            text-decoration: none;
            color: #0C6161;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .custom-pagination li:hover {
            background: #0C6161;
            color: #fff;
        }

        .custom-pagination li:hover a {
            color: #fff;
        }

        .custom-pagination .active {
            background: #0C6161;
            color: #fff;
            border-color: #0C6161;
        }

        .custom-pagination .disabled {
            opacity: .4;
            pointer-events: none;
        }
