:root {
      --blog-detail-primary-text-color: #333333;
      --blog-detail-secondary-text-color: #7f8c8d;
      --blog-detail-heading-color: #2c3e50;
      --blog-detail-background-color: #f9f9f9;
      --blog-detail-card-background-color: #ffffff;
      --blog-detail-accent-color: #007bff;
      --blog-detail-accent-hover-color: #0056b3;
      --blog-detail-keyword-bg: #ecf0f1;
      --blog-detail-keyword-text: #34495e;
    }

    .blog-detail {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: var(--blog-detail-background-color);
      color: var(--blog-detail-primary-text-color);
      font-family: 'Arial', sans-serif;
    }

    .blog-detail__post {
      max-width: 800px;
      margin: 0 auto;
      padding: 30px;
      background-color: var(--blog-detail-card-background-color);
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

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

    .blog-detail__title {
      font-size: 38px;
      color: var(--blog-detail-heading-color);
      font-weight: bold;
      line-height: 1.2;
      margin-bottom: 15px;
    }

    .blog-detail__meta {
      font-size: 14px;
      color: var(--blog-detail-secondary-text-color);
      margin-top: 15px;
    }

    .blog-detail__date {
      display: block;
      margin-bottom: 10px;
    }

    .blog-detail__keywords {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 10px;
    }

    .blog-detail__keywords-label {
      font-weight: bold;
      margin-right: 5px;
      color: var(--blog-detail-heading-color);
    }

    .blog-detail__keyword {
      background-color: var(--blog-detail-keyword-bg);
      color: var(--blog-detail-keyword-text);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 13px;
      white-space: nowrap;
    }

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

    .blog-detail__content {
      font-size: 17px;
      line-height: 1.7;
      color: var(--blog-detail-primary-text-color);
    }

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

    .blog-detail__content h2 {
      font-size: 28px;
      color: var(--blog-detail-heading-color);
      margin-top: 35px;
      margin-bottom: 18px;
      font-weight: bold;
      line-height: 1.3;
    }

    .blog-detail__content h3 {
      font-size: 24px;
      color: var(--blog-detail-heading-color);
      margin-top: 28px;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.4;
    }

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

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

    .blog-detail__content strong {
      font-weight: bold;
      color: var(--blog-detail-heading-color);
    }

    .blog-detail__content em {
      font-style: italic;
    }

    .blog-detail__content blockquote {
      border-left: 4px solid var(--blog-detail-accent-color);
      padding-left: 20px;
      margin: 25px 0;
      font-style: italic;
      color: var(--blog-detail-secondary-text-color);
    }

    .blog-detail__content a {
      color: var(--blog-detail-accent-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-detail__content a:hover {
      color: var(--blog-detail-accent-hover-color);
      text-decoration: underline;
    }

    .blog-detail__content img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 25px auto;
      border-radius: 8px;
    }

    .blog-detail__related-posts {
      max-width: 800px;
      margin: 60px auto 40px auto;
      padding: 0 20px;
    }

    .blog-detail__related-title,
    .blog-detail__social-title {
      text-align: center;
      font-size: 28px;
      color: var(--blog-detail-heading-color);
      margin-bottom: 30px;
      font-weight: bold;
    }

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

    .blog-detail__related-item {
      display: block;
      text-decoration: none;
      color: var(--blog-detail-primary-text-color);
      background-color: var(--blog-detail-card-background-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .blog-detail__related-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }

    .blog-detail__related-item-title {
      padding: 15px;
      font-size: 18px;
      font-weight: bold;
      line-height: 1.4;
      color: var(--blog-detail-heading-color);
    }

    .blog-detail__social-share {
      max-width: 800px;
      margin: 40px auto 0 auto;
      padding: 0 20px;
    }

    .blog-detail__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .blog-detail__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 50px;
      color: #ffffff;
      text-decoration: none;
      font-weight: bold;
      min-width: 120px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .blog-detail__social-link:hover {
      transform: translateY(-2px);
    }

    .blog-detail__social-link--facebook {
      background-color: #1877f2;
    }

    .blog-detail__social-link--facebook:hover {
      background-color: #166fe5;
    }

    .blog-detail__social-link--twitter {
      background-color: #1da1f2;
    }

    .blog-detail__social-link--twitter:hover {
      background-color: #1a93e6;
    }

    .blog-detail__social-link--whatsapp {
      background-color: #25d366;
    }

    .blog-detail__social-link--whatsapp:hover {
      background-color: #1faf58;
    }

    .blog-detail__social-link--telegram {
      background-color: #0088cc;
    }

    .blog-detail__social-link--telegram:hover {
      background-color: #007bb5;
    }

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

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

      .blog-detail__content {
        font-size: 16px;
        line-height: 1.6;
      }

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

      .blog-detail__content h3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 12px;
      }

      .blog-detail__cover {
        max-height: 300px;
        margin-top: 20px;
        margin-bottom: 25px;
      }

      .blog-detail__related-title,
      .blog-detail__social-title {
        font-size: 24px;
        margin-bottom: 25px;
      }

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

      .blog-detail__related-posts,
      .blog-detail__social-share {
        margin-left: 15px;
        margin-right: 15px;
      }

      .blog-detail__social-links {
        flex-direction: column;
        align-items: center;
      }

      .blog-detail__social-link {
        width: 80%;
        max-width: 250px;
      }
    }

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

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

      .blog-detail__keyword {
        font-size: 12px;
        padding: 4px 10px;
      }

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

      .blog-detail__content h2 {
        font-size: 22px;
      }

      .blog-detail__content h3 {
        font-size: 18px;
      }

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