/*
Theme Name: Premium Nepali News
Theme URI: https://cnmnepal.com
Author: Ritesh Phuyal
Description: Fully Responsive, highly optimized, secured layout for high-traffic Nepali News Portal with a custom Dashboard Ad Manager and smart Sticky Navigation.
Version: 1.2.0
License: GNU GPLv2 or later
Text Domain: premium-nepali-news
*/

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Mukta', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}
a {
    color: #dc3545;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #6F6BD6;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Structural Layout Grid */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-12 { width: 100%; padding: 0 15px; }
.col-md-8 { width: 66.666%; padding: 0 15px; }
.col-md-4 { width: 33.333%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }

/* Header & Ticker Styling */
.top-ticker-bar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
}
.ticker-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.geo-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.geo-date-badge i.dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #dc3545;
}
.global-local i.dashicons {
    color: #00aced;
}
.main-header-branding {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.header-brand-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   📌 नेभिगेसन मेनु मात्र स्टिकी र रङ्ग परिवर्तन (Nav Menu Only Sticky)
   ========================================================================== */
.main-navigation-wrapper {
    background: #dc3545;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
    padding: 2px 0;
}
.main-navigation-wrapper.scrolled-sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #111111 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding: 0;
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.main-navigation-wrapper.scrolled-sticky ul li a:hover {
    background: #dc3545;
}
.nav-container ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.nav-container ul li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-container ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-container ul li a:hover::after,
.nav-container ul li.current-menu-item a::after {
    width: 100%;
}

/* Hero & Magazine View */
.main-feature-story {
    margin-bottom: 25px;
}
.story-meta-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 15px;
    line-height: 1.3;
}
.story-meta-title a, 
.grid-item-card h4 a,
.trending-list-items-box-wrapper li a {
    position: relative;
    color: #111;
    transition: color 0.25s ease-in-out;
}
.story-meta-title a:hover, 
.grid-item-card h4 a:hover,
.trending-list-items-box-wrapper li a:hover {
    color: #dc3545 !important;
}

/* ==========================================================================
   ✨ प्रिमियम होभर इफेक्ट्स र एनिमेसनहरू (Premium Hover Effects)
   ========================================================================== */
.feature-thumb-wrap, .card-thumb-wrap {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
}
.feature-thumb-wrap img, .card-thumb-wrap img {
    transition: transform 0.6s cubic-bezier(0.15, 0.75, 0.5, 1), filter 0.6s ease;
}
.feature-thumb-wrap:hover img, .card-thumb-wrap:hover img {
    transform: scale(1.06);
    filter: brightness(90%);
}
.trending-list-items-box-wrapper li {
    padding: 8px;
    border-radius: 4px;
    transition: background 0.25s ease, padding-left 0.25s ease;
}
.trending-list-items-box-wrapper li:hover {
    background: #fdf1f2;
    padding-left: 12px;
}
.trending-list-items-box-wrapper li:hover .badge-num {
    background: #dc3545 !important;
}
.ad-slot-box {
    transition: all 0.3s ease;
}
.ad-slot-box:hover {
    border-color: #dc3545 !important;
    background-color: #fff5f6 !important;
    color: #b21f2d !important;
}

/* Category Grid Blocks */
.category-block-section {
    margin-top: 30px;
}
.category-section-heading {
    border-bottom: 3px solid #000;
    margin-bottom: 20px;
    position: relative;
}
.category-section-heading h2 {
    background: #dc3545;
    color: #fff;
    display: inline-block;
    padding: 5px 20px;
    font-size: 22px;
    margin: 0;
}
.grid-item-card {
    margin-bottom: 20px;
}
.grid-item-card h4 {
    font-size: 19px;
    margin-top: 10px;
}

