﻿/* Basic Reset */
@import url('https://fonts.googleapis.com/css2?family=Tiro+Bangla:ital@0;1&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tiro Bangla', serif; /* Removed SolaimanLipi to prevent encoding issues */
    line-height: 1.5;
    background-color: #f9f9f9;
}

/* =========================================
   Header Section Styles
   ========================================= */

.newspaper-header {
    background-color: #fff;
    overflow: hidden;
}

.header-container, .container {
    width: 1400px; min-width: 1400px; /* Increased page width as requested */
    margin: 0 auto;
    position: relative; /* Crucial for overlapping model */
    background-color: #fff;
    padding: 0 20px;
}

/* 1. Model Image (Absolute Position) */
.featured-model {
    position: absolute;
    right: 20px;
    bottom: 0;
    z-index: 10;
}
.featured-model img {
    height: 250px;
    display: block;
}

/* 2. Top Row (Logo) */
.header-top-row {
    padding-top: 15px;
    padding-bottom: 0px;
}
.logo-wrapper {
    /* Flexbox to align the two logos side by side */
    display: flex;
    align-items: center;
    max-width: 80%; 
    gap: 30px; /* Space between the 12 years graphic and the text logo */
}
.img-12 {
    height: 150px; /* User requested exact height */
    width: auto;
    display: block;
}
.img-logo {
    height: 250px;
    width: auto;
    display: block;
}

/* 3. Bottom Row (Text + Bars) */
.header-bottom-row {
    display: flex;
    margin-top: -25px; /* Negative margin to pull up and hide logo image whitespace */
    align-items: stretch;
    margin-bottom: 0px;
}

/* Left Quote Box */
.quote-box {
    flex: 0 0 20%; width: 20%;
    text-align: center; /* The text is center aligned within this box */
    font-size: 19px;
    color: #333;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0px;
    font-weight: 600;
}

