/**
 * NGR News Module styles
 */
.ngr-news-wrapper {
    --ngr-primary: #a25439;
    --ngr-primary-dark: #8a3a1f;
    --ngr-primary-light: #c99d61;
    --ngr-secondary: #aa101a;
    --ngr-bg: #faf8f5;
    --ngr-surface: #ffffff;
    --ngr-text: #1a1a1a;
    --ngr-text-light: #6b6b6b;
    --ngr-border: #e8e5e0;
    --ngr-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --ngr-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --ngr-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --ngr-radius-sm: 8px;
    --ngr-radius-md: 16px;
    --ngr-radius-lg: 24px;
    --ngr-transition: all 0.3s ease;
    --ngr-sidebar-width: 320px;
    margin-top: -20px;
}

.ngr-news-wrapper,
.ngr-news-wrapper .ngr-main,
.ngr-news-wrapper .ngr-container {
    overflow: visible !important;
}

.ngr-news-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ngr-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.ngr-main {
    padding: 60px 0;
}

.ngr-grid {
    display: flex !important;
    gap: 60px;
    align-items: flex-start !important;
    position: relative;
}

.ngr-content {
    flex: 1;
    min-width: 0;
}

.ngr-header {
    background: linear-gradient(135deg, var(--ngr-bg) 0%, #fff 100%);
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--ngr-border);
}

.ngr-header-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ngr-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ngr-header-description {
    font-size: 1.125rem;
    color: var(--ngr-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ngr-breadcrumbs {
    background: var(--ngr-surface);
    border-bottom: 1px solid var(--ngr-border);
    padding: 12px 0;
}

.ngr-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.ngr-breadcrumbs-item {
    font-size: 0.875rem;
}

.ngr-breadcrumbs-link {
    color: var(--ngr-primary);
    text-decoration: none;
}

.ngr-breadcrumbs-link:hover {
    text-decoration: underline;
}

.ngr-breadcrumbs-current {
    color: var(--ngr-text-light);
}

.ngr-breadcrumbs-sep {
    color: var(--ngr-border);
    margin: 0 4px;
}

.ngr-hero-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.ngr-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--ngr-bg);
    border: 1px solid var(--ngr-border);
    border-radius: 40px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ngr-text);
    text-decoration: none;
    transition: var(--ngr-transition);
}

.ngr-category-pill:hover,
.ngr-category-pill.ngr-active {
    background: var(--ngr-primary);
    border-color: var(--ngr-primary);
    color: white;
}

.ngr-category-count {
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ngr-category-pill:hover .ngr-category-count,
.ngr-category-pill.ngr-active .ngr-category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.ngr-sidebar {
    position: sticky;
    top: 120px;
    width: var(--ngr-sidebar-width);
    flex-shrink: 0;
    align-self: flex-start;
}

.ngr-widget {
    background: var(--ngr-surface);
    border-radius: var(--ngr-radius-md);
    padding: 28px;
    margin-bottom: 32px;
    box-shadow: var(--ngr-shadow-sm);
    border: 1px solid var(--ngr-border);
}

.ngr-widget:last-child {
    margin-bottom: 0;
}

.ngr-widget-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ngr-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ngr-primary-light);
    display: inline-block;
}

/* Search Form */
.ngr-search-form {
    display: flex;
    gap: 8px;
    width: 100%;
}

.ngr-search-form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--ngr-border);
    border-radius: var(--ngr-radius-sm);
    font-size: 0.875rem;
    outline: none;
    transition: var(--ngr-transition);
}

.ngr-search-form input[type="search"]:focus {
    border-color: var(--ngr-primary);
}

.ngr-search-form button {
    padding: 12px 20px;
    background: var(--ngr-primary);
    color: white;
    border: none;
    border-radius: var(--ngr-radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--ngr-transition);
    white-space: nowrap;
}

.ngr-search-form button:hover {
    background: var(--ngr-primary-dark);
}

