
  
        .blog-crumb a {
            color: #fff;
            text-decoration: none;
        }

        .blog-card,
        .blog-widget {
            border: 1px solid rgba(13, 58, 44, 0.08);
            border-radius: 12px;
            background: #fff;
            box-shadow: 0 18px 45px rgba(13, 58, 44, 0.08);
        }

        .blog-card {
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 55px rgba(13, 58, 44, 0.14);
        }

        .blog-icon-panel {
            background:
                radial-gradient(circle at top right, rgba(255, 205, 40, 0.18), transparent 32%),
                linear-gradient(180deg, #114538 0%, #0d3a2c 100%);
            min-height: 100%;
            position: relative;
            overflow: hidden;
        }

        .blog-icon-panel::before {
            content: "";
            position: absolute;
            inset: 12px;
            border: 1px solid rgba(255, 205, 40, 0.25);
            border-radius: 12px 0 0 12px;
        }

        .blog-icon-badge {
            width: 86px;
            height: 86px;
            border-radius: 1.4rem;
            background: rgba(255, 205, 40, 0.12);
            color: var(--text-yellow);
            border: 1px solid rgba(255, 205, 40, 0.35);
        }

        .blog-card .author-chip {
            color: var(--text-muted);
            font-size: 0.88rem;
        }

        .blog-card .post-title {
            color: var(--primary-dark-green);
            text-decoration: none;
        }

        .blog-card .post-title:hover {
            color: var(--accent-green);
        }

        .blog-readmore {
            color: var(--primary-dark-green);
            text-decoration: none;
            font-weight: 700;
        }

        .blog-readmore:hover {
            color: var(--accent-green);
        }

        .blog-search-control {
            border-radius: 1rem 0 0 1rem;
            border: 1px solid rgba(13, 58, 44, 0.15);
            min-height: 52px;
        }

        .blog-search-btn {
            min-width: 58px;
            border-radius: 0 1rem 1rem 0;
            background: var(--primary-dark-green);
            border-color: var(--primary-dark-green);
        }

        .widget-title {
            color: var(--primary-dark-green);
            font-weight: 800;
            position: relative;
            padding-bottom: 0.9rem;
            margin-bottom: 1.25rem;
        }

        .widget-title::after {
            content: "";
            width: 52px;
            height: 3px;
            background: var(--text-yellow);
            position: absolute;
            bottom: 0;
            left: 0;
            border-radius: 999px;
        }

        .recent-post-link {
            text-decoration: none;
            color: inherit;
        }

        .recent-post-link:hover .recent-post-title {
            color: var(--accent-green);
        }

        .recent-post-thumb {
            width: 86px;
            height: 86px;
            object-fit: cover;
            border-radius: 5px;
            flex-shrink: 0;
        }

        .recent-post-title {
            color: var(--primary-dark-green);
            font-weight: 700;
            font-size: 0.95rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .recent-post-date {
            font-size: 0.76rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-green);
            font-weight: 700;
        }

        .category-item {
            text-decoration: none;
            color: var(--primary-dark-green);
            border: 1px solid rgba(13, 58, 44, 0.08);
            border-radius: 999px;
            padding: 5px 20px;
            transition: all 0.25s ease;
        }

        .category-item:hover,
        .category-item.is-active {
            background: var(--primary-dark-green);
            color: #fff;
            transform: translateX(4px);
        }

        .category-item .count-pill {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(13, 58, 44, 0.08);
            font-size: 0.82rem;
            font-weight: 700;
        }

        .category-item.is-active .count-pill,
        .category-item:hover .count-pill {
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
        }

        .blog-pagination .page-link {
            width: 44px;
            height: 44px;
            border-radius: 50% !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(13, 58, 44, 0.12);
            color: var(--primary-dark-green);
            box-shadow: none !important;
        }

        .blog-pagination .page-item.active .page-link {
            background: var(--primary-dark-green);
            border-color: var(--primary-dark-green);
            color: #fff;
        }

        .blog-empty {
            border: 1px dashed rgba(13, 58, 44, 0.18);
            border-radius: 1.5rem;
            background: rgba(255, 255, 255, 0.85);
        }

        .blog-newsletter {
            background:
                radial-gradient(circle at top right, rgba(255, 205, 40, 0.2), transparent 32%),
                linear-gradient(135deg, #123f30 0%, #0d3a2c 100%);
            color: #fff;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .blog-newsletter::before {
            content: "";
            position: absolute;
            inset: auto -40px -70px auto;
            width: 220px;
            height: 220px;
            background: rgba(255, 205, 40, 0.15);
            border-radius: 2rem;
            transform: rotate(35deg);
        }

        .blog-newsletter .form-control {
            border-radius:6px;
            min-height: 52px;
            border: none;
        }

        .blog-newsletter .btn {
            border-radius: 999px;
            min-height: 52px;
        }

        @media (max-width: 991.98px) {
      
            .blog-icon-panel {
                min-height: 180px;
            }
        }