.blog-detail {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: #f8f9fa;
      color: #333333;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .blog-detail__wrapper {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .blog-detail__article {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .blog-detail__header {
      margin-bottom: 25px;
    }
    .blog-detail__title {
      font-size: 36px;
      color: #2c3e50;
      font-weight: bold;
      margin-bottom: 15px;
      line-height: 1.2;
    }
    .blog-detail__meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      font-size: 14px;
      color: #7f8c8d;
      margin-bottom: 20px;
    }
    .blog-detail__date {
      margin-right: 15px;
      white-space: nowrap;
    }
    .blog-detail__keywords-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }
    .blog-detail__keyword-label {
      margin-right: 8px;
      font-weight: bold;
      white-space: nowrap;
    }
    .blog-detail__keyword {
      background-color: #e9ecef;
      color: #555555;
      padding: 4px 10px;
      border-radius: 5px;
      margin-right: 8px;
      margin-bottom: 5px;
      display: inline-block;
      white-space: nowrap;
    }
    .blog-detail__cover {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 30px;
      display: block;
    }
    .blog-detail__content {
      font-size: 17px;
      line-height: 1.7;
      color: #333333;
    }
    .blog-detail__content p {
      margin-bottom: 20px;
    }
    .blog-detail__content h2 {
      font-size: 28px;
      color: #2c3e50;
      margin-top: 30px;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.3;
    }
    .blog-detail__content h3 {
      font-size: 24px;
      color: #2c3e50;
      margin-top: 25px;
      margin-bottom: 12px;
      font-weight: bold;
      line-height: 1.3;
    }
    .blog-detail__content ul,
    .blog-detail__content ol {
      margin-left: 25px;
      margin-bottom: 20px;
    }
    .blog-detail__content li {
      margin-bottom: 8px;
    }
    .blog-detail__content a {
      color: #3498db;
      text-decoration: none;
    }
    .blog-detail__content a:hover {
      text-decoration: underline;
    }
    .blog-detail__share-section {
      margin-top: 40px;
      padding-top: 25px;
      border-top: 1px solid #eeeeee;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }
    .blog-detail__share-label {
      font-size: 16px;
      font-weight: bold;
      color: #555555;
      margin-right: 20px;
      margin-bottom: 10px;
      white-space: nowrap;
    }
    .blog-detail__share-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #f2f2f2;
      color: #7f8c8d;
      font-size: 18px;
      margin: 0 8px 10px 8px;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .blog-detail__share-link:hover {
      background-color: #e0e0e0;
      color: #333333;
    }
    @media (max-width: 768px) {
      .blog-detail__wrapper {
        padding: 0 15px;
      }
      .blog-detail__article {
        padding: 20px;
      }
      .blog-detail__title {
        font-size: 28px;
      }
      .blog-detail__meta {
        flex-direction: column;
        align-items: flex-start;
      }
      .blog-detail__date {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .blog-detail__keywords-container {
        flex-direction: column;
        align-items: flex-start;
      }
      .blog-detail__keyword-label {
        margin-bottom: 8px;
      }
      .blog-detail__keyword {
        margin-bottom: 5px;
      }
      .blog-detail__cover {
        max-height: 250px;
      }
      .blog-detail__content {
        font-size: 16px;
        line-height: 1.6;
      }
      .blog-detail__content h2 {
        font-size: 24px;
        margin-top: 25px;
        margin-bottom: 12px;
      }
      .blog-detail__content h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 10px;
      }
      .blog-detail__share-section {
        flex-direction: column;
      }
      .blog-detail__share-label {
        margin-right: 0;
        margin-bottom: 15px;
      }
    }
    @media (max-width: 480px) {
      .blog-detail__title {
        font-size: 24px;
      }
      .blog-detail__content h2 {
        font-size: 20px;
      }
      .blog-detail__content h3 {
        font-size: 18px;
      }
      .blog-detail__article {
        padding: 15px;
      }
      .blog-detail__share-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin: 0 6px 8px 6px;
      }
    }