/* 
Theme Name: Astra Child 
Theme URI: https://wpastra.com/ 
Description: Custom Astra Child Theme with Newspaper Job Listing Layout 
Author: Your Name 
Template: astra 
Version: 1.0.0 
*/

/* Hide automatic theme H1 on custom pages */
.page .entry-title,
.single .entry-title {
    display: none !important;
}

/* ============================================
   GLOBAL VARIABLES (KEPT ONCE)
   ============================================ */
:root {
    --primary-blue: #073e95;
    --dark-blue: #0056b3;
    --primary-green: #99fe4b;
    --dark-bg: #212529;
    --light-text: #f8f9fa;
    --main-border: 2px solid #000;
    --content-padding: 10px;
    --yellow-bar: #e1c019;
    --grid-border-color: #000000;
    --yellow-accent: #ffcc00;
    --header-dark-blue: #1c529e;
    --box-border-color: #e0e0e0;
    --light-green: #8efb36;
}

/* ============ GLOBAL RESETS ============ */
* {
    font-family: Arial, Helvetica, sans-serif !important;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif !important;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   MASTER CONTAINER (Header)
   ============================================ */
.page-master-container {
    width: 100%;
    max-width: 980px;
    margin: 10px auto;
    border: var(--main-border);
    border-radius: 8px;
    background: #fff;
    overflow: visible !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 1000px) {
    .page-master-container {
        margin: 5px auto;
        width: 98%;
        border-radius: 6px;
    }
}

@media (max-width: 600px) {
    .page-master-container {
        margin: 0 auto;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* ============================================
   HEADER STYLES
   ============================================ */
.top-bar {
    background: var(--dark-blue);
    padding: 8px 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: bold;
    transition: none !important;
}

.logo-section a:hover {
    color: white !important;
    background-color: transparent !important;
}

.logo-section a:hover span {
    color: white !important;
    background-color: transparent !important;
}

.logo-section a:hover img {
    opacity: 1 !important;
    filter: none !important;
}

.site-header a:hover {
    background-color: transparent !important;
}

.logo-section span {
    transition: none !important;
}

.logo-section img {
    height: 40px;
    width: auto;
}

@media (max-width: 480px) {
    .logo-section img {
        height: 35px;
    }
    
    .logo-section a {
        gap: 5px;
    }
}

.search-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.search-page-link img {
    width: 22px;
    height: 22px;
    filter: invert(1);
}

@media (max-width: 480px) {
    .search-page-link img {
        width: 20px;
        height: 20px;
    }
}

/* ============ CATEGORY BAR ============ */
.category-bar {
    background: var(--dark-bg);
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    border-top: 2px solid var(--yellow-bar);
    border-bottom: 2px solid var(--yellow-bar);
}

.category-bar a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 10px 8px;
    flex: 1 0 auto;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background-color 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-bar a:hover,
.category-bar a:focus {
    background-color: #99fe4b !important;
    outline: none;
}

@media (min-width: 981px) {
    .category-bar a {
        font-size: 14px;
        padding: 10px 5px;
    }
}

@media (max-width: 980px) and (min-width: 769px) {
    .category-bar a {
        flex: 1 0 25%;
        font-size: 13px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .category-bar a {
        flex: 1 0 33.333%;
        font-size: 12px;
        padding: 10px 4px;
    }
}

@media (max-width: 480px) {
    .category-bar a {
        flex: 1 0 50%;
        font-size: 12px;
        padding: 10px 3px;
        white-space: normal;
        line-height: 1.3;
        min-height: 50px;
    }
    
    .category-bar a:nth-child(even) {
        border-right: none;
    }
    
    .category-bar a:nth-child(odd) {
        border-left: none;
    }
}

@media (max-width: 360px) {
    .category-bar a {
        font-size: 11px;
        padding: 8px 2px;
    }
}

/* ============================================
   CONTENT AREA & ACCESSIBILITY (GLOBAL)
   ============================================ */
.content-area {
    padding: 15px;
}

@media (max-width: 768px) {
    .content-area {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 8px;
    }
}

:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer-wrapper {
    background: var(--dark-bg);
    padding: 0;
}

.footer-disclaimer-full-width {
    background-color: #f0f0f0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 12px 0;
}

.footer-content-inner {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

.footer-disclaimer {
    font-size: 12px;
    color: #555;
    line-height: 20px;
}

.footer-disclaimer strong { 
    color: var(--primary-blue); 
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    padding: 8px 4px;
    color: #fff;
}

.footer-column h4 {
    font-size: 12px;
    color: #99fe4b;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 6px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.footer-column a {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    text-decoration: none;
    white-space: nowrap;
    opacity: .85;
    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: #99fe4b;
}

@media (max-width: 980px) {
    .footer-links-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-links-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-links-container {
        grid-template-columns: 1fr;
    }

    .footer-column {
        transition: all 0.2s ease;
    }

    .footer-column h4 {
        background: #333;
        padding: 12px;
        margin: 0;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12px;
        white-space: normal;
    }

    .footer-column h4::after {
        content: '+';
        float: right;
        font-size: 18px;
        color: var(--primary-green);
    }

    .footer-column.open h4::after {
        content: '-';
    }

    .footer-column a {
        display: none;
        padding-left: 12px;
        font-size: 12px;
        white-space: normal;
        line-height: 24px;
    }

    .footer-column.open a {
        display: block;
    }
}

.full-width-copyright-bar {
    background: #fff;
    border-top: 1px solid #ccc;
}

.footer-copyright {
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    color: #000;
}

/* ============================================
   JOB LISTING STYLES (content-job_listing.php)
   ============================================ */
.site-main, 
.site-content,
.main-content-area,
.td-main-page-wrap,
#primary {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.single-job-page-header {
    padding-top: 5px !important; 
    margin-top: 0 !important;
}

h1.job-title-main {
    margin-top: 0 !important; 
}

.entry-content,
.page-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.job-listing-wrapper {
    max-width: 980px; 
    margin: 0 auto;
    padding-right: 10px !important;
    border: none; 
    border-radius: 0; 
    overflow: visible; 
}

.job-entry-mock {
    background-color: #ffffff;
    border: 1px solid var(--grid-border-color);
    margin: 0 0 10px 0; 
    border-radius: 0;
    overflow: hidden; 
    box-shadow: none; 
    position: relative;
    z-index: 20;
}

.job-entry-mock:hover {
    background-color: #fcfcfc; 
}

.job-entry-mock a {
    position: relative;
    z-index: 30;
    pointer-events: auto !important;
}

.job-date-header {
    background: #ffffff;
    color: var(--dark-bg);
    padding: 3px 15px; 
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    text-align: center;
    border-top: none; 
    border-bottom: 1px solid var(--grid-border-color); 
}

.job-columns {
    display: flex;
    align-items: stretch; 
    background-color: #ffffff;
}

.job-left-column {
    flex: 1.2; 
    padding: 15px; 
    border-right: 1px solid var(--grid-border-color); 
    background-color: #ffffff; 
}

.job-main-link {
    font-size: 19px; 
    font-weight: 400;
    color: var(--primary-blue);
    text-decoration: none; 
    line-height: 26px;
    display: block;
    margin-bottom: 3px;
}

.job-main-link:hover {
    color: var(--primary-green);
}

.job-source-location {
    font-size: 14px;
    color: black;
    font-weight: bold;
    margin-top: 5px;
}

.job-right-column {
    flex: 1; 
    padding: 15px;
    background-color: #ffffff; 
}

.position-list {
    list-style-type: disc; 
    margin: 0 0 0 20px; 
    padding: 0;
}

.position-list li {
    font-size: 14px; 
    color: #333;
    line-height: 1.6;
    margin-bottom: 3px; 
    list-style-position: outside;
}

.position-list li::before {
    content: none; 
}

.position-list li::marker {
    color: var(--primary-green);
}

.job-left-column h2 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}

.empty-day-strip {
    border: 1px solid var(--grid-border-color); 
    margin: 0 0 10px 0; 
    border-radius: 0;
    overflow: hidden; 
    background-color: var(--yellow-accent);
    color: var(--dark-bg);
    padding: 3px 15px;
    font-size: 14px;
    font-weight: 700;
    text-align: center; 
    text-transform: uppercase; 
}

@media (max-width: 768px) {
    .job-columns {
        flex-direction: column;
    }
    .job-left-column {
        border-right: none; 
        border-bottom: 1px solid var(--grid-border-color); 
    }
}

/* ============================================
   HOMEPAGE & GLOBAL AD STYLES
   ============================================ */
.homepage-main-title {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: bold;
    border-bottom: 2px solid var(--yellow-bar);
    padding-bottom: 10px;
    margin-top: 0;
}

.intro-section {
    background: #f0f0f0; 
    color: #555; 
    margin: 0px;
    padding: 15px; 
    border-bottom: 1px solid #000;
}

.intro-section p {
    margin: 0;
    line-height: 1.5; 
    font-size: 13px;
}

.intro-section p strong {
    color: var(--primary-blue); 
}

.intro-section a:hover {
    color: black !important;
    background-color: var(--primary-green);
}

.intro-section h1 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--yellow-bar);
    padding-bottom: 10px;
}

.page-layout-wrapper { 
    max-width: 980px; 
    margin: 0 auto; 
    overflow: visible; 
}

/* ============ AD STYLES (GLOBAL) ============ */
.ad-box-fix {
    position: relative;
    z-index: 1;
    overflow: hidden !important;
    background: #fff;
    padding: 10px;
    margin-bottom: 20px;
}

.ad-box-fix ins,
.ad-box-fix iframe {
    position: relative !important;
    z-index: 1 !important;
    max-width: 100%;
}

.ad-box-fix .adsbygoogle {
    pointer-events: auto !important;
}

.ad-label-small { 
    font-size: 10px; 
    color: #aaa; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 5px; 
    text-align: center; 
    letter-spacing: 0.5px;
}

.top-ad-area { 
    width: 100%; 
    text-align: center; 
    padding: 20px 0;
    background: #fff;
}

.left-ad-sidebar { 
    width: 180px; 
    padding: 0;
    text-align: left; 
}

.main-content-flex { 
    display: flex; 
    flex-wrap: wrap; 
    padding: 0; 
    align-items: flex-start;
}

.content-main-box { 
    flex: 1; 
    min-width: 300px; 
    background: #fff; 
    padding: 0 0 10px 15px;
    box-sizing: border-box; 
}

.infeed-ad.ad-box-fix {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    text-align: center;
    clear: both;
}

@media (max-width: 950px) { 
    .left-ad-sidebar { 
        display: none; 
    } 
    .content-main-box { 
        width: 100%; 
        padding: 10px; 
    } 
}

@media (max-width: 600px) {
    .intro-section {
        padding: 12px;
    }
    .intro-section p {
        font-size: 12px;
    }
    .top-ad-area {
        padding: 15px 0;
    }
    .intro-section h1 {
        font-size: 20px;
    }
}

/* ============================================
   SINGLE JOB PAGE STYLES (content-single-job_listing.php)
   ============================================ */
.page-title-wrap, 
.site-content-header, 
.page-header, 
.entry-header {
    background: none !important;
    border: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
}

article.post, 
article.job_listing,
article[itemtype="https://schema.org/CreativeWork"] {
    margin: 0 !important; 
    padding: 0 !important; 
    width: 100% !important; 
    max-width: none !important;
}

#main, 
.site-main,
#primary, 
.content-area {
    margin: 0 !important; 
    padding: 0 !important; 
}

body {
    overflow-x: visible !important; 
    overflow-y: visible !important; 
}

#main, .content-area, .site-main {
    overflow: visible !important;
}

