.blog-detail {
      padding-top: var(--header-offset, 120px);
      background-color: #1a202c;
      padding-bottom: 4rem;
      min-height: calc(100vh - var(--header-offset, 120px) - 300px);
    }

    .blog-detail__article {
      max-width: 800px;
      margin: 0 auto;
      background-color: #ffffff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      color: #333333;
    }

    .blog-detail__header {
      margin-bottom: 1.5rem;
    }

    .blog-detail__title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .blog-detail__meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      font-size: 0.875rem;
      color: #7f8c8d;
    }

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

    .blog-detail__keywords-label {
      font-weight: bold;
      color: #555555;
    }

    .blog-detail__keyword {
      background-color: #e0e0e0;
      color: #555555;
      padding: 0.3rem 0.8rem;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.2s ease;
      white-space: nowrap;
    }

    .blog-detail__keyword:hover {
      background-color: #d0d0d0;
    }

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

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

    .blog-detail__figcaption {
      font-size: 0.85rem;
      color: #7f8c8d;
      margin-top: 0.5rem;
    }

    .blog-detail__content {
      font-size: 1.125rem;
      line-height: 1.7;
      color: #333333;
    }

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

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

    .blog-detail__content h3 {
      font-size: 1.5rem;
      color: #2c3e50;
      margin-top: 25px;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .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;
    }

    .blog-detail__content a {
      color: #f39c12;
      text-decoration: none;
      transition: color 0.2s ease;
    }

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

    .blog-detail__footer {
      padding-top: 2rem;
      border-top: 1px solid #eee;
      margin-top: 2rem;
      text-align: center;
    }

    .blog-detail__share {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }

    .blog-detail__share-label {
      font-weight: bold;
      color: #555555;
      margin-right: 0.5rem;
    }

    .blog-detail__share-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1rem;
      border-radius: 5px;
      text-decoration: none;
      color: #ffffff;
      font-weight: bold;
      transition: background-color 0.2s ease;
    }

    .blog-detail__share-button--facebook {
      background-color: #3b5998;
    }

    .blog-detail__share-button--facebook:hover {
      background-color: #2d4373;
    }

    .blog-detail__share-button--twitter {
      background-color: #1da1f2;
    }

    .blog-detail__share-button--twitter:hover {
      background-color: #0c85d0;
    }

    .blog-detail__share-button--telegram {
      background-color: #0088cc;
    }

    .blog-detail__share-button--telegram:hover {
      background-color: #006699;
    }

    .blog-detail__share-button--whatsapp {
      background-color: #25d366;
    }

    .blog-detail__share-button--whatsapp:hover {
      background-color: #1da851;
    }

    .blog-detail__related-posts {
      max-width: 800px;
      margin: 3rem auto 0 auto;
      padding: 2rem;
      background-color: #28303d;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .blog-detail__related-title {
      font-size: 2rem;
      color: #ffffff;
      text-align: center;
      margin-bottom: 2rem;
      font-weight: bold;
    }

    .blog-detail__related-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .blog-detail__related-item {
      background-color: #343f4f;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .blog-detail__related-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .blog-detail__related-link {
      display: block;
      text-decoration: none;
      color: inherit;
      padding: 1rem;
    }

    .blog-detail__related-item-title {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: #f39c12;
      font-weight: bold;
      line-height: 1.3;
    }

    .blog-detail__related-item-summary {
      font-size: 0.9rem;
      color: #cccccc;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .blog-detail__article {
        padding: 1.5rem;
        margin: 0 1rem;
      }

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

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

      .blog-detail__content h2 {
        font-size: 1.6rem;
        margin-top: 25px;
        margin-bottom: 12px;
      }

      .blog-detail__content h3 {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 10px;
      }

      .blog-detail__related-posts {
        margin: 2rem 1rem 0 1rem;
        padding: 1.5rem;
      }

      .blog-detail__related-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
      }

      .blog-detail__related-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .blog-detail__article {
        padding: 1rem;
        margin: 0 0.5rem;
      }

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

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

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

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

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

      .blog-detail__content h2 {
        font-size: 1.4rem;
        margin-top: 20px;
        margin-bottom: 10px;
      }

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

      .blog-detail__share {
        flex-direction: column;
        gap: 0.8rem;
      }

      .blog-detail__share-label {
        margin-right: 0;
        margin-bottom: 0.5rem;
      }

      .blog-detail__share-button {
        width: 100%;
      }

      .blog-detail__related-posts {
        margin: 1.5rem 0.5rem 0 0.5rem;
        padding: 1rem;
      }

      .blog-detail__related-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
      }

      .blog-detail__related-item-title {
        font-size: 1.1rem;
      }

      .blog-detail__related-item-summary {
        font-size: 0.85rem;
      }
    }