/* Categories Widget (scrollable list only) */
.ngr-categories-widget {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.ngr-categories-widget::-webkit-scrollbar {
    width: 6px;
}

.ngr-categories-widget::-webkit-scrollbar-track {
    background: var(--ngr-border);
    border-radius: 4px;
}

.ngr-categories-widget::-webkit-scrollbar-thumb {
    background: var(--ngr-primary-light);
    border-radius: 4px;
}

.ngr-categories-widget::-webkit-scrollbar-thumb:hover {
    background: var(--ngr-primary);
}

.ngr-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ngr-categories-item {
    margin-bottom: 8px;
}

.ngr-categories-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--ngr-text);
    text-decoration: none;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--ngr-border);
    transition: var(--ngr-transition);
    gap: 12px;
}

.ngr-categories-link:hover {
    color: var(--ngr-primary);
    padding-left: 8px;
}

.ngr-categories-link.ngr-active {
    color: var(--ngr-primary);
    font-weight: 700;
}

.ngr-categories-count {
    color: var(--ngr-text-light);
    font-size: 0.75rem;
    background: var(--ngr-bg);
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.ngr-categories-children {
    list-style: none;
    margin-left: 20px;
    padding-left: 0;
}

/* Scroll Hint */
.ngr-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--ngr-primary);
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed var(--ngr-primary-light);
    transition: opacity 0.3s ease;
}

.ngr-scroll-hint.ngr-hidden {
    display: none;
}

.ngr-scroll-hint svg {
    animation: ngr-bounce 1.5s infinite;
}

@keyframes ngr-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.ngr-featured {
    background: var(--ngr-surface);
    border-radius: var(--ngr-radius-lg);
    overflow: hidden;
    box-shadow: var(--ngr-shadow-md);
    margin-bottom: 50px;
    transition: var(--ngr-transition);
}

.ngr-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--ngr-shadow-lg);
}

.ngr-featured-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--ngr-bg);
}

.ngr-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ngr-featured:hover .ngr-featured-image img {
    transform: scale(1.05);
}

.ngr-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--ngr-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.ngr-featured-content {
    padding: 32px;
}

.ngr-featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--ngr-text-light);
}

.ngr-featured-category a {
    color: var(--ngr-primary);
    text-decoration: none;
    font-weight: 600;
}

.ngr-featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.ngr-featured-title a {
    color: var(--ngr-text);
    text-decoration: none;
}

.ngr-featured-title a:hover {
    color: var(--ngr-primary);
}

.ngr-featured-excerpt {
    color: var(--ngr-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.ngr-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ngr-card {
    background: var(--ngr-surface);
    border-radius: var(--ngr-radius-md);
    overflow: hidden;
    transition: var(--ngr-transition);
    box-shadow: var(--ngr-shadow-sm);
}

.ngr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ngr-shadow-md);
}

.ngr-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ngr-bg);
    position: relative;
}

.ngr-card-image a {
    display: block;
    height: 100%;
}

.ngr-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ngr-card:hover .ngr-card-image img {
    transform: scale(1.05);
}

.ngr-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ngr-bg) 0%, #f0ece5 100%);
    gap: 12px;
}

.ngr-no-image svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.ngr-no-image span {
    font-size: 0.75rem;
    color: var(--ngr-text-light);
    font-weight: 500;
}

.ngr-card-content {
    padding: 24px;
}

.ngr-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.75rem;
}

.ngr-card-category a {
    color: var(--ngr-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ngr-card-date {
    color: var(--ngr-text-light);
}

.ngr-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.ngr-card-title a {
    color: var(--ngr-text);
    text-decoration: none;
}

.ngr-card-title a:hover {
    color: var(--ngr-primary);
}

.ngr-card-excerpt {
    font-size: 0.875rem;
    color: var(--ngr-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ngr-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--ngr-border);
}

.ngr-read-more {
    color: var(--ngr-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.ngr-read-more:hover {
    gap: 10px;
}

.ngr-pagination {
    margin-top: 50px;
    text-align: center;
}

.ngr-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    margin: 0 4px;
    background: var(--ngr-surface);
    border: 1px solid var(--ngr-border);
    border-radius: 10px;
    color: var(--ngr-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--ngr-transition);
}

.ngr-pagination .page-numbers:hover,
.ngr-pagination .page-numbers.current {
    background: var(--ngr-primary);
    border-color: var(--ngr-primary);
    color: white;
}

.ngr-pagination .prev,
.ngr-pagination .next {
    padding: 0 18px;
}

.ngr-no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--ngr-surface);
    border-radius: var(--ngr-radius-md);
}

.ngr-no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.ngr-no-results h3 {
    margin-bottom: 12px;
}

.ngr-no-results p {
    color: var(--ngr-text-light);
    margin-bottom: 8px;
}

.ngr-single-header {
    background: linear-gradient(135deg, var(--ngr-bg) 0%, var(--ngr-surface) 100%);
    padding: 50px 0 40px;
    text-align: center;
}

.ngr-single-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ngr-single-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ngr-bg);
    color: var(--ngr-primary);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ngr-single-category:hover {
    background: var(--ngr-primary);
    color: white;
}

