 .sidebar {
    }

    .sidebar h3 {
  color: #3A1700;
font-family: Rowdies;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: 25px; /* 125% */
letter-spacing: -1px;
    }

    .widget {
      margin-bottom: 40px;
      background: #fffaf5;
      border: 1px solid #f3e9dc;
      border-radius: 10px;
      padding: 20px;
    }

    .widget ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .widget ul li {
      font-size: 0.95rem;
      color: #333;
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .widget ul li span {
      color: black;
    }

    .posts-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .posts-list img {
      width: 55px;
      height: 55px;
      border-radius: 8px;
      margin-right: 12px;
      object-fit: cover;
    }

    .posts-list p {
      font-size: 0.9rem;
      margin: 0;
      color: #2b2b2b;
      line-height: 1.4;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tags span {
      background: #f8f2ec;
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 0.85rem;
      color: #3d2b1f;
    }

    @media (max-width: 991px) {
      .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        border-left: none;
      }
    }

     .container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        /* Blog Post Cards */
        .blog-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            transition: transform 0.2s ease-in-out;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .blog-content {
            padding: 1rem 1.5rem;
        }

        .blog-meta {
            display: flex;
            justify-content: end;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            color: #777;
        }

        .blog-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #222;
        }

        .blog-desc {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 1rem;
        }

        .read-more {
            display: inline-block;
            background: #7E8AB8;
            color: #fff !important;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: background 0.3s;
        }

        .read-more:hover {
            background: #1a45cc;
            color: #fff !important;
        }

        /* Sidebar */
        .sidebar {
            padding: 1rem;
            position: sticky;
            top: 2rem;
            /* distance from the top of viewport */
            height: fit-content;
            /* ensures it wraps content and doesn't stretch */
        }


        .sidebar .widget {
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            background: linear-gradient(180deg, #FDFBF1 0%, #FFFCF1 49%, #FFF2E3 100%);
        }

        .widget h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #eee;
            padding-bottom: 0.5rem;
            color: #222;
        }

        .widget ul {
            list-style: none;
        }

        .widget ul li {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #555;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tags span {
            background: #f4f4f4;
            padding: 0.3rem 0.7rem;
            font-size: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .tags span:hover {
            background: #ddd;
        }

        /* Pagination */
        .pagination {
            text-align: center;
            margin: 2rem 0;
        }

        .pagination button {
            border: none;
            outline: none;
            background: #f4f4f4;
            padding: 0.6rem 1rem;
            margin: 0 0.3rem;
            font-size: 0.9rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .pagination button.active {
            background: #2e5fff;
            color: #fff;
        }

        .pagination button:hover {
            background: #ddd;
        }

        /* Responsive */
        @media(max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
        }

        h1 {
            color: black;
            font-size: 40px;
            font-weight: bold;
        }

        .bg {
            background: linear-gradient(180deg,
                    #fdfbf1 0%,
                    #fffcf1 49%,
                    #fff2e3 100%);
        }