    /* ===== Blog Page Styles ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'DM Sans', 'Inter', -apple-system, sans-serif; background: #FFFFFF; color: #1A1A2E; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    img { display: block; max-width: 1440px; height: auto; }

    /* ===== Blog Header ===== */
    .blog-header {
      background: linear-gradient(135deg, #fef0e8 0%, #fde8d8 50%, #f8d5c0 100%);
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .blog-header::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(ellipse at 70% 30%, rgba(232,118,75,.08) 0, transparent 60%);
      pointer-events: none;
    }
    .blog-header__inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .blog-header__title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: #1A1A2E;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .blog-header__subtitle {
      font-size: 1.05rem;
      color: #777;
      line-height: 1.6;
    }

    /* ===== Blog Layout ===== */
    .blog-layout {
      max-width: 1440px;
      margin: 0 auto;
      padding: 48px 24px;
    }

    /* ===== Blog List ===== */
    .blog-main { width: 100%; max-width: 100%; }
    .blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1440px; margin: 0 auto; padding: 0 24px; }
    .blog-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0,0,0,.06);
      transition: transform .2s, box-shadow .2s;
      border: 1px solid #f0ece6;
    }
    .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,.08);
    }
    .blog-card__img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      background: #f5f0ea;
    }
    .blog-card__img-placeholder {
      width: 100%;
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, #f5f0ea, #ede4da);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: #d4c8b8;
    }
    .blog-card__body {
      padding: 20px 22px 24px;
    }
    .blog-card__meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      font-size: 0.8rem;
      color: #999;
    }
    .blog-card__category {
      display: inline-block;
      background: #fef5ee;
      color: #E8364E;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }
    .blog-card__date {
      font-size: 0.78rem;
      color: #aaa;
    }
    .blog-card__title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1A1A2E;
      margin-bottom: 8px;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .blog-card__excerpt {
      font-size: 0.88rem;
      color: #777;
      line-height: 1.55;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .blog-card__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #E8364E;
      transition: gap .2s;
    }
    .blog-card__link:hover { gap: 10px; }
    .blog-card__link::after {
      content: '→';
      font-size: 1rem;
    }

    /* ===== Pagination ===== */
    .blog-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .blog-pagination__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      border: 1px solid #e0dcd6;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 500;
      color: #555;
      background: #fff;
      transition: all .2s;
    }
    .blog-pagination__btn:hover {
      border-color: #E8364E;
      color: #E8364E;
      background: #fef5ee;
    }
    .blog-pagination__btn--active {
      background: #E8364E;
      color: #fff;
      border-color: #E8364E;
    }
    .blog-pagination__btn--active:hover {
      background: #d96a3f;
      color: #fff;
    }
    .blog-pagination__btn--disabled {
      opacity: 0.35;
      pointer-events: none;
    }

    /* ===== Loading / Error States ===== */
    .blog-loading {
      text-align: center;
      padding: 80px 20px;
      color: #999;
      font-size: 1rem;
    }
    .blog-loading .spinner {
      display: inline-block;
      width: 32px;
      height: 32px;
      border: 3px solid #f0ece6;
      border-top-color: #E8364E;
      border-radius: 50%;
      animation: spin .7s linear infinite;
      margin-bottom: 12px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .blog-error {
      text-align: center;
      padding: 80px 20px;
      color: #c0392b;
    }

    /* ===== Blog Detail ===== */
    .blog-detail { display: none; }
    .blog-detail__article {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #f0ece6;
    }
    .blog-detail__cover {
      width: 100%;
      aspect-ratio: 21/9;
      object-fit: cover;
      background: #f5f0ea;
    }
    .blog-detail__cover-placeholder {
      width: 100%;
      aspect-ratio: 21/9;
      background: linear-gradient(135deg, #f5f0ea, #ede4da);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: #d4c8b8;
    }
    .blog-detail__body {
      padding: 36px 40px 40px;
      max-width: 780px;
      margin: 0 auto;
    }
    .blog-detail__meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .blog-detail__category {
      display: inline-block;
      background: #fef5ee;
      color: #E8364E;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .blog-detail__date {
      font-size: 0.85rem;
      color: #aaa;
    }
    .blog-detail__title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2rem;
      font-weight: 700;
      color: #1A1A2E;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .blog-detail__back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      color: #E8364E;
      font-weight: 500;
      margin-bottom: 24px;
      transition: gap .2s;
    }
    .blog-detail__back:hover { gap: 10px; }
    .blog-detail__back::before {
      content: '←';
      font-size: 1rem;
    }
    .blog-detail__content {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #444;
    }
    .blog-detail__content p {
      margin-bottom: 1.2em;
    }
    .blog-detail__content h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.5rem;
      margin-top: 1.8em;
      margin-bottom: 0.6em;
      color: #1A1A2E;
    }
    .blog-detail__content h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.2rem;
      margin-top: 1.5em;
      margin-bottom: 0.5em;
      color: #1A1A2E;
    }
    .blog-detail__content blockquote {
      border-left: 3px solid #E8364E;
      padding: 12px 20px;
      margin: 1.5em 0;
      background: #fef9f5;
      border-radius: 0 8px 8px 0;
      color: #555;
      font-style: italic;
    }
    .blog-detail__content ul, .blog-detail__content ol {
      padding-left: 1.5em;
      margin-bottom: 1.2em;
    }
    .blog-detail__content li { margin-bottom: 0.4em; }
    .blog-detail__content img {
      border-radius: 10px;
      margin: 1.5em 0;
    }
    .blog-detail__content a {
      color: #E8364E;
      text-decoration: underline;
    }
    .blog-detail__content a:hover { color: #c75d2e; }

    /* ===== Share ===== */
    .blog-share {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid #f0ece6;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .blog-share__label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .blog-share__btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 500;
      color: #fff;
      transition: opacity .2s;
    }
    .blog-share__btn:hover { opacity: 0.85; }
    .blog-share__btn--fb { background: #1877F2; }
    .blog-share__btn--tw { background: #1DA1F2; }
    .blog-share__btn--pin { background: #E60023; }
    .blog-share__btn--copy {
      background: #555;
    }
    .blog-share__btn--copy.copied { background: #27ae60; }

    /* ===== Comments ===== */
    .blog-comments {
      background: #fff;
      border: 1px solid #f0ece6;
      border-radius: 14px;
      padding: 32px 36px;
      margin-top: 32px;
    }
    .blog-comments__heading {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .blog-comments__list { margin-bottom: 20px; }
    .blog-comment {
      padding: 16px 0;
      border-bottom: 1px solid #f5f1eb;
    }
    .blog-comment:last-child { border-bottom: none; }
    .blog-comment__author {
      font-weight: 600;
      font-size: 0.9rem;
      color: #1A1A2E;
    }
    .blog-comment__date {
      font-size: 0.78rem;
      color: #aaa;
      margin-left: 8px;
    }
    .blog-comment__text {
      font-size: 0.88rem;
      color: #555;
      margin-top: 6px;
      line-height: 1.55;
    }
    .blog-comments__form { margin-top: 8px; }
    .blog-comments__form textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #e0dcd6;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      resize: vertical;
      min-height: 80px;
      transition: border-color .2s;
      background: #FFFFFF;
    }
    .blog-comments__form textarea:focus {
      outline: none;
      border-color: #E8364E;
    }
    .blog-comments__form input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #e0dcd6;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      margin-bottom: 12px;
      transition: border-color .2s;
      background: #FFFFFF;
    }
    .blog-comments__form input:focus {
      outline: none;
      border-color: #E8364E;
    }
    .blog-comments__submit {
      padding: 12px 28px;
      background: #E8364E;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 600;
      transition: background .2s;
    }
    .blog-comments__submit:hover { background: #d96a3f; }

    /* ===== Related Articles ===== */
    .blog-related {
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid #f0ece6;
    }
    .blog-related__heading {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: #1A1A2E;
    }
    .blog-related__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .blog-related__card {
      background: #fff;
      border: 1px solid #f0ece6;
      border-radius: 12px;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }
    .blog-related__card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0,0,0,.07);
    }
    .blog-related__card img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
    }
    .blog-related__card-body {
      padding: 14px 16px 18px;
    }
    .blog-related__card-title {
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .blog-related__card-date {
      font-size: 0.75rem;
      color: #aaa;
      margin-top: 6px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .blog-related__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .blog-header { padding: 40px 20px; }
      .blog-header__title { font-size: 2rem; }
      .blog-layout { padding: 32px 16px; }
      .blog-grid { grid-template-columns: 1fr; gap: 20px; }
      .blog-detail__body { padding: 24px 20px 28px; }
      .blog-detail__title { font-size: 1.5rem; }
      .blog-detail__content { font-size: 0.9rem; }
      .blog-comments { padding: 20px; }
      .blog-related__grid { grid-template-columns: 1fr; }
      .blog-share { flex-direction: column; align-items: flex-start; }
    }
