/* Blog Articles Mobile */



@media (max-width: 768px) {

  /* Tag Display responsive */
  .tag-display {
    margin: 2rem 0 1.5rem;
    padding: 0 16px;
    flex-wrap: wrap;
  }

  .selected-tag {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .clear-tag {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .blog-pagination {
    flex-wrap: wrap;
    gap: 12px;
  }

  .pagination-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Tags responsive */
  .tags-section {
    margin: 30px 0 40px;
    padding: 0 16px;
  }

  .tags-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .tags-container {
    gap: 8px;
    justify-content: flex-start;
  }

  .tag-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .article-tags {
    gap: 6px;
    margin: 8px 0;
  }

  .article-tag {
    padding: 3px 10px;
    font-size: 0.7rem;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-post {
        padding: 100px 20px 70px;
    }

    .container {
        max-width: 900px;
    }

    .post-header {
        margin-bottom: 50px;
    }

    .breadcrumb {
        justify-content: center;
        margin-bottom: 24px;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .blog-post {
        padding: 100px 16px 60px;
    }

    .container {
        max-width: 100%;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
        margin: 36px 0 20px;
    }

    .post-content h3 {
        font-size: 1.25rem;
        margin: 28px 0 16px;
    }

    .post-content p {
        margin-bottom: 20px;
    }

    .post-content ul,
    .post-content ol {
        margin: 20px 0;
        padding-left: 24px;
    }

    .post-content blockquote {
        margin: 24px 0;
        padding: 16px 20px;
    }

    /* Responsive Table Styles */
    .post-content table {
        font-size: 0.8rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    .post-content table th,
    .post-content table td {
        padding: 8px 10px;
        min-width: 80px;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 20px;
    }

    .share-buttons {
        align-items: center;

    }

    .share-button {    
        text-align: center;
    }

    .post-footer {
        margin-top: 60px;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .blog-post {
        padding: 80px 12px 50px;
    }

    .post-title {
        font-size: 35px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left;
    }

    .post-meta{
        text-align: left;
        margin-bottom: 70px;
    }

    .post-tags .tag {
        font-size: 0.85rem;
        padding: 5px 12px;
    }


    .post-header {
        margin-bottom: 40px;
    }

    .breadcrumb {
        margin-bottom: 60px;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 16px;
    }


    .share-buttons {
        gap: 12px;
    }

    .share-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .post-footer {
        margin-top: 50px;
        padding-top: 25px;
    }

    .share-prompt {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    /* Enhanced Responsive Table Styles for Small Screens */
    .post-content table {
        font-size: 0.7rem;
        margin: 20px -12px;
        width: calc(100% + 24px);
    }

    .post-content table th,
    .post-content table td {
        padding: 6px 8px;
        min-width: 60px;
    }
}
