:root {
      --primary-color: #e44d26;
      --secondary-color: #2c3e50;
      --text-color: #333333;
      --light-text-color: #7f8c8d;
      --background-light: #f8f9fa;
      --header-offset: 120px;
    }

    .blog-detail__content h1,
    .blog-detail__content h2,
    .blog-detail__content h3,
    .blog-detail__content h4,
    .blog-detail__content h5,
    .blog-detail__content h6 {
      color: var(--secondary-color);
      margin-top: 2rem;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .blog-detail__content h1 { font-size: 2.2rem; }
    .blog-detail__content h2 { font-size: 1.8rem; margin-top: 30px; margin-bottom: 15px; }
    .blog-detail__content h3 { font-size: 1.5rem; }
    .blog-detail__content h4 { font-size: 1.2rem; }

    .blog-detail__content p {
      margin-bottom: 1.2rem;
      line-height: 1.8;
      color: var(--text-color);
    }

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

    .blog-detail__content li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
      color: var(--text-color);
    }

    .blog-detail__content a {
      color: var(--primary-color);
      text-decoration: none;
    }

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

    .blog-detail {
      padding-top: var(--header-offset, 120px);
      background-color: var(--background-light);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      padding-bottom: 40px;
    }

    .blog-detail__post {
      max-width: 800px;
      width: 100%;
      background-color: #ffffff;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      margin: 20px;
    }

    .blog-detail__header {
      text-align: center;
      margin-bottom: 30px;
    }

    .blog-detail__title {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 700;
    }

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

    .blog-detail__date {
      color: var(--light-text-color);
      font-weight: 500;
    }

    .blog-detail__keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .blog-detail__keyword {
      background-color: #ecf0f1;
      color: #34495e;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      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: 1.125rem;
      line-height: 1.8;
      color: var(--text-color);
    }

    @media (max-width: 768px) {
      .blog-detail__post {
        padding: 20px 15px;
        margin: 10px;
      }

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

      .blog-detail__meta {
        font-size: 0.8125rem;
      }

      .blog-detail__cover {
        max-height: 300px;
      }

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

      .blog-detail__content h1 { font-size: 1.8rem; }
      .blog-detail__content h2 { font-size: 1.5rem; margin-top: 25px; margin-bottom: 12px; }
      .blog-detail__content h3 { font-size: 1.3rem; }
      .blog-detail__content h4 { font-size: 1.1rem; }

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

    @media (max-width: 480px) {
      .blog-detail__title {
        font-size: 1.75rem;
      }

      .blog-detail__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
      }

      .blog-detail__header {
        text-align: left;
      }

      .blog-detail__keywords {
        justify-content: flex-start;
      }

      .blog-detail__cover {
        max-height: 250px;
      }
    }