

    /* Main Wrapper */
    #content-wrapper {
       margin: 50px auto;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      padding: 0 20px;
    }

    /* Blog Cards Grid */
    .section-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .post-item {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .post-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .featured-image {
      position: relative;
      height: 220px;
      background-size: cover;
      background-position: center;
    }

    .featured-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.2);
      transition: 0.3s;
    }

    .post-item:hover .featured-image::after {
      background: rgba(0,0,0,0.4);
    }

    .entry-meta {
      position: absolute;
      bottom: 10px;
      left: 15px;
      background: #fff;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      color: #b71527;
      font-weight: 600;
    }

    .entry-container {
      padding: 20px;
    }

    .entry-header h2 {
      font-size: 1.1rem;
      color: #222;
      margin-bottom: 10px;
      transition: color 0.3s;
    }

    .entry-header a {
      text-decoration: none;
      color: inherit;
    }

    .entry-header a:hover {
      color: #b71527;
    }

    .entry-content p {
      color: #666;
      font-size: 0.95rem;
    }

    /* Sidebar */
    #secondary {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    #secondary h3 {
      font-size: 1.3rem;
      color: #b71527;
      margin-bottom: 15px;
    }

    .wp-block-latest-posts__list li {
      margin-bottom: 12px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    .wp-block-latest-posts__post-title {
      color: #333;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s;
    }

    .wp-block-latest-posts__post-title:hover {
      color: #b71527;
    }

    .wp-block-latest-posts__post-date {
      display: block;
      font-size: 0.8rem;
      color: #888;
      margin-top: 4px;
    }

    /* Modern Pagination */
    .pagination {
      text-align: center;
      margin: 50px 0;
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .pagination a,
    .pagination span {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 50px;
      background: #fff;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      text-decoration: none;
      color: #b71527;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .pagination a:hover {
      background: #b71527;
      color: #fff;
      transform: translateY(-2px);
    }

    .pagination .active {
      background: #b71527;
      color: #fff;
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(183,21,39,0.3);
    }

    .pagination .disabled {
      opacity: 0.5;
      pointer-events: none;
    }

    /* Responsive */
    @media (max-width: 992px) {
      #content-wrapper {
        grid-template-columns: 1fr;
      }
      #secondary {
        margin-top: 30px;
      }
    }

    @media (max-width: 768px) {
      .entry-header h2 {
        font-size: 1rem;
      }
    }