.ngr-single-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--ngr-text);
    margin-bottom: 20px;
}

.ngr-single-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--ngr-text-light);
}

.ngr-single-featured {
    margin: 40px auto;
    max-width: 900px;
    border-radius: var(--ngr-radius-lg);
    overflow: hidden;
}

.ngr-single-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.ngr-single-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 60px;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ngr-text);
}

.ngr-single-content h2 {
    font-size: 1.75rem;
    margin: 1.5em 0 0.5em;
}

.ngr-single-content h3 {
    font-size: 1.375rem;
    margin: 1.5em 0 0.5em;
}

.ngr-single-content p {
    margin-bottom: 1.5em;
}

.ngr-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--ngr-radius-md);
    margin: 1.5em 0;
}

.ngr-single-content blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    background: var(--ngr-bg);
    border-left: 4px solid var(--ngr-primary);
    font-style: italic;
    border-radius: var(--ngr-radius-md);
}

.ngr-single-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 24px 0;
    border-top: 1px solid var(--ngr-border);
}

.ngr-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.ngr-tag {
    padding: 6px 14px;
    background: var(--ngr-bg);
    color: var(--ngr-text-light);
    border-radius: 30px;
    font-size: 0.8rem;
    text-decoration: none;
}

.ngr-tag:hover {
    background: var(--ngr-primary);
    color: white;
}

.ngr-related-posts {
    margin-top: 40px;
}

.ngr-related-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.ngr-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ngr-share-section {
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--ngr-border);
    border-bottom: 1px solid var(--ngr-border);
}

.ngr-share-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ngr-text-light);
    margin-bottom: 16px;
}

.ngr-share-label svg {
    color: var(--ngr-primary);
}

.ngr-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ngr-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.ngr-share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.ngr-share-btn:hover::before {
    width: 120px;
    height: 120px;
}

.ngr-share-btn svg {
    width: 16px;
    height: 16px;
}

.ngr-share-facebook {
    background: #4267B2;
    color: white;
}
.ngr-share-facebook:hover {
    background: #365899;
}

.ngr-share-linkedin {
    background: #0077B5;
    color: white;
}
.ngr-share-linkedin:hover {
    background: #00669c;
}

.ngr-share-whatsapp {
    background: #25D366;
    color: white;
}
.ngr-share-whatsapp:hover {
    background: #20b859;
}

.ngr-share-copy {
    background: var(--ngr-bg);
    border: 1px solid var(--ngr-border);
    color: var(--ngr-text);
}
.ngr-share-copy:hover {
    background: var(--ngr-primary);
    border-color: var(--ngr-primary);
    color: white;
}

.ngr-share-copied {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
}

.ngr-category-header,
.ngr-tag-header,
.ngr-date-header {
    background: linear-gradient(135deg, var(--ngr-bg) 0%, var(--ngr-surface) 100%);
    padding: 50px 0 40px;
    border-bottom: 1px solid var(--ngr-border);
}

.ngr-category-info,
.ngr-tag-header,
.ngr-date-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ngr-category-breadcrumb-info {
    font-size: 0.875rem;
    color: var(--ngr-primary);
    margin-bottom: 12px;
}

.ngr-parent-category {
    color: var(--ngr-primary);
    text-decoration: none;
}

.ngr-parent-category:hover {
    text-decoration: underline;
}

.ngr-category-sep {
    color: var(--ngr-text-light);
    margin: 0 4px;
}

.ngr-category-title,
.ngr-tag-title,
.ngr-date-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ngr-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ngr-category-description,
.ngr-tag-description {
    font-size: 1rem;
    color: var(--ngr-text-light);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.ngr-category-stats,
.ngr-tag-stats,
.ngr-date-stats {
    margin-top: 16px;
}

.ngr-category-posts-count,
.ngr-tag-posts-count,
.ngr-date-posts-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--ngr-primary-light);
    color: white;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ngr-tag-icon,