.single-job-details-wrapper-outer {
    border: none !important; 
    margin-top: 0 !important; 
    padding: 10px !important; 
    background-color: #fff !important;
    overflow: visible !important; 
}

.single-job-page-header {
    padding-left: 8px !important;
    padding-right: 8px !important;
    padding-top: 10px !important; 
    padding-bottom: 10px !important; 
    margin: 0 !important;
}

.job-title-main {
    font-size: 32px !important; 
    font-weight: 700;
    line-height: 34px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.single-job-grid-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;  
    align-items: stretch !important; 
    gap: 8px !important;
    margin-bottom: 30px !important;
}

.job-detail-box {
    background-color: #f9f9f9 !important;
    border: 1px solid #000 !important;
    border-radius: 6px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.box-header-dark {
    background-color: var(--header-dark-blue) !important;
    padding: 10px 20px !important;
    border-radius: 6px 6px 0 0 !important;
    flex-shrink: 0 !important;
}

.box-header-dark h3 {
    color: #fff !important;
    font-size: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.location-box p,
.job-application-wrapper {
    padding: 20px !important;
    margin: 0 !important;
    flex-grow: 1 !important;
    font-size: 16px;
}

.job-meta-date-source-flex {
    display: flex !important;
    align-items: center !important;
    padding: 20px !important; 
    margin: 0 !important;
    font-size: 16px;
}

.date-text-only {
    color: #0056b3 !important;
    font-weight: 600 !important;
}

.in-spacer {
    color: #000 !important;
    font-weight: 700;
    margin: 0 6px !important; 
    display: inline-block !important;
}

.source-link-custom {
    color: #0056b3 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.source-link-custom:hover {
    text-decoration: underline !important;
}

.bullet-list {
    list-style-type: disc !important; 
    padding: 10px 20px 20px 40px !important; 
    margin: 0 !important;
}

.bullet-list li {
    font-size: 14px !important;
    line-height: 25px !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    list-style-position: outside !important;
    color: #333 !important;
}

.bullet-list li::marker { 
    color: var(--light-green) !important; 
    font-size: 1.2em !important; 
}

.position-list-single-page,
.location-list-single-page,
.job-keyword-list {
    list-style-type: disc !important;
    padding: 10px 20px 20px 40px !important;
    margin: 0 !important;
    flex-grow: 1 !important; 
}

.share-box {
    text-align: center !important;
}

.social-share-icons {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    padding: 20px !important; 
    margin: auto 0 0 !important; 
}

.social-share-icons a img {
    width: 35px !important;
    height: 35px !important;
    opacity: 1 !important; 
}

.job-advertisement-image {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding: 0 !important;
    text-align: center !important; 
    background-color: transparent !important; 
    border: none !important;
    overflow: visible !important; 
}

.job-advertisement-image img#Contents_AdImage { 
    height: auto !important; 
    display: block !important; 
    margin: 0 auto !important; 
    border: 1px solid var(--box-border-color) !important; 
    cursor: zoom-in !important;
    position: relative !important; 
    transition: all 0.4s ease-in-out !important; 
}

.job-advertisement-image img#Contents_AdImage.is-zoomed {
    max-width: none !important; 
    width: auto !important; 
    height: auto !important; 
    margin: 0 auto !important; 
    position: relative !important;
    transform: none !important;
    z-index: auto !important;
    cursor: zoom-out !important;      
    border: 3px solid var(--primary-blue) !important; 
    overflow: visible !important;
}

