/* ========================================== */
/* JOB DETAILS - NEWSPAPER STYLE             */
/* ========================================== */

/* Newspaper Page */
.newspaper-page {
    background: #f4f0eb;
    padding: 20px;
    border: 2px solid #000000;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

/* Newspaper Header */
.newspaper-header {
    text-align: center;
    border-bottom: 3px double #000000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.newspaper-header h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: #000000;
    letter-spacing: -1px;
    margin: 0;
}
.newspaper-header .edition {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555555;
}
.newspaper-header .date {
    font-size: 0.8rem;
    color: #555555;
}
.newspaper-header .tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: #666666;
    border-top: 1px solid #cccccc;
    padding-top: 6px;
    margin-top: 6px;
}

/* Newspaper Title */
.newspaper-title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: #000000;
    border-bottom: 2px solid #000000;
    padding-bottom: 6px;
    margin-bottom: 10px;
}

/* Newspaper Meta - Column Layout */
.newspaper-meta {
    font-size: 0.85rem;
    color: #555555;
    border-bottom: 1px dotted #cccccc;
    padding-bottom: 6px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.newspaper-meta span {
    display: block;
}

/* Newspaper Content */
.newspaper-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #222222;
    text-align: justify;
}
.newspaper-content h4 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000;
    border-bottom: 1px solid #000000;
    padding-bottom: 4px;
    margin-top: 16px;
}

/* Divider */
.newspaper-divider {
    border: none;
    border-top: 2px solid #000000;
    margin: 20px 0;
}

/* Newspaper Footer */
.newspaper-footer {
    border-top: 2px solid #000000;
    padding-top: 10px;
    margin-top: 20px;
    font-size: 0.7rem;
    color: #555555;
    text-align: center;
}

/* Buttons */
.btn-newspaper {
    border-radius: 0px;
    border: 1px solid #000000;
    background: #000000;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 8px 20px;
    font-family: 'Georgia', serif;
    transition: all 0.3s;
}
.btn-newspaper:hover {
    background: #ffffff;
    color: #000000;
}

.btn-newspaper-outline {
    border-radius: 0px;
    border: 1px solid #000000;
    background: transparent;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 8px 20px;
    font-family: 'Georgia', serif;
    transition: all 0.3s;
}
.btn-newspaper-outline:hover {
    background: #000000;
    color: #ffffff;
}

.whatsapp-btn {
    background: #25D366;
    border: 1px solid #25D366;
    color: #ffffff;
    border-radius: 0px;
    padding: 10px 25px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}
.whatsapp-btn:hover {
    background: #1da851;
    color: #ffffff;
}

/* Country Strip */
.country-strip {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-left: 4px solid #ffffff;
}
.country-strip .flag {
    font-size: 1.4rem;
}

/* ========================================== */
/* ✅ MESSAGE BOX - SMALL HEIGHT              */
/* ========================================== */
.newspaper-page .form-control {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: 38px;
    height: 38px;
    padding: 4px 10px;
    font-size: 0.85rem;
}

/* ========================================== */
/* RESPONSIVE - MOBILE                       */
/* ========================================== */
@media (max-width: 768px) {
    .newspaper-header h1 {
        font-size: 2rem;
    }
    .newspaper-content {
        font-size: 0.9rem;
    }
    .country-strip {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    .country-strip .flag {
        font-size: 1.2rem;
    }
    .newspaper-page .form-control {
        max-width: 100%;
        min-height: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}