@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600&display=swap');
/* font-family: 'Karla', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* font-family: 'Roboto', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100;8..144,200;8..144,300;8..144,400;8..144,500;8..144,600;8..144,700;8..144,800;8..144,900&display=swap');
/* font-family: 'Roboto Flex', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
/* font-family: 'Quicksand', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');
/* font-family: 'Quattrocento', serif; */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&display=swap');
/* font-family: 'Playfair Display', serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;500;600;700&display=swap');
/* font-family: 'Noto Nastaliq Urdu', serif; */

/*********************************************
Theme Variables
*********************************************/
:root {
    --color-red: #b3122a;
    --color-red-dark: #7d0c1e;
    --color-red-light: #e0455a;
    --color-navy: #101b45;
    --color-navy-dark: #0a1230;
    --color-navy-light: #223072;
    --color-gold: #c99a3d;
    --color-gold-dark: #a67a24;
    --color-gold-light: #f0d99a;
    --color-paper: #faf6ec;
    --color-paper-alt: #f2ecdc;
    --color-ink: #262320;
    --color-ink-soft: #5a544c;
    --color-line: #e4dac0;

    --shadow-sm: 0 2px 8px rgba(16, 27, 69, 0.08);
    --shadow-md: 0 8px 24px rgba(16, 27, 69, 0.12);
    --shadow-lg: 0 14px 40px rgba(16, 27, 69, 0.18);

    --radius-sm: 6px;
    --radius-md: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-paper);
    color: var(--color-ink);
}

::selection {
    background-color: var(--color-gold-light);
    color: var(--color-navy-dark);
}

.italic {font-style: italic}
.bold {font-weight: bold}
.underline {text-decoration: underline}
a {text-decoration: none;}

.urdu-text {font-family: 'Noto Nastaliq Urdu', serif !important}

.mob-view {display: none !important}
.desk-view {display: block !important}