.advertisement-note {
    font-style: italic !important;
    font-size: 13px !important;
    color: #777 !important;
    margin-top: 10px !important;
    text-align: center !important;
}

.advertisement-note.top-note {
    margin-bottom: 10px !important;
}

.secondary-info-grid {
    display: flex !important; 
    justify-content: center !important; 
    margin-bottom: 30px !important; 
}

.secondary-share {
    flex: 0 0 400px !important; 
    max-width: 100% !important; 
    margin: 0 auto !important; 
}

.secondary-share .social-share-icons {
    padding: 15px 20px !important; 
}

.secondary-share .box-header-dark h3 {
    font-size: 16px !important; 
}

.job-keywords-section {
    margin-top: 0 !important; 
    margin-bottom: 0px !important; 
}

.job-keywords-section .box-header-dark h3 {
    font-size: 18px !important;
}

.full-width-apply {
    margin-top: 20px !important; 
    border: 1px solid #000 !important; 
    border-radius: 6px !important;
    background-color: #f9f9f9 !important;
}

.full-width-apply .job-application-wrapper {
    text-align: left !important; 
    padding: 15px !important;
}

.full-width-apply .job-application-wrapper h3.custom-apply-heading {
    margin-top: 0 !important;
    margin-bottom: 10px !important; 
}