.ngr-date-icon {
    margin-bottom: 16px;
}

.ngr-tag-icon svg,
.ngr-date-icon svg {
    color: var(--ngr-primary);
}

.ngr-search-header {
    background: linear-gradient(135deg, var(--ngr-bg) 0%, var(--ngr-surface) 100%);
    padding: 50px 0 40px;
    text-align: center;
}

.ngr-search-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.ngr-search-query {
    color: var(--ngr-primary);
}

.ngr-search-count {
    color: var(--ngr-text-light);
    margin-bottom: 30px;
}

.ngr-search-form-large {
    max-width: 600px;
    margin: 0 auto;
}

.ngr-search-form-large form {
    display: flex;
    gap: 10px;
}

.ngr-search-form-large input[type="search"] {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--ngr-border);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.ngr-search-form-large input[type="search"]:focus {
    border-color: var(--ngr-primary);
}

.ngr-search-form-large button {
    padding: 14px 28px;
    background: var(--ngr-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.ngr-error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.ngr-error-content {
    max-width: 480px;
    margin: 0 auto;
}

.ngr-error-icon {
    margin-bottom: 16px;
}

.ngr-error-icon svg {
    color: var(--ngr-primary-light);
}

.ngr-error-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ngr-text);
    margin-bottom: 8px;
}

.ngr-error-description {
    font-size: 0.9rem;
    color: var(--ngr-text-light);
    margin-bottom: 20px;
}

.ngr-error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.ngr-error-search .ngr-search-form {
    max-width: 360px;
    margin: 0 auto;
}

.ngr-error-search .ngr-search-form input[type="search"] {
    padding: 10px 14px;
    font-size: 0.85rem;
}

/* Tablet Landscape (≤1200px) */
@media (max-width: 1200px) {
    .ngr-sidebar {
        width: 280px;
    }
    
    .ngr-grid {
        gap: 40px;
    }
}

/* Tablet Portrait (≤992px) */
@media (max-width: 992px) {
    .ngr-grid {
        flex-direction: column;
    }
    
    .ngr-sidebar {
        position: static;
        width: 100%;
        margin-top: 40px;
    }
    
    .ngr-categories-widget {
        max-height: 300px;
    }
    
    .ngr-single-title {
        font-size: 2rem;
    }
    
    .ngr-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Large (≤768px) */
@media (max-width: 768px) {
    .ngr-container {
        padding: 0 16px;
    }
    
    .ngr-header {
        padding: 40px 0 30px;
    }
    
    .ngr-header-title {
        font-size: 2rem;
    }
    
    .ngr-header-description {
        font-size: 1rem;
    }
    
    .ngr-featured-content {
        padding: 24px;
    }
    
    .ngr-featured-title {
        font-size: 1.4rem;
    }
    
    .ngr-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .ngr-single-title {
        font-size: 1.75rem;
    }
    
    .ngr-widget {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .ngr-category-title,
    .ngr-tag-title,
    .ngr-date-title {
        font-size: 1.8rem;
    }
    
    .ngr-search-title {
        font-size: 1.5rem;
    }
    
    .ngr-search-form-large form {
        flex-direction: column;
    }
    
    .ngr-search-form-large button {
        width: 100%;
    }
    
    .ngr-share-btn span {
        display: none;
    }
    
    .ngr-share-btn {
        padding: 10px;
    }
    
    .ngr-share-label {
        justify-content: center;
    }
    
    .ngr-share-buttons {
        justify-content: center;
    }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
    .ngr-category-title,
    .ngr-tag-title,
    .ngr-date-title,
    .ngr-error-title {
        font-size: 1.5rem;
    }
    
    .ngr-category-description,
    .ngr-tag-description {
        font-size: 0.9rem;
    }
    
    .ngr-search-form {
        flex-direction: column;
    }
    
    .ngr-search-form button {
        width: 100%;
    }
    
    .ngr-widget {
        padding: 16px;
    }
    
    .ngr-share-buttons {
        gap: 8px;
    }
}

body.ngr-news-archive,
body.ngr-single-news,
body.ngr-search-news {
    overflow-x: visible !important;
}