.whatsapp {background-color: #4dc247;}
.facebook {background-color: #3b5998;}
.instagram {background-color: #d84936;}
.twitter {background-color: #1da1f2;}
.linkedin {background-color: #0077b5;}
.print {background-color: #e26900;}
.youtube {background-color: #f00;}

.whatsapp:hover {background-color: #41a83b;}
.facebook:hover {background-color: #314c85;}
.instagram:hover {background-color: #bd3d2d;}
.twitter:hover {background-color: #0a8ddf;}
.linkedin:hover {background-color: #0168a0;}
.print:hover {background-color: #c45d03;}
.youtube:hover {background-color: rgb(209, 1, 1);}


/*********************************************
Header Section Start
*********************************************/
.header-bg {
    background-image: linear-gradient(120deg, #fffdf7 0%, var(--color-paper-alt) 55%, #f7ecd3 100%);
    border-bottom: 3px solid var(--color-gold);
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

#left-header .edition-name,
#right-header .tagline {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background-color: #fffefb;
    box-shadow: var(--shadow-sm);
    padding: 10px 30px;
    display: flex;
    align-items: center;
    height: 86px;
}

#left-header .edition-name ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 22px;    
    height: 100%;
}

#left-header .edition-name ul li {
    position: relative;
    height: 100%;
}

#left-header .edition-name ul li::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 2px;
    height: 100%;
    background-color: var(--color-gold-light);
}

#left-header .edition-name ul li:last-child::after {display: none;}

#left-header .edition-name ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    height: 100%;
    color: var(--color-navy);
    transition: all 0.3s;
}

#left-header .edition-name ul li a .urdu-txt {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 18px;
    font-weight: 600;
}

#left-header .edition-name ul li a:hover,
#left-header .edition-name ul li a.active {color: var(--color-red);}

/*********************************************
Navbar Section Start
*********************************************/
.navbar-area {
    background-image: linear-gradient(90deg, var(--color-navy-dark), var(--color-navy) 55%, var(--color-navy-light));
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-time p {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-gold-light);
    margin-bottom: 0;
}

#navbar .navbar-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#navbar .navbar-menu li {
    padding: 5px 0;
    cursor: pointer;
}

#navbar .navbar-menu a {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
#navbar .navbar-menu a:hover {background-color: rgba(201, 154, 61, 0.25); color: var(--color-gold-light);}

#navbar .navbar-menu .dropdown_menu {
    position: relative;
}

#navbar .navbar-menu .dropdown_menu:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transition: all 0.5s;
}

.dropdown {
    background-color: #fffefb;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border-top: 3px solid var(--color-gold);
    padding: 13px 0;
    min-width: 180px;
    position: absolute;
    top: calc(100% + 15px);
    left: -5px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.dropdown::before {
    content: "";
    border: 9px solid transparent;
    border-bottom-color: var(--color-gold);
    position: absolute;
    top: -19px;
    left: 20px;
}

.dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown ul li {padding: 0 !important;}

.dropdown ul li a {
    font-weight: 500;
    text-transform: capitalize !important;
    color: var(--color-navy) !important;
    padding: 5px 15px !important;
}

.dropdown ul li a:hover {
    background-color: rgba(179, 18, 42, 0.1) !important;
    color: var(--color-red) !important;
}

/*********************************************
Epage Thumbs Section Start
*********************************************/
#epage-thumbs {
    display: flex;
    gap: 8px;
    flex-direction: column;
    /* direction: rtl; */
    width: 130px;
    height: 100%;
    max-height: 1600px;
    overflow-y: auto;
    padding: 2px 5px;
}

#epage-thumbs::-webkit-scrollbar {width: 7px;}
  
#epage-thumbs::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px rgba(16, 27, 69, 0.15);
    border-radius: 5px;
}
  
#epage-thumbs::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 5px;
}

#epage-thumbs::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

#epage-thumbs a {
    display: block;
    padding: 3px;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.25s;
}

#epage-thumbs a:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-sm);
}

/* #epage-thumbs a img {
    filter: blur(0.05em);
    transition: all 0.3s;
}

#epage-thumbs a:hover img, #epage-thumbs a.active_page img {
    filter: blur(0);
} */

#epage-thumbs a.active_page {
    border-color: var(--color-red);
    box-shadow: var(--shadow-sm);
    transform: scale(1.02) !important;
}

#edition-pagination {
    display: flex;
    margin-bottom: 20px;
}

#edition-name-date {
    width: 40%;
    text-align: left;
}

#edition-name-date h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-navy);
    margin: 0;
}

#edition-name-date h4 span {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-ink-soft);
}

#page_pagination {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 3px;
    width: 60%;
}

#page_pagination a {
    display: block;
    text-decoration: none;
    font-family: 'Karla', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-navy);
    background-color: #fff;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    transition: all 0.25s;
}

/* #page_pagination a.current_page {
    background-color: #435678 !important;
    border-color: #3b4d6b !important;
    color: #fff !important;
} */

#page_pagination a:hover,
#page_pagination a.current_page {
    background-image: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    border-color: var(--color-red-dark);
    color: #fff;
}

/*********************************************
Edition Details Section Start
*********************************************/
#edition-box {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 0;
}

#edition-box .single-edition {position: relative;}
#edition-box .edition-thumb .loading {top: calc(50% - 11px);}

#edition-box .edition-thumb a {
    display: block;
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s;
}

#edition-box .edition-thumb a:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

#edition-box .edition-thumb a img {
    display: block;
    padding: 12px 12px 10px 12px;
}

#edition-box .edition-thumb a span {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 100%;
    background-image: linear-gradient(90deg, var(--color-navy-dark), var(--color-navy));
    color: var(--color-gold-light);
    text-align: center;
    padding: 14px 40px;
    margin-bottom: 0;
    transition: all 0.2s;
}

#edition-box .edition-thumb a span:hover {color: #fff;}

/*********************************************
Content Section Start
*********************************************/
#content-area {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

#content-txt {
    padding: 40px 20px 60px 20px;
}

#content-txt h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--color-navy);
    display: inline-block;
    border-bottom: 3px solid var(--color-gold);
    padding-bottom: 6px;
    margin-bottom: 25px;
}

