body {
        font-family: "Segoe UI", sans-serif;
        background: #fafafa;
        margin: 0;
        color: #333;
        line-height: 1.6;
      }

      header h1 {
        margin: 0;
        font-size: 2.5rem;
      }

      header p {
        font-size: 1.2rem;
        margin-top: 0.5rem;
      }

      .container {
        max-width: 1100px;
        margin: auto;
        padding: 2rem 1rem;
      }

      /* Featured Post */
      .featured {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        margin-bottom: 3rem;
      }

      .featured img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .featured-content {
        padding: 2rem;
      }

      .featured-content h2 {
        margin-top: 0;
        color: #d8345f;
      }

      /* Blog Grid */
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
      }

      .blog-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.2s;
      }

      .blog-card:hover {
        transform: translateY(-5px);
      }

      .blog-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
      }

      .blog-card-content {
        padding: 1rem;
      }

      .blog-card-content h3 {
        margin: 0.2rem 0;
        color: #1c08d4;
      }

      .blog-card-content p {
        font-size: 0.95rem;
        color: #555;
      }

      .blog-card-content small {
        color: #888;
      }

      /* AOB Section */
      .aob {
        margin-top: 4rem;
        padding: 2rem;
        background: #fff4f4;
        border-radius: 12px;
      }

      .aob h2 {
        color: #6603e7;
        margin-top: 0;
      }

      .aob p {
        margin-bottom: 1rem;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .featured {
          grid-template-columns: 1fr;
        }
        .featured-content {
          padding: 1rem;
        }
      }