/* Main Info Content (contains the two rows) */
.info-content {
    flex-grow: 1;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Row 1: Blue Bar */
.info-row-blue {
    position: relative;
    background-color: #e5f6fa;
    padding: 6px 200px 6px 15px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Row 2: White Bar */
.info-row-white {
    background-color: #ffffff;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.links-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.news-group {
    display: flex;
    align-items: center;
    margin-left: 148px;
}

/* Typography */
.day-red {
    color: #ed1c24;
    font-weight: bold;
    font-size: 15px;
}

.sep-red {
    color: #ed1c24;
    margin: 0 10px;
    font-weight: bold;
}

.date-text, .price-text {
    color: #444;
    font-size: 15px;
}

.news-text {
    color: #444;
    font-size: 16px;
    text-align: right;
    font-weight: 500;
}

.info-link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px; /* Increased from 13px */
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 22px; /* Spacing between links */
}

.info-link:hover {
    color: #ed1c24;
}

/* Icons */
.icon-cyan {
    color: #00b0f0;
    font-size: 15px;
}

.icon-fb {
    color: #1877f2;
    font-size: 15px;
}

/* =========================================
   Header Section Styles Ends
   ========================================= */

/* =========================================
   Featured News Strip Section
   ========================================= */

.featured-news-strip {
    background-color: #fff;
    padding-top: 0px;
    padding-bottom: 10px;
}

.news-strip-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.news-strip-col {
    flex: 1;
    display: flex;
}

/* Item 1 Special Layout */
.special-col {
    flex-direction: column;
    padding: 0 5px;
    max-width: 20%; /* Restrict width */
}

.special-header {
    background-color: #d7eef8; /* Light blue header */
    display: flex;
    align-items: center;
    padding: 2px 5px;
    margin-bottom: 8px;
    position: relative;
}

.accent-bar {
    width: 6px;
    height: 100%;
    background-color: #0071bc;
    position: absolute;
    left: 0;
    top: 0;
}

.line-bar {
    width: 40px;
    height: 2px;
    background-color: #333;
    margin-left: 15px;
    margin-right: 10px;
}

.header-text {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

/* Combo Columns (Item 2, 3, 4) */
.combo-col {
    display: flex;
    gap: 5px;
}

.combo-text {
    flex: 1;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
}

.peach-bg {
    background-color: #fdf1e5; /* Exact peach color */
}

.combo-image {
    flex: 0 0 90px;
}

.combo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ccc; /* Subtle border */
}

/* Common Text Styles */
.news-title {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.reporter-name {
    font-size: 11px;
    color: #555;
    font-weight: bold;
    border-bottom: 1px dashed #999; /* Dotted line under reporter */
    padding-bottom: 2px;
    margin-bottom: 5px;
    display: inline-block;
}

.desc-text {
    font-size: 12px;
    color: #444;
    line-height: 1.4;
    margin-bottom: 5px;
    flex-grow: 1;
}

.read-more {
    font-size: 11px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap; /* Prevent icon from wrapping separately from text */
}

.read-more i {
    color: #666;
    font-size: 12px;
}

.read-more:hover {
    color: #ed1c24;
}

.strip-bottom-border {
    height: 3px;
    background-color: #666; /* Thick gray border at the bottom */
    margin-top: 10px;
    border-bottom: 1px solid #ccc;
}

/* =========================================
   Main Content Section
   ========================================= */

.main-content {
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 0px;
}

.main-row {
    display: flex;
    align-items: stretch;
}

.lead-column {
    flex: 0 0 60%;
    padding-right: 5px;
}

.vertical-divider {
    width: 1px;
    background-color: #ccc;
    margin: 0 5px;
}

.side-column {
    flex: 1;
    padding-left: 5px;
    display: flex;
    flex-direction: column;
}



/* Lead Column (Left) */
.blue-title-bar {
    background-color: #00b0f0;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.lead-headline {
    color: #ed1c24;
    text-align: center;
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.lead-story-body {
    display: flex;
    gap: 20px;
}

.lead-story-text {
    flex: 1;
}

.lead-story-text p {
    text-align: justify;
    margin-bottom: 0px;
    font-size: 14px; /* Slightly larger for serif font */
}

.lead-story-image-box {
    flex: 0 0 60%; /* Make Metro image larger */
    background-color: #feead9;
    border: 2px solid #f9c7a1;
    padding: 8px;
    display: flex;
    flex-direction: column;
}

.metro-img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    margin-bottom: 0px;
}

.caption-row {
    display: flex;
    gap: 10px; /* Reduced gap */
}

.caption-col {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    text-align: justify;
    position: relative;
}

.accent-icon {
    color: #ed1c24;
    margin-right: 5px;
}

/* Side Column (Right) */
.red-title-bar {
    background-color: #ed1c24;
    color: #fff;
    text-align: center;
    padding: 4px 4px 1px 4px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
}

.side-headline {
    margin-top: 5px;
    font-size: 26px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0px;
    font-weight: 800;
    color: #111;
}

.side-story-3col {
    display: flex;
    gap: 8px; /* Reduced gap */
    align-items: flex-start; /* Reverted so image doesn't stretch too tall */
}

.text-col {
    flex: 1;
}

.text-col p {
    text-align: justify;
    font-size: 13px;
}

.img-col {
    flex: 0 0 120px; /* Increased width */
    margin-top: 5px; /* Slight margin to align better with text */
}

.img-col img {
    width: 100%;
    height: 160px; /* Increased height as requested */
    object-fit: cover;
    border: 1px solid #ccc;
}

.story-divider {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 8px 0;
}

.side-story-bottom-row {
    display: flex;
    align-items: stretch;
}

.sub-story {
    flex: 1;
}

.sub-left {
    padding-right: 8px; /* Reduced padding/gap */
}

.sub-right {
    padding-left: 8px; /* Reduced padding/gap */
}

.vertical-divider-small {
    width: 1px;
    background-color: #ccc;
}

.sub-headline {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 0px;
    font-weight: 700;
    color: #222;
    text-align: center;
}

.battery-image {
    margin-bottom: 0px;
    text-align: center;
}

.battery-image img {
    width: 100%; /* Make battery image wider and taller */
    height: auto;
    object-fit: contain;
}

.desc-text-2col p {
    text-align: justify;
    font-size: 13px;
}

/* =========================================
   Responsive Design for Mobile
   ========================================= */
/* =========================================
   Secondary News Strip
   ========================================= */
.secondary-news-strip {
    margin-top: 0px;
    padding-bottom: 30px;
}

.secondary-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.sec-headline {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 0px;
    font-weight: 800;
    color: #111;
}

.sec-headline-small {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 0px;
    font-weight: 700;
    color: #222;
}

/* Column 1 */
.sec-col-1 {
    flex: 0 0 42%;
    background-color: #fffae6;
    border: 1px solid #f9a825;
    padding: 10px;
}

.sec-col-1-body {
    display: flex;
    gap: 2px;
    margin-top: 10px;
}

.col-1-text {
    flex: 0 0 32%;
}

.col-1-right {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
}

.col-1-right img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    margin-bottom: 8px;
}

.col-1-right-texts {
    display: flex;
    gap: 10px;
}

.right-text-col {
    flex: 1;
}

/* Column 2 */
.sec-col-2 {
    flex: 0 0 15%;
    padding-top: 5px;
}

.tag-row {
    display: inline-flex;
    align-items: center;
    background-color: #00acc1;
    color: #fff;
    padding: 3px 8px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 0px;
    border-radius: 2px;
}

.tag-circle {
    width: 10px;
    height: 10px;
    background-color: #ed1c24;
    border-radius: 50%;
    margin-right: 5px;
}

/* Column 3 */
.sec-col-3 {
    flex: 0 0 28%;
    border: 1px solid #29b6f6;
    padding: 10px;
}

.sagar-runi-layout {
    margin-top: 10px;
}

.sagar-float-container {
    display: flex;
    gap: 0px;
    margin-bottom: 0px;
    align-items: stretch;
}

.sagar-flow-text {
    flex: 0 0 21%;
    text-align: left;
    order: 1; /* Left text first */
}

.sagar-float-img-wrapper {
    flex: 0 0 54%;
    width: 54%;
    max-width: 54%;
    order: 2; /* Image in middle */
    display: flex;
}



.sagar-float-right-text {
    flex: 0 0 21%;
    text-align: left;
    order: 3; /* Right text last */
}

.sagar-float-container .desc-text {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: -0.1px;
}

.sagar-img-new {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 2px solid #ff7043; /* Orange/pink border */
    padding: 2px;
}

.sagar-bottom-row {
    text-align: justify;
}

/* Column 4 */
.sec-col-4 {
    flex: 1;
    padding-top: 5px;
}

.mirza-img-box {
    text-align: center;
    margin-bottom: 0px;
}

.mirza-img-box img {
    width: 100%;
    max-width: 130px;
    height: auto;
    border: 1px solid #444;
    padding: 2px;
    border-radius: 4px;
}


/* =========================================
   Third News Strip CSS
========================================= */
.third-news-strip {
    margin-top: 0px;
    margin-bottom: 30px;
}

.third-row {
    display: flex;
    gap: 8px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}

.third-col {
    display: flex;
    flex-direction: column;
}

.third-col-1 { flex: 0 0 21%; }
.third-col-2 { flex: 0 0 12%; }
.third-col-3 { flex: 0 0 26%; }
.third-col-4 { flex: 0 0 12%; }
.third-col-5 { flex: 1; }

/* Column 1 Internal */
.nbr-headline {
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    margin: 10px 0;
}

.twocol-text {
    display: flex;
    gap: 5px;
}
.twocol-text > div {
    flex: 1;
    text-align: left;
}

.col-1-bottom {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}
.prayer-box {
    flex: 0 0 45%;
    border: 1px solid #ccc;
}
.prayer-header {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 3px;
    font-weight: bold;
    font-size: 13px;
}
.prayer-header-2 {
    background-color: #f39c12;
    color: #fff;
    text-align: center;
    padding: 3px;
    font-weight: bold;
    font-size: 12px;
}
.prayer-table {
    width: 100%;
    border-collapse: collapse;
}
.prayer-table td {
    border: 1px solid #ccc;
    padding: 3px 5px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
}
.prayer-footer {
    background-color: #4dc2f8;
    color: #000;
    font-size: 10px;
    text-align: center;
    padding: 3px;
}
.property-news {
    flex: 0 0 52%;
}

/* Column 3 Internal */
.red-tag-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}
.red-tag-line::before, .red-tag-line::after {
    content: "";
    flex: 1;
    border-top: 1px solid red;
    margin: 0 5px;
}
.red-tag-text {
    font-weight: bold;
    color: #000;
    font-size: 12px;
}

.col-3-box {
    background-color: #fffae6;
    border: 2px solid #8fbc8f;
    padding: 8px;
    margin-top: 15px;
}
.col-3-box-headline {
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 5px;
}

/* Column 5 Internal */
.rab-img-container {
    position: relative;
    margin-bottom: 0px;
}
.rab-red-bar {
    background-color: red;
    color: white;
    text-align: center;
    padding: 3px;
    font-weight: bold;
    font-size: 12px;
}

.igp-images {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}
.igp-images img {
    flex: 1;
    width: 48%;
    height: auto;
}

/* Generic Utilities for this section */
.third-headline {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 5px;
    text-align: center;
}
.third-img-full {
    width: 100%;
    height: auto;
}
.hr-divider {
    border-top: 1px dashed #ccc;
    margin: 10px 0;
}

.secondary-news-strip .desc-text { font-size: 14px; line-height: 1.5; }









.peach-bg .news-title { font-size: 19px; }
















