#content-txt p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    color: var(--color-ink-soft);
}

.tariff-card-list img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/*********************************************
Photo Gallery Section Start
*********************************************/
#gallery {
    display: flex;
    flex-wrap: wrap;
}

#gallery a {
    display: block;
    width: calc(33.33% - 10px);
    margin: 5px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

#gallery a:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/*********************************************
Page Body Section Start
*********************************************/
.epage-body-bg {
    background-image: linear-gradient(180deg, var(--color-paper) 0%, var(--color-paper-alt) 100%);
}

#epage-body {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
}

#page-body {
    width: calc(100% - 160px);
    position: relative;
}

#page-body .epaper-page {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    padding: 20px;
    text-align: center;
    min-height: 1400px;
    position: relative;
}

.page_loader {
    background-color: rgba(16, 27, 69, 0.88);
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
}

.loading {
    display: inline-block;
    font-size: 20px;
    font-family: 'Ysabeau', sans-serif;
    color: #f1f1f1;
    line-height: 22px;
    position: relative;
    top: 18%;
    z-index: 99;
}

.loading::before {
    content: "";
    width: 22px;
    height: 22px;
    border: 3px solid transparent;
    border-top: 3px solid var(--color-gold);
    border-left: 3px solid var(--color-gold);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -30px;
    z-index: 99;
    animation-name: loader_spin;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-timing-function: linear;
}

@keyframes loader_spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

#page-body .epaper-page img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

#page-btn {display: none;}

#page-btn .left-btn,
#page-btn .right-btn {
    position: fixed;
    top: 70%;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    border-radius: 50%;
    transition: all 0.2s;
}

#page-btn .left-btn {left: calc(5% - 30px);}
#page-btn .right-btn {right: calc(5% - 30px);}

#page-btn .left-btn a,
#page-btn .right-btn a {
    display: block;
    color: #fff;
    background-image: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s;
    position: relative;
}

#page-btn .left-btn a:hover,
#page-btn .right-btn a:hover {
    background-image: linear-gradient(135deg, var(--color-navy-light), var(--color-navy-dark));
}

#page-btn .left-btn a:hover {
    padding-right: 3px;
}

#page-btn .right-btn a:hover {
    padding-left: 3px;
}

/*********************************************
Big Page Section Start
*********************************************/
.close-window {
    position: fixed;
    top: 2px;
    right: calc(50% - 80px);
    z-index: 9999;
}

.close-window span {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background-image: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.45);
    transition: all 0.4s;
}

.close-window span:hover {
    background-image: linear-gradient(135deg, var(--color-navy), var(--color-navy-dark));
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
}

.close-window span i {
    font-size: 24px;
    color: #fff;
}

/*********************************************
Page Content Section Start
*********************************************/
.page-content {background-color: #fff;}

.urdu-content {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-weight: 500;
    line-height: normal;
    color: var(--color-ink);
    padding: 20px;
    direction: rtl;
}

.urdu-content .main-hd {
    font-size: 40px;
    font-weight: bolder;
    color: var(--color-navy);
    padding: 40px 0;
    text-align: center;
}

.urdu-content .main-sub-hd {
    font-size: 25px;
    color: var(--color-red);
    padding-top: 30px;
    text-align: center;
}

.urdu-content p, .urdu-content li {
    font-size: 17px;
    margin-bottom: 20px;
}

.urdu-content h3 {
    font-weight: bold;
    font-size: 23px;
    color: var(--color-navy);
    padding-top: 30px;
    margin-bottom: 20px;
}

.urdu-content h6 {
    font-size: 20px;
    margin-bottom: 0;
}

/*********************************************
Contact Section Start
*********************************************/
.form-area h2 {
    font-family: 'Quattrocento', serif;
    font-weight: 600;
    font-size: 23px;
    color: var(--color-gold-light);
    background-image: linear-gradient(90deg, var(--color-navy-dark), var(--color-navy));
    padding: 12px 8px;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.form-area h2::before {
    content: "";
    background-color: var(--color-navy);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 20px;
    bottom: -10px;
    transform: rotate(-45deg);
}

.form-box {
    background-color: #fffefb;
    border: 1px solid var(--color-line);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 40px;
}

.form-box .form-group {margin-bottom: 13px;}
.form-box .form-group:last-child {margin-bottom: 0;}
.form-box .form-group input#name {text-transform: capitalize;}

.form-box .form-group input, .form-box .form-group textarea {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm) !important;
    box-shadow: none;
}

.form-box .form-group input:focus, .form-box .form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 154, 61, 0.2);
}

