/**
 * Post Category EN – Layout overrides (design matches post-category.html exactly).
 * Tailwind handles layout; this file adds line-clamp and page-specific body font.
 *
 * @package Chromatic_Medical
 */

.post-category-en-page {
    font-family: "Public Sans", sans-serif;
}

.post-category-en-page .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-category-en-page .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.post-category-en-page .scrollbar-hide::-webkit-scrollbar {
    display: none;
}