/* Social & Media Extra Elements */
.header-social-icons-wrapper a {
    transition: transform 0.2s ease, color 0.2s ease;
}
.header-social-icons-wrapper a:hover {
    transform: scale(1.2);
}
.header-social-icons-wrapper a[title="Facebook"]:hover { color: #3b5998 !important; }
.header-social-icons-wrapper a[title="X (Twitter)"]:hover { color: #000000 !important; }
.header-social-icons-wrapper a[title="YouTube"]:hover { color: #ff0000 !important; }

.pnn-social-share-box-wrap a {
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.pnn-social-share-box-wrap a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.pnn-single-full-img {
    transition: transform 0.5s ease;
}
.article-featured-image-wrapper:hover .pnn-single-full-img {
    transform: scale(1.01);
}

/* Tables & Cards */
.table th, .table td {
    border-top: 1px solid #eee;
}

/* ==========================================================================
   📱 प्रिमियम रेस्पोन्सिभ र मोबाइल-अप्टिमाइज्ड मिडिया कोवेरीहरू
   ========================================================================== */
@media (max-width: 992px) {
    body { font-size: 17px; }
    .container { max-width: 95%; }
    .site-logo h1 { font-size: 34px; }
    .story-meta-title { font-size: 26px; }
}

@media (max-width: 768px) {
    .row { flex-direction: column; }
    .col-md-8, .col-md-4, .col-md-6 { width: 100% !important; padding: 0 10px; }
    .ticker-flex { flex-direction: column; text-align: center; gap: 5px; }
    .ticker-live-meta, .breaking-news-headline { width: 100%; text-align: center; font-size: 14px; }
    .header-brand-flex { flex-direction: column; text-align: center; }
    .site-logo { margin-bottom: 15px; }
    .header-ad-placement-wrap { width: 100%; text-align: center; }
    .nav-container ul { display: flex; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
    .nav-container ul li a { padding: 10px 15px; font-size: 16px; }
    .story-meta-title { font-size: 22px; margin-top: 10px; }
    .article-main-title { font-size: 28px !important; }
    .article-body-content { font-size: 18px !important; line-height: 1.7; }
    .ad-slot-box { min-height: 60px !important; font-size: 14px; padding: 10px !important; }
    .profile-card { margin-bottom: 20px; }
}

@media (max-width: 480px) {
    .site-logo h1 { font-size: 28px; }
    .nav-container ul li a { padding: 8px 12px; font-size: 15px; }
    .category-section-heading h2 { font-size: 18px; padding: 4px 15px; }
}
/* 📰 समाचार विवरण (Single Post Paragraphs) को परफेक्ट एलाइनमेन्ट फिक्स */
.single-post .entry-content p,
.single .post-content p,
.timeline-post-item p {
    text-align: justify !important; /* हरफका दुवै किनाराहरू एउटै सिधा लाइनमा मिलाउने मुख्य लोजिक */
    text-justify: inter-word; /* शब्दहरू बीचको दुरी प्राकृतिक र सुन्दर देखाउने */
    line-height: 1.8 !important; /* नेपाली फन्ट पढ्न सजिलो बनाउन हरफहरू बीचको दूरी */
    font-size: 18px !important; /* प्रिमियम अनलाइन मिडिया स्तरको अक्षरको साइज */
    margin-bottom: 20px !important; /* एउटा प्याराग्राफ सकिएपछि अर्को सुरु हुन अघिको खाली ठाउँ */
    color: #222222 !important; /* आँखालाई नथाक्ने गाढा कालो रङ्ग */
}

/* मोबाइल स्क्रिनका लागि पनि परफेक्ट एलाइनमेन्ट सुरक्षित गर्ने */
@media (max-width: 768px) {
    .single-post .entry-content p,
    .single .post-content p {
        font-size: 16px !important; /* मोबाइलमा पढ्न सजिलो फन्ट साइज */
        line-height: 1.7 !important;
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* ==========================================================================
   Premium Nepali News - Component Styles
   All former template inline styles live here.
   ========================================================================== */

/* Utility spacing */
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.pt-3 { padding-top: 1rem; }
.text-center { text-align: center; }
.text-muted { color: #666; }
.text-secondary { color: #555; }

/* Header */
.header-brand-flex {
    margin-left: -15px;
    margin-right: -15px;
}
.site-logo {
    line-height: 0;
    padding: 0 15px;
}
.site-logo a {
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
}
.site-logo img {
    width: auto;
    height: auto;
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
}
.header-ad-placement-wrap {
    text-align: right;
}
.header-social-icons-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}
.header-social-icons-wrapper a {
    color: #fff;
    display: inline-flex;
    align-items: center;
}
.header-social-icons-wrapper .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Hero */
.hero-news-grid-wrapper {
    min-width: 0;
}
.feature-placeholder,
.card-placeholder,
.category-post-placeholder {
    display: block;
    width: 100%;
    min-height: 220px;
    background: #f1f1f1;
}
.feature-placeholder {
    min-height: 420px;
}
.card-placeholder {
    min-height: 180px;
}
.category-post-placeholder {
    min-height: 180px;
}
.feature-thumb-wrap img,
.card-thumb-wrap img {
    width: 100%;
    height: auto;
}
.story-excerpt-desc {
    margin-top: 0.75rem;
    color: #666;
}
.hero-sub-story h3 {
    font-size: 19px;
    line-height: 1.45;
    margin-top: 10px;
}
.sub-stories-grid {
    row-gap: 20px;
}

/* Categories */
.category-block-section {
    margin-top: 30px;
}
.category-section-heading {
    border-bottom: 3px solid #000;
    margin-bottom: 20px;
    position: relative;
}
.category-section-heading h2 {
    background: #dc3545;
    color: #fff;
    display: inline-block;
    padding: 5px 20px;
    font-size: 22px;
    margin: 0;
}
.category-section-heading h2 a {
    color: #fff;
}
.category-description {
    margin: 10px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}
.category-post-card {
    height: 100%;
}
.category-post-image-link {
    display: block;
}
.category-post-image {
    width: 100%;
    height: auto;
}
.category-post-content {
    padding-top: 10px;
}
.category-post-title {
    font-size: 20px;
    line-height: 1.45;
    margin: 0 0 8px;
}
.category-post-title a {
    color: #111;
}
.category-post-title a:hover {
    color: #dc3545;
}
.category-post-meta {
    color: #777;
    font-size: 13px;
    margin-bottom: 6px;
}
.category-post-excerpt {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Sidebar */
.sticky-sidebar-wrapper {
    position: sticky;
    top: 15px;
}
.sidebar-subscription-box {
    background: #fdf1f2;
    border: 1px solid #f5c6cb;
    padding: 25px;
    border-radius: 6px;
    border-left: 5px solid #dc3545;
}
.sidebar-subscription-box h3 {
    margin-top: 0;
    color: #dc3545;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.sidebar-subscription-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.4;
}
.sidebar-subscription-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-subscription-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}
.sidebar-subscription-form button {
    background: #dc3545;
    color: #fff;
    border: 0;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}
.subscription-success {
    color: #198754 !important;
    font-size: 13px !important;
    font-weight: 600;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}
.subscription-error {
    color: #dc3545 !important;
    font-size: 13px !important;
    font-weight: 600;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}
.trending-list-items-box-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
}
.trending-item {
    border-bottom: 1px solid #f1f1f1;
    padding: 0 0 8px;
    margin-bottom: 1rem;
}
.trending-item a {
    color: #222;
    font-weight: 500;
}
.badge-num {
    background: #000;
    color: #fff;
    padding: 2px 8px;
    font-weight: 700;
    margin-right: 5px;
    border-radius: 3px;
}
.badge-num.badge-red {
    background: #dc3545;
}
.video-embed-box-wrapper {
    background: #000;
    padding: 5px;
    border-radius: 4px;
}
.video-placeholder {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #333;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

/* Empty results */
.no-results-content-wrapper {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}
.no-results-content-wrapper h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}
.no-results-content-wrapper p {
    font-size: 16px;
}
.no-results-home-link {
    background: #dc3545;
    color: #fff;
    padding: 10px 25px;
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
}

/* Footer */
.site-main-footer-wrapper-block {
    background: #111;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}
.foot_logo_img {
    display: block;
    max-width: 200px;
}
.foot_credit {
    margin-top: 15px;
    color: #ccc;
    line-height: 1.8;
}
.footer-section-title {
    font-size: 20px;
    border-bottom: 2px solid #dc3545;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.footer-links-list {
    list-style: none;
    line-height: 2;
    padding: 0;
    margin: 0;
}
.footer-links-list a {
    color: #ccc;
}
.footer-social-description {
    color: #bbb;
    font-size: 15px;
    margin-bottom: 10px;
}
.social-icons-wrapper-flex {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    gap: 10px;
}
.footer-social-link {
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
}
.footer-facebook {
    background: #3b5998;
}
.footer-x {
    background: #00aced;
}
.footer-copyright-bottom-row-strip-wrapper {
    border-top: 1px solid #222;
    font-size: 14px;
    text-align: center;
    color: #777;
    margin-top: 1.5rem;
    padding-top: 1rem;
}
.footer-copyright-bottom-row-strip-wrapper p {
    margin: 0;
}

/* Single article */
.article-main-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.article-meta-info {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.article-meta-separator {
    margin: 0 6px;
}
.pnn-social-share-box-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}
.pnn-social-share-box-wrap strong {
    font-size: 16px;
    color: #555;
}
.pnn-social-share-box-wrap a {
    color: #fff;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pnn-social-share-box-wrap .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}
.share-facebook { background: #3b5998; }
.share-x { background: #000; }
.share-whatsapp { background: #25D366; }
.article-body-content {
    font-size: 19px;
    line-height: 1.8;
    text-align: justify;
    color: #222;
}

/* Archive */
.archive-page-header {
    margin-bottom: 25px;
    border-bottom: 3px solid #dc3545;
    padding-bottom: 10px;
}
.archive-page-title {
    font-size: 32px;
    margin: 0;
}
.archive-description {
    color: #666;
    margin-top: 8px;
}
.archive-post-card {
    display: flex;
    gap: 20px;
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.archive-post-thumb {
    flex: 0 0 280px;
}
.archive-post-thumb img {
    width: 100%;
}
.archive-post-content {
    flex: 1;
}
.archive-post-meta {
    color: #777;
    font-size: 13px;
    margin-bottom: 5px;
}
.archive-post-title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.archive-post-title a {
    color: #111;
}
.archive-post-excerpt {
    color: #555;
}
.archive-pagination {
    margin-top: 30px;
}

/* Author dashboard */
.profile-card,
.news-history-box {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.profile-card {
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.author-dashboard-avatar {
    border-radius: 50%;
    border: 3px solid #0056b3;
}
.stats-box {
    background: #e6f0fa;
    padding: 15px;
    border-radius: 4px;
}
.stats-box h4 {
    color: #0056b3;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}
.stats-box span {
    font-size: 14px;
    color: #555;
}
.author-logout-button {
    display: block;
    margin-top: 8px;
    background: #000;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}
.news-history-title {
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    color: #111;
}
.news-history-table-wrap {
    overflow-x: auto;
}
.news-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}
.news-history-table th {
    background: #f1f1f1;
    text-align: left;
    border-bottom: 2px solid #ccc;
    padding: 12px;
}
.news-history-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}
.history-date {
    white-space: nowrap;
    color: #666;
}
.history-title a {
    color: #222;
    text-decoration: none;
}
.post-status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}
.status-published {
    background: #d4edda;
    color: #155724;
}
.status-pending {
    background: #fff3cd;
    color: #856404;
}
.status-draft {
    background: #e2e3e5;
    color: #383d41;
}

/* Admin-ad UI is also styled here because the theme is loaded by the admin page. */
.pnn-ad-manager-page {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
    max-width: 1000px;
}
.pnn-ad-manager-page > h1 {
    border-bottom: 3px solid #dc3545;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.pnn-ad-manager-intro {
    font-size: 14px;
    margin-bottom: 20px;
}
.ad-slot-container {
    border: 1px solid #ddd;
    border-left: 4px solid #dc3545;
    padding: 20px;
    margin-bottom: 25px;
    background: #fafafa;
    border-radius: 4px;
}
.ad-slot-container h3 {
    margin-top: 0;
    color: #111;
    font-size: 18px;
}
.ad-slot-description {
    color: #666;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 15px;
}
.pnn-ad-form-table {
    width: 100%;
}
.pnn-ad-form-table th {
    width: 200px;
    font-weight: 600;
}
.pnn-ad-type-label {
    margin-right: 20px;
}
.pnn-ad-field-help {
    font-size: 11px;
}
.pnn-ad-form-table input.large-text,
.pnn-ad-form-table textarea.large-text {
    width: 100%;
    max-width: 600px;
}
.pnn-ad-form-table textarea.code {
    font-family: monospace;
}
.pnn-ad-save-button {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-weight: 600 !important;
    padding: 5px 25px !important;
    height: auto !important;
}
.ad-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.ad-label {
    font-size: 11px;
    letter-spacing: 1px;
}

/* Writing method meta box */
#pnn-writing-method {
    width: 100%;
}
.pnn-writing-method-description {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
}

/* WordPress widget title */
.widget-title {
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

/* Ad placeholder */
.ad-slot-box {
    padding: 15px;
}

/* Mobile additions */
@media (max-width: 768px) {
    .header-ad-placement-wrap {
        text-align: center;
    }
    .sticky-sidebar-wrapper {
        position: static;
    }
    .archive-post-card {
        flex-direction: column;
    }
    .archive-post-thumb {
        flex-basis: auto;
    }
    .article-main-title {
        font-size: 28px;
    }
    .article-body-content {
        font-size: 18px;
        line-height: 1.7;
    }
    .pnn-social-share-box-wrap {
        align-items: flex-start;
    }
    .pnn-social-share-box-wrap a {
        padding: 6px 10px;
    }
    .profile-card {
        margin-bottom: 20px;
    }
    .pnn-ad-manager-page {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .category-section-heading h2 {
        font-size: 18px;
        padding: 4px 15px;
    }
    .archive-post-title {
        font-size: 21px;
    }
}