.form-box .form-group input[type=number]::-webkit-outer-spin-button,
.form-box .form-group input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.submit-btn {
    display: block;
    color: #fff;
    background-image: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    border-radius: var(--radius-sm);
    border: none !important;
    font-size: 18px;
    padding: 9px 22px;
    padding-top: 7px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-image: linear-gradient(135deg, var(--color-navy-light), var(--color-navy-dark));
}

.contact-detail h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-navy-dark);
    background-image: linear-gradient(90deg, var(--color-gold-light), #f7e6b6);
    line-height: 22px;
    padding: 10px 14px;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    font-family: 'Karla', sans-serif;
}

.contact-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-detail ul li {
    font-size: 15px;
    font-family: 'Roboto Flex', sans-serif;
    color: var(--color-ink-soft);
    margin-bottom: 10px;
    display: flex;
}

.contact-detail ul li span {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: var(--color-navy);
    min-width: 105px;
}

.contact-detail ul li a {
    text-decoration: none;
    color: var(--color-red);
}

.contact-detail ul li a:hover {
    text-decoration: underline;
    color: var(--color-red-dark);
}

/*********************************************
Error 404 Section Start
*********************************************/
.error404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    margin-top: 90px;
    margin-bottom: 90px;
}

.error404 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--color-navy);
    text-align: center;
    margin: 0;
}

.error404 h1 span {
    color: var(--color-red);
    display: block;
    font-size: 60px;
}

.errorBack a {
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-navy);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 0;
    color: var(--color-navy);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.errorBack a:hover {background-color: var(--color-navy); color: #fff;}

.notFoundError {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: var(--color-red);
    margin: 100px 0;
    width: 100%;
}

/*********************************************
Archive Section Start
*********************************************/
.archive-heading {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
}

.edition-list {
    margin: 0;
    margin-bottom: 50px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.edition-list li {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 100%;
    color: var(--color-navy);
    background-color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--color-navy);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.edition-list li:hover {
    background-color: rgba(16, 27, 69, 0.08);
}

.edition-list li.current {
    color: #fff;
    border-color: var(--color-red-dark);
    background-image: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
}

.archive-heading .arch-text {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--color-navy);
}

.archive-heading .arch-text .urdu-txt {
    margin-left: 30px;
    color: var(--color-red);
    font-family: 'Noto Nastaliq Urdu', serif;
}

.single-month {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 60px;
}

.single-month .month-name {
    text-align: center;
    background-image: linear-gradient(90deg, var(--color-navy-dark), var(--color-navy));
    padding: 12px;
    color: var(--color-gold-light);
}

.single-month .month-name h3 {
    font-size: 20px;
    font-family: 'Karla', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
}

.weak-name {
    display: flex;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: var(--color-paper-alt);
    border-bottom: 1px solid var(--color-line);
}

.weak-name li {
    display: block;
    width: 14.4%;
    color: var(--color-ink-soft);
    font-family: 'Karla', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
}

.date-list {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.date-list li {
    display: block;
    color: #ccc;
    width: 14.286%;
    height: 48px;
    line-height: 46px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    font-family: 'Karla', sans-serif;
    font-size: 18px;
    user-select: none;
}

.date-list li:nth-child(7n) {
    border-right: none;
}



.date-list li a {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--color-navy);
    text-decoration: none;
    transition: all 0.2s;
}

.date-list li a:hover {
    background-image: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: #fff;
}

.description {padding-bottom: 40px;}

.description p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-ink-soft);
    margin-bottom: 0;
}

