:root {
      --primary-color: #007bff; 
      --text-dark: #2c3e50;
      --text-medium: #333;
      --text-light: #7f8c8d;
      --bg-light: #f8f9fa;
      --border-color: #e0e0e0;
    }

    .blog-detail {
      background-color: #f8f9fa;
      min-height: 100vh;
    }

    .blog-detail__post {
      padding-top: var(--header-offset, 120px);
      max-width: 100%;
      margin: 0 auto;
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 40px;
      background-color: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
    }

    .blog-detail__header {
      padding-top: 25px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 25px;
    }

    .blog-detail__title {
      font-size: 28px;
      color: var(--text-dark);
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.3;
      text-align: center;
    }

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

    .blog-detail__date-label,
    .blog-detail__keywords-label {
      margin-right: 5px;
      font-weight: 500;
    }

    .blog-detail__date {
      margin-right: 15px;
    }

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

    .blog-detail__keyword-link {
      background-color: var(--bg-light);
      color: var(--text-light);
      padding: 4px 10px;
      border-radius: 20px;
      text-decoration: none;
      margin-right: 8px;
      margin-bottom: 5px;
      font-size: 13px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .blog-detail__keyword-link:hover {
      background-color: var(--primary-color);
      color: #ffffff;
    }

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

    .blog-detail__cover {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
    }

    .blog-detail__cover-caption {
      font-size: 12px;
      color: #95a5a6;
      text-align: center;
      margin-top: 10px;
    }

    .blog-detail__content-section {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-medium);
    }

    .blog-detail__content-section p {
      margin-bottom: 18px;
      text-align: justify;
    }

    .blog-detail__content-section h2 {
      font-size: 24px;
      margin-top: 25px;
      margin-bottom: 12px;
      color: var(--text-dark);
      font-weight: bold;
      line-height: 1.4;
    }

    .blog-detail__content-section h3 {
      font-size: 20px;
      margin-top: 20px;
      margin-bottom: 10px;
      color: var(--text-dark);
      font-weight: bold;
      line-height: 1.3;
    }

    .blog-detail__content-section ul,
    .blog-detail__content-section ol {
      margin-bottom: 18px;
      padding-left: 25px;
      list-style-position: outside;
    }

    .blog-detail__content-section li {
      margin-bottom: 8px;
    }

    .blog-detail__content-section a {
      color: var(--primary-color);
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 123, 255, 0.5);
      transition: border-bottom 0.3s ease;
    }

    .blog-detail__content-section a:hover {
      border-bottom: 1px solid var(--primary-color);
    }

    .blog-detail__content-section img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    
    @media (min-width: 768px) {
      .blog-detail__post {
        max-width: 800px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 50px;
      }

      .blog-detail__header {
        padding-top: 35px;
        margin-bottom: 30px;
      }

      .blog-detail__title {
        font-size: 38px;
      }

      .blog-detail__meta {
        font-size: 15px;
      }

      .blog-detail__date {
        margin-right: 25px;
      }

      .blog-detail__keyword-link {
        font-size: 14px;
        padding: 5px 12px;
      }

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

      .blog-detail__content-section {
        font-size: 17px;
        line-height: 1.8;
      }

      .blog-detail__content-section h2 {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 15px;
      }

      .blog-detail__content-section h3 {
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 10px;
      }
    }