.full-width-apply .job-application-wrapper p.custom-apply-text {
    margin-top: 0 !important;
    margin-bottom: 10px !important; 
}

.full-width-apply .job-application-wrapper a.application_link_text {
    display: block !important;
    text-align: left !important;
    word-wrap: break-word !important; 
    font-size: 16px !important;
    color: var(--primary-blue) !important;
    text-decoration: underline !important;
}

.introduction-box, 
.eligibility-box {
    width: 100% !important;
    border: 2px solid #0056b3; 
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block !important;
    background-color: #ffffff;
}

.introduction-content,
.eligibility-content {
    padding: 15px !important; 
    font-size: 16px !important;
    color: #333 !important;
    line-height: 1.6 !important;
}

.introduction-content h1, .eligibility-content h1,
.introduction-content h2, .eligibility-content h2,
.introduction-content h3, .eligibility-content h3,
.introduction-content h4, .eligibility-content h4,
.introduction-content h5, .eligibility-content h5,
.introduction-content h6, .eligibility-content h6 {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    font-weight: 700 !important;
    color: #073e95 !important;
    line-height: 1.3 !important;
}

.introduction-content > *:first-child,
.eligibility-content > *:first-child {
    margin-top: 0 !important;
}

.introduction-content > *:last-child,
.eligibility-content > *:last-child {
    margin-bottom: 0 !important;
}

