 /* ── Hero ── */
    .blog-hero {
      background: linear-gradient(135deg, #18181b 0%, #27272a 55%, #3f3f46 100%);
      color: #fff;
      padding: 52px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .blog-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.405C24.808 18.5 28.486 17 35 17c7.087 0 9.573 1.5 14.193 3.167C53.504 21.667 56.747 23 62 23c5.253 0 8.496-1.333 12.807-2.833C79.427 18.5 81.913 17 89 17c6.514 0 10.192 1.5 12.728 2.595.368.14.73.275 1.088.405H21.184z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    }
    .blog-hero .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(230,57,70,.22);
      border: 1px solid rgba(230,57,70,.4);
      color: #ff8a93;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .blog-hero h1 {
      font-size: clamp(28px, 5vw, 46px);
      font-weight: 800;
      margin-bottom: 12px;
    }
    .blog-hero p {
      font-size: 15px;
      color: rgba(255,255,255,.72);
      max-width: 560px;
      margin: 0 auto;
    }

    /* ── Toolbar ── */
    .blog-toolbar {
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
      position: sticky;
      top: 70px;
      z-index: 90;
    }
    .toolbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      height: 54px;
    }
    .toolbar-count {
      font-size: 13px;
      color: #666;
      white-space: nowrap;
    }
    .toolbar-count strong { color: #e63946; }
    .toolbar-spacer { flex: 1; }
    .toolbar-search-wrap {
      position: relative;
      width: 240px;
    }
    .toolbar-search-wrap .s-icon {
      position: absolute;
      left: 11px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 14px;
      color: #999;
      pointer-events: none;
    }
    .toolbar-search {
      width: 100%;
      padding: 8px 12px 8px 32px;
      border: 1px solid #ddd;
      border-radius: 7px;
      font-size: 13px;
      font-family: inherit;
      outline: none;
      background: #fafafa;
      transition: border-color .15s;
    }
    .toolbar-search:focus { border-color: #e63946; background: #fff; }

    /* ── Category filter pills ── */
    .cat-filter {
      background: #f9f9f9;
      border-bottom: 1px solid #efefef;
      padding: 10px 0;
      overflow-x: auto;
    }
    .cat-filter-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      gap: 8px;
      white-space: nowrap;
    }
    .cat-pill {
      background: #fff;
      border: 1px solid #ddd;
      color: #444;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12.5px;
      font-weight: 500;
      cursor: pointer;
      font-family: inherit;
      transition: all .15s;
      white-space: nowrap;
    }
    .cat-pill:hover { border-color: #e63946; color: #e63946; }
    .cat-pill.active { background: #e63946; border-color: #e63946; color: #fff; }

    /* ── Main layout ── */
    .blog-layout {
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 20px 0;
      display: grid;
      grid-template-columns: 1fr 288px;
      gap: 28px;
      align-items: start;
    }

    /* ── Featured post (first article, larger) ── */
    .featured-post {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 28px;
      transition: box-shadow .2s, border-color .2s;
    }
    .featured-post:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,.1);
      border-color: #e63946;
    }
    .featured-post .fp-img-wrap {
      overflow: hidden;
      background: #f0f0f0;
      min-height: 240px;
    }
    .featured-post .fp-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }
    .featured-post:hover .fp-img-wrap img { transform: scale(1.04); }
    .featured-post .fp-body {
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .featured-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #fff5f5;
      border: 1px solid #fecaca;
      color: #e63946;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      margin-bottom: 12px;
      width: fit-content;
    }
    .featured-post h2 {
      font-size: 20px;
      font-weight: 800;
      color: #1a1a1a;
      line-height: 1.3;
      margin-bottom: 12px;
      letter-spacing: -.3px;
    }
    .featured-post p {
      font-size: 13.5px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .btn-read-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #e63946;
      color: #fff;
      padding: 10px 20px;
      border-radius: 7px;
      font-size: 13.5px;
      font-weight: 700;
      width: fit-content;
      transition: background .15s, transform .15s;
    }
    .btn-read-more:hover { background: #c1121f; transform: translateX(2px); }

    /* ── Posts grid ── */
    .posts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 50px;
    }

    /* ── Post card ── */
    .post-card {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .post-card:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,.09);
      transform: translateY(-3px);
      border-color: #e63946;
    }
    .post-img-wrap {
      aspect-ratio: 16/10;
      overflow: hidden;
      background: #f0f0f0;
    }
    .post-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s;
    }
    .post-card:hover .post-img-wrap img { transform: scale(1.06); }
    .post-body {
      padding: 14px 16px 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .post-cat-tag {
      display: inline-block;
      background: #f5f5f5;
      color: #666;
      font-size: 10.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      padding: 3px 8px;
      border-radius: 4px;
      margin-bottom: 8px;
      width: fit-content;
    }
    .post-card:hover .post-cat-tag { background: #fff5f5; color: #e63946; }
    .post-title {
      font-size: 13.5px;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.45;
      flex: 1;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .post-read-link {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12.5px;
      font-weight: 700;
      color: #e63946;
      margin-top: auto;
      transition: gap .2s;
    }
    .post-card:hover .post-read-link { gap: 8px; }

    /* ── Empty state ── */
    .empty-state {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px 20px;
      color: #aaa;
    }
    .empty-state .empty-icon { font-size: 48px; margin-bottom: 14px; }

    /* ── Sidebar ── */
    .sidebar-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .sidebar-card-header {
      background: #1a1a2e;
      color: #fff;
      padding: 14px 18px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sidebar-card-body { padding: 16px; }

    .sidebar-cta {
      background: linear-gradient(135deg, #e63946, #c1121f);
      border-radius: 12px;
      padding: 22px 18px;
      text-align: center;
      color: #fff;
      margin-bottom: 20px;
    }
    .sidebar-cta h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
    .sidebar-cta p { font-size: 12.5px; opacity: .88; margin-bottom: 14px; line-height: 1.6; }
    .sidebar-cta .btn-wa {
      background: #25D366;
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 8px;
      transition: background .2s;
    }
    .sidebar-cta .btn-wa:hover { background: #1ebe5d; }
    .sidebar-cta .btn-catalog {
      background: rgba(255,255,255,.15);
      color: #fff;
      padding: 9px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.25);
      transition: background .2s;
    }
    .sidebar-cta .btn-catalog:hover { background: rgba(255,255,255,.25); }

    /* Recent posts list */
    .recent-list { display: flex; flex-direction: column; gap: 0; }
    .recent-item {
      display: flex;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #f5f5f5;
      align-items: flex-start;
      transition: background .15s;
      border-radius: 6px;
    }
    .recent-item:last-child { border-bottom: none; }
    .recent-item:hover { background: #fafafa; }
    .recent-thumb {
      width: 52px;
      height: 40px;
      border-radius: 5px;
      overflow: hidden;
      flex-shrink: 0;
      background: #f0f0f0;
    }
    .recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .recent-title {
      font-size: 12.5px;
      font-weight: 600;
      color: #1a1a1a;
      line-height: 1.45;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .recent-item:hover .recent-title { color: #e63946; }

    /* Categories sidebar */
    .cat-list { display: flex; flex-direction: column; gap: 2px; }
    .cat-list-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      border-radius: 6px;
      font-size: 13px;
      color: #444;
      font-weight: 500;
      cursor: pointer;
      transition: background .15s, color .15s;
    }
    .cat-list-item:hover { background: #fff5f5; color: #e63946; }
    .cat-list-item.active { background: #e63946; color: #fff; }
    .cat-count {
      background: #f0f0f0;
      color: #777;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 10px;
    }
    .cat-list-item.active .cat-count { background: rgba(255,255,255,.25); color: #fff; }

    /* Newsletter */
    .newsletter-desc { font-size: 12.5px; color: #777; line-height: 1.6; margin-bottom: 12px; }
    .newsletter-form { display: flex; flex-direction: column; gap: 8px; }
    .newsletter-form input[type="email"] {
      width: 100%;
      padding: 9px 12px;
      border: 1px solid #ddd;
      border-radius: 7px;
      font-size: 13px;
      font-family: inherit;
      outline: none;
      transition: border-color .15s;
    }
    .newsletter-form input[type="email"]:focus { border-color: #e63946; }
    .newsletter-form button {
      background: #e63946;
      color: #fff;
      padding: 9px;
      border: none;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: background .15s;
    }
    .newsletter-form button:hover { background: #c1121f; }

    /* Responsive */
    @media (max-width: 1024px) {
      .posts-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 960px) {
      .blog-layout { grid-template-columns: 1fr; }
      .posts-grid { grid-template-columns: repeat(3, 1fr); }
      .featured-post { grid-template-columns: 1fr; }
      .featured-post .fp-img-wrap { min-height: 200px; }
    }
    @media (max-width: 640px) {
      .posts-grid { grid-template-columns: repeat(2, 1fr); }
      .toolbar-search-wrap { width: 160px; }
    }
    @media (max-width: 400px) {
      .posts-grid { grid-template-columns: 1fr; }
    }