/* Custom Styles for Television Guide Newspaper Layout */

body {
    background-color: #FAF6EE;
    font-family: 'Noto Serif Bengali', serif;
    color: #111;
}

/* Main Container */
.newspaper-container {
    max-width: 900px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border: 1px solid #d3d3d3;
}

/* Header Elements */
.header-title {
    font-family: 'Tiro Bangla', serif;
    color: #b30000;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
}

/* Date Bar & Archive Picker */
.date-bar {
    background-color: #800000;
    color: #ffffff;
    font-weight: bold;
    padding: 6px 12px;
    font-size: 0.95rem;
}

/* Content Cards */
.card-box {
    border: 1px dashed #a0a0a0;
    padding: 10px;
    height: 100%;
    background-color: #FAF6EE;
}

.red-heading {
    color: #d90429;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
}

.red-heading:hover {
    color: #800000;
}

.badge-red {
    background-color: #ff0000;
    color: #fff;
    padding: 3px 8px;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 6px;
    width: 100%;
}

.article-text {
    font-size: 0.85rem;
    text-align: justify;
    line-height: 1.5;
    color: #222;
}

/* Bottom Banner Overlay */
.bottom-banner {
    position: relative;
    background-color: #000;
    color: #fff;
    border: 1px dashed #a0a0a0;
    overflow: hidden;
    min-height: 240px;
}

.bottom-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-content {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 48%;
    z-index: 2;
}

/* Footer */
.footer-bar {
    background-color: #800000;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    padding: 6px 0;
    font-size: 1rem;
}

/* Article Detail Page Custom Styles */
.detail-container {
    max-width: 850px;
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
}

.article-title {
    color: #800000;
    font-weight: bold;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222;
    text-align: justify;
}