:root {
      --text-color-dark: #2c3e50;
      --text-color-medium: #333;
      --text-color-light: #7f8c8d;
    }

    .blog-detail__container {
      max-width: 800px;
      margin: 0 auto;
      padding: 1.5rem 1rem;
      padding-top: var(--header-offset, 120px);
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      margin-bottom: 2rem;
    }

    .blog-detail__header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .blog-detail__title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-color-dark);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .blog-detail__meta {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.8rem;
      font-size: 0.875rem;
      color: var(--text-color-light);
    }

    .blog-detail__date {
      font-style: italic;
    }

    .blog-detail__keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .blog-detail__keyword {
      background-color: #e9ecef;
      color: #6c757d;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      white-space: nowrap;
    }

    .blog-detail__cover {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 2.5rem;
      display: block;
    }

    .blog-detail__content {
      line-height: 1.8;
      color: var(--text-color-medium);
      font-size: 1.125rem;
    }

    .blog-detail__content p {
      margin-bottom: 1.25rem;
    }

    .blog-detail__content h2 {
      font-size: 2rem;
      color: var(--text-color-dark);
      margin-top: 1.875rem;
      margin-bottom: 0.9375rem;
      font-weight: 600;
      line-height: 1.3;
    }

    .blog-detail__content h3 {
      font-size: 1.5rem;
      color: var(--text-color-dark);
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
      font-weight: 600;
      line-height: 1.4;
    }

    .blog-detail__content ul,
    .blog-detail__content ol {
      margin-left: 1.5rem;
      margin-bottom: 1.25rem;
      padding-left: 0;
    }

    .blog-detail__content li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .blog-detail__content a {
      color: #007bff;
      text-decoration: none;
    }

    .blog-detail__content a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .blog-detail__container {
        padding: 1rem 1rem;
        padding-top: var(--header-offset, 100px);
      }

      .blog-detail__title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
      }

      .blog-detail__meta {
        flex-direction: column;
        gap: 0.5rem;
      }

      .blog-detail__content {
        font-size: 1rem;
        line-height: 1.7;
      }

      .blog-detail__content p {
        margin-bottom: 1rem;
      }

      .blog-detail__content h2 {
        font-size: 1.6rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
      }

      .blog-detail__content h3 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
      }

      .blog-detail__cover {
        max-height: 250px;
        margin-bottom: 1.5rem;
      }
    }