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

    .blog-detail__article {
      background-color: #ffffff;
      max-width: 800px;
      margin: 20px auto;
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

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

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

    .blog-detail__title {
      font-size: 38px;
      color: #2c3e50;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    @media (max-width: 768px) {
      .blog-detail__title {
        font-size: 28px;
      }
    }

    .blog-detail__meta {
      font-size: 15px;
      color: #7f8c8d;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
    }

    .blog-detail__date {
      font-weight: 500;
    }

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

    .blog-detail__keywords-label {
      font-weight: 500;
      color: #555;
    }

    .blog-detail__keyword {
      background-color: #e0e0e0;
      color: #34495e;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 13px;
      white-space: nowrap;
    }

    .blog-detail__figure {
      margin: 0 0 35px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .blog-detail__cover {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease-in-out;
    }

    .blog-detail__cover:hover {
      transform: scale(1.02);
    }

    .blog-detail__content {
      font-size: 17px;
      line-height: 1.7;
      color: #333333;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .blog-detail__content {
        font-size: 16px;
        line-height: 1.6;
      }
    }

    .blog-detail__content p {
      margin-bottom: 20px;
    }

    .blog-detail__content h2 {
      font-size: 28px;
      color: #2c3e50;
      font-weight: 600;
      margin-top: 30px;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .blog-detail__content h3 {
      font-size: 22px;
      color: #34495e;
      font-weight: 600;
      margin-top: 25px;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .blog-detail__content ul,
    .blog-detail__content ol {
      margin-bottom: 20px;
      padding-left: 25px;
    }

    .blog-detail__content li {
      margin-bottom: 8px;
      line-height: 1.6;
    }

    .blog-detail__content a {
      color: #C0392B;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

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

    .blog-detail__footer-nav {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #eeeeee;
    }

    .blog-detail__back-button {
      display: inline-block;
      background-color: #C0392B;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(192, 57, 43, 0.3);
    }

    .blog-detail__back-button:hover {
      background-color: #E74C3C;
      transform: translateY(-2px);
    }