.introduction-content p, .eligibility-content p,
.introduction-content ul, .eligibility-content ul {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.introduction-content a,
.eligibility-content a {
    color: #0056b3 !important;
    text-decoration: underline !important;
    font-weight: 600;
}

.post-navigation, .nav-links {
    display: flex !important;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
}

.post-navigation a, .nav-links a {
    background-color: #28a745 !important;
    color: #ffffff !important;
    padding: 12px 24px;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 45%;
    text-align: center;
}

.post-navigation a:hover, .nav-links a:hover {
    background-color: #218838;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.post-navigation a::before, .post-navigation a::after {
    margin: 0 5px;
}

@media (max-width: 768px) {
    .single-job-grid-section {
        grid-template-columns: 1fr !important;
        gap: 15px !important; 
        margin-bottom: 20px !important;
    }
    .full-width-apply { margin-top: 20px !important; }
    .secondary-info-grid { display: block !important; }
    .secondary-share { flex: auto !important; max-width: 100% !important; margin-bottom: 15px !important; }
    .single-job-details-wrapper-outer { padding: 15px !important; }
}

/* ============================================
   PAGINATION STYLES (GLOBAL)
   ============================================ */
.custom-pagination-row { 
    display: flex; 
    justify-content: center; 
    gap: 8px; 
    margin-top: 30px; 
    flex-wrap: wrap;
    padding: 20px 0;
}

.custom-pagination-row .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.custom-pagination-row .page-numbers:hover {
    background-color: #99fe4b;
    color: #000;
    border-color: #99fe4b;
}

.custom-pagination-row .page-numbers.current {
    background-color: #073e95;
    color: white;
    font-weight: bold;
    border-color: #073e95;
}

.custom-pagination-row .prev,
.custom-pagination-row .next {
    background-color: #28a745;
    color: white !important;
    font-weight: bold;
    border-color: #28a745;
}

.custom-pagination-row .prev:hover,
.custom-pagination-row .next:hover {
    background-color: #218838;
    border-color: #218838;
}

@media (max-width: 600px) {
    .custom-pagination-row {
        gap: 5px;
    }
    .custom-pagination-row .page-numbers {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* ============================================
   PRINT STYLES (GLOBAL)
   ============================================ */
@media print {
    .category-bar,
    .search-page-link,
    .top-ad-area,
    .left-ad-sidebar,
    .ad-label-small,
    .ad-box-fix,
    .social-share-icons,
    .post-navigation {
        display: none !important;
    }
    
    .page-master-container {
        border: none;
        margin: 0;
        max-width: 100%;
    }
}