  /* Blog List */
  .blog-section { max-width: 1280px; margin: 0 auto; padding: 36px 64px 64px; }
  .blog-section__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
  .blog-section__title { font-size: 40px; font-weight: 600; color: var(--green); line-height: 1.2; }
  .blog-section__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .blog-card { display: flex; flex-direction: column; text-decoration: none; }
  .blog-card__image { height: 153px; border-radius: 15px 15px 0 0; overflow: hidden; }
  .blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
  .blog-card__body { background: var(--green); border-radius: 0 0 20px 20px; padding: 16px 24px 24px; flex: 1; }
  .blog-card__name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
  .blog-card__desc { font-size: 16px; color: #fff; line-height: 1.5; }

  /* Blog Detail */
  .blog-post { max-width: 1280px; margin: 0 auto; padding: 36px 64px 64px; }
  .blog-post__top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 32px; align-items: start; }
  .blog-post__image { border-radius: 20px; overflow: hidden; }
  .blog-post__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .blog-post__info { display: flex; flex-direction: column; }
  .blog-post__title { font-size: 40px; font-weight: 600; color: var(--green); line-height: 1.2; margin-bottom: 12px; }
  .blog-post__date { font-size: 16px; color: var(--green-light); font-weight: 500; margin-bottom: 24px; }
  .blog-post__excerpt { font-size: 18px; line-height: 1.6; color: var(--text); }
  .blog-post__excerpt p { margin-bottom: 16px; }
  .blog-post__body { font-size: 18px; line-height: 1.6; color: var(--text); }
  .blog-post__body p { margin-bottom: 16px; }
  .blog-post__body blockquote {
    border-left: 4px solid var(--green);
    padding: 24px 32px;
    margin: 24px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
  }
  .blog-post__body blockquote p { margin-bottom: 0; }

  @media (max-width: 960px) {
    .blog-section { padding: 24px 20px 48px; }
    .blog-section__title { font-size: 28px; }
    .blog-section__grid { grid-template-columns: 1fr; }
    .blog-section__header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .blog-post { padding: 24px 20px 48px; }
    .blog-post__top { grid-template-columns: 1fr; gap: 24px; }
    .blog-post__title { font-size: 28px; }
    .blog-post__body { font-size: 16px; }
    .blog-post__body blockquote { padding: 16px 20px; font-size: 16px; }
  }