/*********************************************
Footer Section Start
*********************************************/
#footer {
    background-image: linear-gradient(90deg, var(--color-navy-dark), var(--color-navy));
    border-top: 3px solid var(--color-gold);
    padding: 22px 0;
    margin-top: 2px;
    margin-bottom: 10px;
}

#footer .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-list li a {
    font-size: 17px;
    font-weight: 300;
    font-family: 'Roboto Flex', sans-serif;
    color: #d8dcef;
    transition: all 0.3s;
}

.footer-list li a:hover {color: var(--color-gold-light);}

.social-media {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s;
}

.copyright p {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Roboto Flex', sans-serif;
    color: var(--color-gold-light);
    margin: 0;
}

/*********************************************
Shareit Section Start
*********************************************/
#shareit_outer {
    position: fixed;
    top: 34%;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    overflow: hidden;
}

#shareit_outer .shareit {
    font-size: 21px;
    color: #fff;
    width: 54px;
    height: 44px;
    line-height: 44px;
    text-align: center;
}

#shareit_outer .shareit:last-child {margin-bottom: 0;}

@media print {
    header, nav, #sub-header, #footer, #shareit_outer, .about-thumb, .form-area, #page-btn,
    #edition-pagination, #epage-thumbs, .description, #edition-box .edition-thumb a span {
        display: none;
    }

    #page-body, .epaper-page {padding: 0;}
    body {border: none;}
    #edition-box {display: block;}
    #edition-box .edition-thumb a {box-shadow: none;}
    #edition-box .edition-thumb a img {width: 100%;}
}

/*********************************************
Stable Content Area Section Start
*********************************************/
/* Reserves space for the routed page so the footer doesn't jump up
   toward the navbar while the skeleton/content swap happens. */
#page-content {
    min-height: 70vh;
}

.content-fade-in {
    animation: contentFadeIn 0.4s ease both;
}

@keyframes contentFadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@media (prefers-reduced-motion: reduce) {
    .content-fade-in {animation-duration: 0.01ms;}
}

/*********************************************
Page Transition Section Start
*********************************************/
.route-fade {
    animation: routeFadeIn 0.32s ease both;
}

@keyframes routeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .route-fade {
        animation-duration: 0.01ms;
    }
}

/*********************************************
Skeleton Placeholder Section Start
*********************************************/
.skeleton {
    position: relative;
    overflow: hidden;
    background-color: var(--color-paper-alt);
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0) 100%);
    animation: skeletonShimmer 1.4s ease-in-out infinite;
}

@keyframes skeletonShimmer {
    100% {transform: translateX(100%);}
}

@media (prefers-reduced-motion: reduce) {
    .skeleton::after {animation: none;}
}

/* Home page — edition cards */
#edition-box.is-loading {
    flex-wrap: wrap;
}

.skeleton-edition-thumb {
    width: 260px;
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    background-color: #fff;
}

.skeleton-edition-thumb .skeleton-img {
    aspect-ratio: 3 / 4;
    margin: 12px;
}

.skeleton-edition-thumb .skeleton-label {
    height: 44px;
}

/* Epaper page — thumb strip */
.skeleton-thumb-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 130px;
}

.skeleton-thumb-strip .skeleton {
    aspect-ratio: 3 / 4;
    border: 1px solid var(--color-line);
    border-radius: 4px;
}

/* Epaper page — main page + pagination */
.skeleton-epaper-page {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 20px;
    min-height: 1400px;
}

.skeleton-epaper-page .skeleton-pagination-bar {
    height: 44px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.skeleton-epaper-page .skeleton-img {
    aspect-ratio: 3 / 4;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
}

/* Full-page zoom (epage) */
.skeleton-big-newspaper {
    aspect-ratio: 3 / 4;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 4px;
}

/* Archives page */
.skeleton-archive-month {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 60px;
}

.skeleton-archive-month .skeleton-month-name {
    height: 45px;
}

.skeleton-archive-month .skeleton-date-grid {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}

.skeleton-archive-month .skeleton-date-cell {
    width: 14.286%;
    height: 48px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    background-color: transparent;
}
