/* Custom Styling - Not touching Bootstrap */
/* Dark Theme Base */

/* ===== CENTERED LOGO HEADER SECTION ===== */
.logo-header-section {
    background: #ffffff;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1011;
}

.navbar-brand-centered {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
}

.logo-header-section .navbar-brand:hover {
    color: #1a1a1a;
}

.logo-header-section .navbar-brand:hover .logo-container img {
    transform: scale(1.05);
}

/* ===== DATE, TIME & WEATHER BAR - BELOW LOGO ===== */
.date-time-weather-bar {
    background: #ED1C25;
    color: white;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1010;
    border-bottom: 2px solid #d61620;
    display: block;
    visibility: visible;
}

.date-time-weather-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0 0.75rem;
}

.dtw-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
}

.dtw-item svg,
.dtw-item i {
    width: 16px;
    height: 16px;
    color: white;
    flex-shrink: 0;
}

.dtw-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.weather-icon {
    font-size: 1.2rem;
}

.weather-condition {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Mobile Date/Time Visibility - SHOW ON ALL DEVICES */

/* ===== TOP BAR - MODERN RESPONSIVE DESIGN ===== */

.modern-topbar {
    background: #fafafa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0.75rem 0;
    display: block;
}

.modern-topbar .container {
    padding: 0 0.75rem;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-converter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.topbar-converter:hover {
    color: #ED1C25;
}

.topbar-converter i {
    font-size: 0.9rem;
}

.topbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-label {
    font-size: 0.8rem;
    color: #666;
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ED1C25;
    color: white;
}

/* Mobile Top Bar Visibility */

/* ===== RESPONSIVE FONT SIZING ===== */

/* Dynamic font sizing based on viewport width */
html {
    font-size: clamp(12px, 2vw, 16px);
}

body {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
}

/* Dark Theme Text Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}

h1 {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: clamp(0.6rem, 1.5vw, 1.25rem);
}

h3 {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    line-height: 1.4;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

h4 {
    font-size: clamp(1rem, 3vw, 1.4rem);
    line-height: 1.4;
}

h5,
h6 {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
}

p,
li,
td,
th {
    font-size: clamp(0.875rem, 2vw, 1.05rem);
    line-height: 1.6;
}

a {
    color: #60a5fa;
    transition: color 0.3s ease;
}

a:hover {
    color: #93c5fd;
}

/* Dark Theme Form Elements */
input,
textarea,
select {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.75rem;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.featured-post-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.featured-post-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
}

.featured-post-category {
    display: inline-block;
    background: #ED1C25;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: white;
    font-family: 'Mukta', sans-serif;
}

.featured-post-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-post-title a:hover {
    color: #ED1C25;
}

.featured-post-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Mukta', sans-serif;
}

.featured-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* .featured-author-avatar - now handled by universal author avatar styles above */
/* .featured-author-info - now handled by universal author component styles above */
/* .featured-author-name - now handled by universal author name styles above */

.featured-post-date {
    color: #9ca3af;
    font-size: 0.8rem;
    font-family: 'Mukta', sans-serif;
}

.featured-post-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-post-arrow:hover {
    background: #ED1C25;
    transform: scale(1.1);
    border-color: #ED1C25;
}

.featured-post-arrow svg {
    color: white;
}

/* Responsive adjustments for featured posts section */

.hero-section .row {
    align-items: start;
    position: relative;
}

/* Featured Article - Large Left Card */
.featured-article {
    position: relative;
}

.featured-article-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    height: 505px;
    width: 100%;
    max-height: 505px;
    position: relative;
    display: group;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-article-card:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

featured-article-card:hover a {
    color: #dc3545;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgb(0 0 0 / 82%) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: #ffffff;
    z-index: 2;
}

.featured-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #ffffff;
    font-family: 'Mukta', sans-serif;
}

.featured-title a {
    text-decoration: none;
    color: #ffffff;
}

.featured-excerpt {
    font-size: 1.3em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.5rem 0;
    max-width: 90%;
}

.featured-avatar {
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.featured-author {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
}

.featured-arrow-btn {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.featured-arrow-btn:hover {
    background: #ED1C25;
    transform: scale(1.1);
    border-color: #ED1C25;
}

.featured-arrow-btn svg {
    color: white;
    width: 28px;
    height: 28px;
}

/* Sidebar Articles - Right Column */
.sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Sidebar Article - Design like big-post-side-item */
.sidebar-article {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: all 0.3s ease;
    margin-bottom: 1em;
}

.sidebar-article:last-child {
    margin-bottom: 0;
}

.sidebar-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-article-link {
    display: flex;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.sidebar-article-image {
    width: 120px;
    min-width: 120px;
    height: 130px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-article:hover .sidebar-article-image img {
    transform: scale(1.05);
}

.sidebar-article-title,
.sidebar-article-content h3.sidebar-article-title {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-article:hover .sidebar-article-title {
    color: #ED1C25;
}

.sidebar-article-meta {
    margin-top: auto;
}

.sidebar-article-date {
    font-size: 0.8rem;
    color: #f93a47;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.sidebar-article-date i {
    color: #f93a47;
    font-size: 0.75rem;
}

/* ===== MOST COMMENTED WIDGET ===== */
.most-commented-widget {
    margin-top: 2rem;
}

.most-commented-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.most-commented-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.most-commented-item:hover {
    transform: translateX(4px);
}

/* Comment Bubble Icon - Large Blue Speech Bubble */
.most-commented-bubble {
    position: relative;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #0053a7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 83, 167, 0.3);
    transition: all 0.3s ease;
}

.most-commented-item:hover .most-commented-bubble {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 83, 167, 0.4);
}

.most-commented-count {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Khand', sans-serif;
    line-height: 1;
}

/* Content Area */
.most-commented-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.most-commented-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: 'Mukta', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.most-commented-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.most-commented-title a:hover {
    color: #0053a7;
}

/* Responsive Design */

.no-posts {
    text-align: center;
    padding: 1.5rem;
    color: #888888;
    font-style: italic;
    margin: 0;
}

/* Bootstrap responsive adjustments for sidebar */

/* Mobile responsive adjustments for hero section */

.sidebar-article-card {
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}

.sidebar-article-card:last-child {
    border-bottom: none;
}

.sidebar-article-content {
    padding: 0.25rem 1.0rem;
    border-radius: 7px;
    margin: 0 10px;
    padding: 1rem;
}

.sidebar-article-title {
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
    overflow: hidden;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0;
}

.sidebar-article-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.sidebar-article-title a:hover {
    color: #f6333f;
}

.sidebar-article-date {
    font-size: 0.8rem;
    color: #f6333f;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.sidebar-article-excerpt {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-article-image {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sidebar-article-card:hover .sidebar-article-image img {
    transform: scale(1.08);
}

.sidebar-arrow-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #ed1c25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.sidebar-article-card:hover .sidebar-arrow-btn {
    opacity: 1;
}

.sidebar-arrow-btn:hover {
    background: #ff6b35;
    transform: translate(-50%, -50%) scale(1.1);
}

.sidebar-arrow-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Responsive Design */

/* Popular Story Section */
/* ===== OPINION SECTION - REDESIGNED ===== */

.opinion-redesigned-section {
    padding: 3rem 0;
    background: #ffffff;
}

/* Featured Large Card - Image Left, Content Right */
.opinion-featured-large {
    margin-bottom: 3rem;
}

.opinion-featured-large-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 2rem; */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.opinion-featured-large-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.opinion-featured-large-image {
    height: 100%;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.opinion-featured-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.opinion-featured-large-card:hover .opinion-featured-large-image img {
    transform: scale(1.05);
}

.opinion-featured-large-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background-image: linear-gradient(to left top, #0d274e, #143c6b, #18538a, #176ba9, #0885c9);
}

.opinion-featured-large-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.opinion-featured-large-date {
    font-size: 0.9rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opinion-featured-large-title {
    font-size: 1.3em;
    font-family: 'Mukta', sans-serif;
    font-weight: 9;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.opinion-featured-large-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.opinion-featured-large-title a:hover {
    color: #d4d4d4;
}

.opinion-featured-large-excerpt {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0 0 1.5rem;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.opinion-featured-large-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
    background: linear-gradient(135deg, #ED1C25 0%, #c90000 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.opinion-featured-large-btn:hover {
    background: linear-gradient(135deg, #c90000 0%, #a80000 100%);
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.opinion-grid-card {
    height: 100%;
}

.opinion-grid-item {
    /* background: #fff; */
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    height: 100%;
}

.opinion-grid-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.opinion-grid-image {
    height: 120px;
    /* width: 100px; */
    overflow: hidden;
    /* border-radius: 10px 0 0 10px; */
    width: 100%;
}

.opinion-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.opinion-grid-item:hover .opinion-grid-image img {
    transform: scale(1.08);
}

.opinion-grid-content {
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    padding: 1rem 0;
}

.opinion-grid-title {
    font-size: 1.2rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.4;
    letter-spacing: 0;
}

.opinion-grid-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.opinion-grid-title a:hover {
    color: #ED1C25;
}

.opinion-grid-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1rem;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.opinion-grid-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.opinion-grid-date {
    font-size: 1rem;
    color: #ed1c24;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opinion-grid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ED1C25;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.opinion-grid-btn:hover {
    background: #c90000;
    transform: scale(1.1);
}

.opinion-grid-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Responsive Design */

/* Opinion/Interview Section - Redesigned (Small Cards Only) */
.interview-redesigned-section {
    padding: 3rem 0;
    background: white;
}

.interview-grid-circular {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.interview-card-circular {
    text-align: center;
    animation: slideInUp 0.8s ease-out both;
}

.interview-circular-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.interview-circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.interview-card-circular:hover .interview-circular-image img {
    transform: scale(1.1);
}

.interview-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 28, 37, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.interview-card-overlay svg {
    color: white;
    width: 32px;
    height: 32px;
}

.interview-card-circular:hover .interview-card-overlay {
    opacity: 1;
}

.interview-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.interview-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Mukta', sans-serif;
}

.interview-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.interview-card-title a:hover {
    color: #ED1C25;
}

.interview-card-date {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #ED1C25;
}

/* Responsive adjustments for interview section */

/* .opinion-card-avatar - now handled by universal author avatar styles with .small class */

/* Universal Author Display Styles */
.author-display-component {
    display: flex;
    align-items: center;
}

/* .author-display-component .author-info - now handled by universal author component styles above */

.author-display-component .author-info img,
.author-display-component .author-photo-container img {
    object-fit: cover;
}

/* Author Name Styles */
.author-name {
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Mukta', sans-serif;
    line-height: 1.2;
}

.author-name:after {
    content: "|";
    margin-left: 13px;
    color: #e0e0e0;
}

.author-name-large {
    font-size: 1rem;
}

.author-name-small {
    font-size: 0.875rem;
}

/* Logo integration for speaker photos */
.author-display-component .speaker-photo-with-logo {
    position: relative;
    display: inline-block;
}

.author-display-component .speaker-photo-with-logo img {
    border: 2px solid #ED1C25;
}

.author-display-component .speaker-photo-with-logo .hamromat-logo {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #ED1C25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.5rem;
    font-weight: 600;
    border: 2px solid white;
    z-index: 1;
}

/* Universal Author Avatar Styles - Apply to all author avatars across the site */
.author-avatar,
.featured-author-avatar,
.grid-author-avatar,
.province-featured-author-avatar,
.province-sidebar-author-avatar,
.sports-featured-author-avatar,
.entertainment-grid-author,
.entertainment-grid-author-avatar,
.card-author .author-avatar,
.author-photo-container,
.author-display-component .author-photo-container,
.opinion-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px dotted #ED1C25;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.author-avatar img,
.featured-author-avatar img,
.grid-author-avatar img,
.province-featured-author-avatar img,
.province-sidebar-author-avatar img,
.sports-featured-author-avatar img,
.entertainment-grid-author img,
.entertainment-grid-author-avatar img,
.card-author .author-avatar img,
.author-photo-container img,
.author-display-component .author-photo-container img,
.opinion-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Author photo container for ACF profile pictures */
.author-display-component .author-photo-container {
    position: relative;
    display: inline-block;
}

.author-display-component .author-photo-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 2px solid #ED1C25;
}

/* Responsive adjustments for opinion section */

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Highlight Section - आजको हाइलाइट */
.highlight-section {
    width: 100%;
    background: #ffffff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.highlight-header {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.highlight-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0.5px;
}

.highlight-divider {
    width: 60px;
    height: 4px;
    background: #ED1C25;
    border-radius: 2px;
}

/* Swiper Container */
.highlight-swiper-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.highlight-swiper {
    width: 100%;
    padding: 0;
    position: relative;
}

.highlight-swiper .swiper-wrapper {
    margin: 0;
}

.highlight-swiper .swiper-slide {
    width: auto;
    margin-right: 1.5rem;
}

/* Show 4.5 items - each item is approx 22.2vw (100/4.5) */

/* Highlight Card */
.highlight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(237, 28, 37, 0.2);
}

/* Card Image */
.highlight-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    height: 200px;
    width: 100%;
}

.highlight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-card-image img {
    transform: scale(1.08);
}

.highlight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.highlight-card:hover .highlight-card-overlay {
    opacity: 1;
}

.highlight-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ED1C25;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(237, 28, 37, 0.3);
}

.highlight-card-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ED1C25;
    text-decoration: none;
    z-index: 5;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.highlight-card:hover .highlight-card-link {
    opacity: 1;
    transform: scale(1);
}

.highlight-card-link:hover {
    background: #ED1C25;
    color: white;
}

.highlight-card-link svg {
    width: 20px;
    height: 20px;
}

/* Card Content */
.highlight-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.highlight-card-title {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: 'Mukta', sans-serif;
    flex: 1;
}

.highlight-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.highlight-card-title a:hover {
    color: #ED1C25;
}

.highlight-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.highlight-card-date {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    font-family: 'Mukta', sans-serif;
}

/* Navigation Arrows */
.highlight-nav-prev,
.highlight-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.highlight-nav-prev:hover,
.highlight-nav-next:hover {
    background: #ED1C25;
    transform: translateY(-50%) scale(1.1);
}

.highlight-nav-prev {
    left: 1rem;
}

.highlight-nav-next {
    right: 1rem;
}

.highlight-nav-prev svg,
.highlight-nav-next svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */

/* Grid News Section */
.news-grid-section {
    background: white;
    color: #333;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    justify-content: space-between;
}

/* Universal Centered Section Header - Reusable Class */
.section-header-center {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header-center .section-badge {
    margin-bottom: 1rem;
}

.section-header-center .section-title {
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.section-header-center .section-divider {
    margin: 0 auto;
}

/* Left-Aligned Section Header - Separate Design with Smaller Font */
.section-header-left {
   display: flex; 
     align-items: center; 
     gap: 1.5rem; 
}

.section-header-left .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0;
    color: #333;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}

.section-header-left .section-divider {
    height: 3px;
    width: 80px;
    background: #ED1C25;
    flex-shrink: 0;
    margin: 0;
}

/* Right-Aligned Button - Small Size */
.section-header-right {
    display: flex;
    align-items: center;
}

.section-header-right .view-all-btn {
    gap: 1rem;
    color: #ED1C25;
    border: none;
    padding: 0.5rem 1.3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Kalam', cursive;
    letter-spacing: 0;
}

.section-header-right .view-all-btn:hover {
    background: #c91820;
    color: #ffffff;
    transform: translateX(2px);
}

.section-header-right .view-all-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    stroke: #ffffff;
    background: #ED1C25;
    border-radius: 3rem;
}

/* Removed duplicate .section-title - now consolidated above */

.section-divider {
    height: 4px;
    width: 100px;
    background: #ed1e23;
    margin: 0 auto;
    border-radius: 2px;
}

/* Main Header Logo */
.logo-container {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-container img {
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* Fixed Navigation - REMOVED: Using tek-fixed-nav instead */

/* Province News Section */
.province-news-section {
    padding: 4rem 0;
    background: white;
    color: #333;
}

/* Main Layout */
.province-main-layout {
    margin-top: 3rem;
}

/* Province layout - use Bootstrap grid properly */
.province-main-layout {
    margin-top: 3rem;
}

/* Ensure proper Bootstrap grid behavior */
.province-main-layout .row {
    margin: 0;
}

/* Responsive adjustments for province news section */

/* Featured Article (80% width) */
.province-featured-main {
    position: relative;
}

.province-featured-card {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 1rem 0 0;
}

.province-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.province-featured-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.province-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.province-featured-category {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.province-featured-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
}

.province-featured-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: white;
    font-family: 'Mukta', sans-serif;
}

.province-featured-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.province-featured-title a:hover {
    color: #ff6b35;
}

.province-featured-excerpt {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Mukta', sans-serif;
}

.province-featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.province-featured-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.province-featured-author-info {
    display: flex;
    flex-direction: column;
}

.province-featured-author-name {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Mukta', sans-serif;
}

.province-featured-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-family: 'Mukta', sans-serif;
}

.province-featured-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.province-featured-arrow:hover {
    background: #ff6b35;
    transform: scale(1.1);
    border-color: #ff6b35;
}

.province-featured-arrow svg {
    color: white;
}

/* Sidebar (40% width) - Using sidebar-article-card design */
.province-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.province-sidebar-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.province-sidebar-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(237, 28, 37, 0.3);
}

.province-sidebar-row {
    margin: 0;
}

.province-sidebar-image-col {
    padding: 0;
}

.province-sidebar-content-col {
    padding: 0;
}

.province-sidebar-image {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.province-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.province-sidebar-article:hover .province-sidebar-image img {
    transform: scale(1.05);
}

.province-sidebar-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.province-sidebar-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Mukta', sans-serif;
}

.province-sidebar-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.province-sidebar-title a:hover {
    color: #ED1C25;
}

.province-sidebar-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #666;
    margin: 0 0 0.75rem 0;
    font-family: 'Mukta', sans-serif;
}

.province-sidebar-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.province-sidebar-arrow-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.province-sidebar-arrow-btn:hover {
    background: #ff6b35;
    transform: scale(1.1);
    border-color: #ff6b35;
}

.province-sidebar-arrow-btn svg {
    color: #333;
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
}

.province-sidebar-arrow-btn:hover svg {
    color: white;
}

/* Province Sidebar Swiper Navigation - Removed */

/* ============================================
   NEW REDESIGNED PROVINCE SECTION STYLES
   ============================================ */

/* Big Featured Post - Enhanced Design */
.province-featured-card-new {
    position: relative;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 1rem 0 0;
    background: #fff;
}

.province-featured-card-new:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.province-featured-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.province-featured-image-new {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.province-featured-image-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.province-featured-card-new:hover .province-featured-image-new::before {
    transform: scale(1.05);
}

.province-featured-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transform: translateZ(0);
    pointer-events: none;
}

.province-featured-category-new {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 3;
    transform: translateZ(0);
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ED1C25 0%, #ff6b35 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.4);
    transition: all 0.3s ease;
}

.province-featured-card-new:hover .category-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(237, 28, 37, 0.5);
}

.province-featured-content-new {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    color: white;
    transform: translateZ(0);
    will-change: auto;
}

.province-featured-title-new {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
    color: white;
    font-family: 'Mukta', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.province-featured-card-new:hover .province-featured-title-new {
    color: #f32a36;
}

.province-featured-excerpt-new {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Mukta', sans-serif;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.province-featured-meta-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.province-featured-date-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Mukta', sans-serif;
    font-weight: 500;
}

.province-featured-date-new i {
    font-size: 0.9rem;
}

.province-featured-read-more {
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: fit-content;
    background: #ED1C25;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Kalam', sans-serif;
    letter-spacing: 0;
}

.province-featured-card-new:hover .province-featured-read-more {
    background: #ED1C25;
    border-color: #ED1C25;
    transform: translateX(5px);
}

.province-featured-read-more svg {
    width: 20px;
    height: 20px;
    color: #ff0000;
    stroke: #ff0000;
    background: white;
    border-radius: 3rem;
}

.province-featured-card-new:hover .province-featured-read-more svg {
    transform: translateX(3px);
}

/* Small Posts - Modern Card Design */
.province-sidebar-new {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.province-small-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.province-small-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(237, 28, 37, 0.2);
}

.province-small-card-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.province-small-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 136px;
    height: 101px;
    overflow: hidden;
}

.province-small-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.4s ease;
}

.province-small-card-new:hover .province-small-image {
    transform: scale(1.1);
}

.province-small-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.province-small-card-new:hover .province-small-overlay {
    opacity: 1;
}

.province-small-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.province-small-category-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(237, 28, 37, 0.95);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.province-small-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    min-width: 0;
}

.province-small-title-new {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Mukta', sans-serif;
    color: #1a1a1a;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0;
}

.province-small-card-new:hover .province-small-title-new {
    color: #ED1C25;
}

.province-small-meta-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.province-small-date-new {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #f52f3a;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
}

.province-small-arrow-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 28, 37, 0.1);
    border-radius: 50%;
    color: #ED1C25;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.province-small-card-new:hover .province-small-arrow-icon {
    opacity: 1;
    transform: translateX(0);
    background: #ED1C25;
    color: white;
}

.province-small-arrow-icon svg {
    transition: transform 0.3s ease;
}

.province-small-card-new:hover .province-small-arrow-icon svg {
    transform: translateX(3px);
}

/* Responsive Design for New Province Section */

/* ========================================
   MOBILE 480px - Province Responsive
   ======================================== */

/* Province Categories Info */
.province-categories-info {
    margin-top: 1.5rem;
    text-align: center;
}

.categories-label {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.75rem 0;
    font-family: 'Mukta', sans-serif;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.category-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.parent-category {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
}

.child-category {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.category-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.section-header-with-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.section-title-area {
    flex: 1;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #666;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Khand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ed1c25;
    transform: translateY(-2px);
}

.tab-button.active {
    background: #ed1c25;
    border-color: #ed1c25;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed duplicate - now using base .section-title */

.province-news-section .section-divider {
    height: 4px;
    width: 100px;
    background: #ed1e23;
    border-radius: 2px;
}

/* Province Posts Grid */
.province-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Province News Cards */
.province-news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.province-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.province-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.province-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.province-news-card:hover .province-card-image img {
    transform: scale(1.05);
}

.province-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ED1C25;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.province-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.province-news-card:hover .province-card-overlay {
    opacity: 1;
}

.province-read-more-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.province-read-more-btn:hover {
    background: #ED1C25;
    color: white;
    transform: scale(1.1);
}

.province-read-more-btn svg {
    color: #333;
}

.province-read-more-btn:hover svg {
    color: white;
}

.province-card-content {
    padding: 1.5rem;
}

.province-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.province-card-date {
    font-weight: 500;
    color: #333;
}

.province-card-reading-time {
    background: rgba(255, 107, 53, 0.1);
    color: #ED1C25;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.province-card-title {
    margin: 0 0 1rem 0;
}

.province-card-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-family: 'Mukta', sans-serif;
}

.province-card-title a:hover {
    color: #ED1C25;
}

.province-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-family: 'Mukta', sans-serif;
}

.province-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* .province-author-avatar - now handled by universal author avatar styles above */
/* .province-author-info - now handled by universal author component styles above */
/* .province-author-name - now handled by universal author name styles above */
/* .province-author-role - now handled by universal author title styles above */

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.featured-card {
    grid-column: span 1;
}

.featured-card .card-image {
    height: 300px;
}

.regular-card .card-image {
    height: 200px;
}

.card-image {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #999;
}

.card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card:hover .card-overlay {
    opacity: 1;
}

/* Sidebar Articles Section - Bootstrap Grid */

/* Ensure sidebar cards maintain horizontal layout */
.sidebar-articles-section .sidebar-article-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: 1rem;
    height: auto;
    min-height: 160px;
}

.sidebar-articles-section .sidebar-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.sidebar-articles-section .sidebar-article-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-articles-section .sidebar-article-image {
    width: 150px;
    height: 118px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.sidebar-articles-section .sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-articles-section .sidebar-article-card:hover .sidebar-article-image img {
    transform: scale(1.05);
}

/* Responsive adjustments for news grid section */

/* Sports Section */
.sports-section {
    padding: 4rem 2rem;
    background: white;
    color: #333;
    position: relative;
    overflow: hidden;
}

.sports-section .section-title {
    color: #333;
}

.sports-section .section-divider {
    background: #ed1e23;
}

/* Sports Main Layout */
.sports-main-layout {
    margin-top: 3rem;
}

/* Featured Sports Article */
.sports-featured-main {
    position: relative;
}

.sports-featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(237, 28, 37, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 500px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.sports-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(237, 28, 37, 0.2);
}

.sports-featured-image {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sports-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: opacity 0.4s ease;
}

.sports-featured-card:hover .sports-featured-overlay {
    opacity: 0.8;
}

.sports-featured-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ed1e23;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.3);
}

.sports-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 10;
}

.sports-featured-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
}

.sports-featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sports-featured-title a:hover {
    color: #ED1C25;
}

.sports-featured-excerpt {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.sports-featured-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.sports-featured-date {
    font-weight: 500;
}

/* .sports-featured-author - now handled by universal author component styles above */

/* Sports Swiper */
.sports-featured-swiper {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

/* Single Post Page Styles */
.max-w-4xl {
    max-width: 56rem;
}

.max-w-none {
    max-width: none;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.p-8 {
    padding: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-5 {
    padding: 1.25rem;
}

.mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.w-full {
    width: 100%;
}

.w-5 {
    width: 1.25rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.h-20 {
    height: 5rem;
}

.w-20 {
    width: 5rem;
}

.h-5 {
    height: 1.25rem;
}

.h-64 {
    height: 16rem;
}

.object-cover {
    object-fit: cover;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.text-gray-900 {
    color: #111827;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-700 {
    color: #374151;
}

.text-blue-600 {
    color: #2563eb;
}

.text-red-600 {
    color: #dc2626;
}

.hover\:text-red-700:hover {
    color: #b91c1c;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-grow {
    flex-grow: 1;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.text-right {
    text-align: right;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded {
    border-radius: 0.25rem;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-4 {
    border-width: 4px;
}

.border-red-600 {
    border-color: #dc2626;
}

.pt-6 {
    padding-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.overflow-hidden {
    overflow: hidden;
}

.hover\:text-blue-800:hover {
    color: #1e40af;
}

.hover\:text-blue-600:hover {
    color: #2563eb;
}

/* Prose Styles for Content */
.prose {
    color: #374151;
    max-width: 65ch;
}

.prose-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose h1 {
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
    font-weight: 800;
}

.prose h2 {
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
    font-weight: 700;
}

.prose h3 {
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;
    font-weight: 600;
}

.prose a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
}

.prose a:hover {
    color: #1d4ed8;
}

.prose img {
    margin-top: 2em;
    margin-bottom: 2em;
    max-width: 100%;
    height: auto;
}

.prose ul,
.prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose blockquote {
    font-weight: 500;
    font-style: italic;
    color: #111827;
    border-left-width: 0.25rem;
    border-left-color: #e5e7eb;
    quotes: "\201C" "\201D" "\2018" "\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-left: 1em;
}

.prose code {
    color: #111827;
    font-weight: 600;
    font-size: 0.875em;
}

.prose pre {
    color: #e5e7eb;
    background-color: #1f2937;
    overflow-x: auto;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-right: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-left: 1.1428571em;
}

.prose pre code {
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}

.prose table {
    width: 100%;
    table-layout: auto;
    text-align: left;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;
    border: 1px solid #e5e7eb;
}

.prose thead {
    border-bottom-width: 1px;
    border-bottom-color: #d1d5db;
    background-color: #f9fafb;
}

.prose tbody tr:hover {
    background-color: #f9fafb;
}

.prose tbody tr:not(:last-child) td {
    border-bottom: 1px solid #e5e7eb;
}

.prose thead th {
    color: #111827;
    font-weight: 600;
    vertical-align: bottom;
    padding-right: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-left: 0.5714286em;
}

.prose tbody td {
    border-bottom-width: 1px;
    border-bottom-color: #e5e7eb;
    padding-top: 0.5714286em;
    padding-right: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-left: 0.5714286em;
}

/* Responsive adjustments */

/* Additional single post styles for better UX */
.single-post-page main {
    background-color: #f9fafb;
}

.single-post-page .rounded-lg {
    transition: box-shadow 0.2s ease;
}

.single-post-page .rounded-lg:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Navigation links styling */
.justify-between a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.justify-between a:hover {
    transform: translateX(-2px);
}

.justify-end a:hover {
    transform: translateX(2px);
}

/* Responsive single post adjustments */
/* Tag styling */
.rounded-full {
    transition: all 0.2s ease;
    cursor: pointer;
}

.rounded-full:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* SVG icon transitions */
svg {
    transition: transform 0.2s ease;
}

a:hover svg {
    transform: scale(1.1);
}

/* Featured Image Hero */
.featured-image-hero {
    margin-bottom: 2rem;
}

.featured-hero-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #000;
}

.featured-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-hero-wrapper:hover .featured-hero-image {
    transform: scale(1.02);
}

.featured-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 85%);
    z-index: 2;
}

.featured-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    z-index: 3;
    color: #ffffff;
}

.featured-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    max-width: 90%;
    word-break: break-word;
    font-family: 'Mukta', sans-serif;
}

.featured-hero-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.95rem;
}

.featured-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.featured-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ed1e23;
}

.featured-author-name {
    font-weight: 600;
}

.featured-meta-item i {
    opacity: 0.9;
}

/* Mobile responsive featured hero */

/* Author Bio Card Styling */
.author-bio-card {
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
}

/* Related Posts Sidebar */
.related-posts-sidebar {
    padding: 1.5rem !important;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.related-posts-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ed1e23;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.related-posts-sidebar h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #ed1e23;
    border-radius: 2px;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    margin-bottom: 0;
    border-bottom: none;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.related-post-item:hover {
    border-color: #ed1e23;
    box-shadow: 0 4px 12px rgba(237, 30, 35, 0.1);
    transform: translateY(-2px);
}

.related-post-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 1rem !important;
}

.related-post-item .d-flex {
    align-items: flex-start;
    gap: 0.75rem;
}

.related-post-item .flex-shrink-0 {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}

.related-post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-post-item:hover img {
    transform: scale(1.08);
}

.related-post-item .flex-grow {
    flex: 1;
    min-width: 0;
}

.related-post-item .flex-grow h4 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    word-break: break-word;
}

.related-post-item .flex-grow a {
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.related-post-item .flex-grow a:hover {
    color: #ed1e23;
}

.related-post-item .text-xs {
    font-size: 0.8rem;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Mobile responsive for related posts */

.related-post-item .text-xs {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-post-item .text-xs i {
    font-size: 0.75rem;
}

.related-post-item:hover {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 0.75rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

/* Last child border fix */
.last\:border-0:last-child {
    border-bottom: none !important;
}

/* Modern Sidebar Styling */
.sidebar-widget {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar-widget:hover {
    border-color: #ed1e23;
    box-shadow: 0 4px 16px rgba(237, 30, 35, 0.08);
}

.sidebar-widget-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 1.25rem 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ed1e23;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-widget-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #ed1e23;
    border-radius: 2px;
}

/* Widget Lists */
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.sidebar-widget li:last-child {
    margin-bottom: 0;
}



.sidebar-widget a::before {
    content: '→';
    opacity: 0;
    margin-left: -1rem;
    transition: all 0.2s ease;
    color: #ed1e23;
    font-weight: 700;
}

.sidebar-widget a:hover {
    color: #ed1e23;
    padding-left: 0.5rem;
}

.sidebar-widget a:hover::before {
    opacity: 1;
    margin-left: 0;
}

/* Search Widget */
.sidebar-widget .search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-widget .search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid #f0f0f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: #fafafa;
}

.sidebar-widget .search-form input[type="search"]:focus {
    outline: none;
    border-color: #ed1e23;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(237, 30, 35, 0.1);
}

.sidebar-widget .search-form button {
    padding: 0.75rem 1.25rem;
    background: #ed1e23;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.sidebar-widget .search-form button:hover {
    background: #c41a1a;
    transform: translateY(-2px);
}

/* Category Widget */
.sidebar-widget .cat-item {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-widget .cat-item a {
    flex: 1;
}

.sidebar-widget .cat-item .cat-links {
    color: #555555;
}

.sidebar-widget .cat-item .count {
    background: #f0f0f0;
    color: #888888;
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
    margin-left: 0.5rem;
}

.sidebar-widget .cat-item:hover .count {
    background: #ed1e23;
    color: #ffffff;
}

/* Tag Cloud Widget */
.sidebar-widget .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar-widget .tagcloud a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #f0f0f0;
    color: #555555;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.sidebar-widget .tagcloud a:hover {
    background: #ed1e23;
    color: #ffffff;
    transform: scale(1.05);
}

/* Archive Widget */
.sidebar-widget .archives {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-widget .archives a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.sidebar-widget .archives a::after {
    content: attr(data-count);
    background: #f0f0f0;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #888888;
    font-weight: 600;
}

/* Calendar Widget */
.sidebar-widget table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.sidebar-widget table caption {
    text-align: center;
    font-weight: 700;
    padding: 0.5rem;
    background: #fafafa;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.sidebar-widget table th {
    background: #f0f0f0;
    padding: 0.5rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.sidebar-widget table td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.sidebar-widget table a {
    color: #ed1e23;
    font-weight: 600;
    display: block;
    padding: 0.25rem;
}

/* Recent Posts Widget */
.sidebar-widget .recent-post {
    padding: 0.75rem;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.sidebar-widget .recent-post:hover {
    background: #f0f0f0;
    border-left: 3px solid #ed1e23;
    padding-left: calc(0.75rem - 3px);
}

.sidebar-widget .recent-post a {
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.25rem;
}

.sidebar-widget .recent-post-date {
    font-size: 0.8rem;
    color: #888888;
    display: block;
}

/* Mobile Responsive Sidebar */

/* Comment Form Styling */
.comment-form,
#respond {
    font-family: 'Mukta', sans-serif;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #111827;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.comment-form p {
    margin-bottom: 1.25rem;
}

.comment-form p.comment-form-comment {
    margin-bottom: 1.25rem;
}

.comment-form p.comment-form-author,
.comment-form p.comment-form-email,
.comment-form p.comment-form-url {
    display: none;
}

.comment-form p.comment-form-author:first-of-type,
.comment-form p.comment-form-email:first-of-type,
.comment-form p.comment-form-comment:first-of-type {
    display: block;
}

.comment-form p.comment-form-url {
    display: none !important;
}

.comment-form p.comment-form-cookies-consent {
    display: none;
}

.comment-form input[type="submit"] {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Hide website URL field */
#commentform p.comment-form-url {
    display: none;
}

/* Only show author, email, and comment fields */
#respond p:not(.comment-form-author):not(.comment-form-email):not(.comment-form-comment):not(.form-submit) {
    display: none;
}

/* Comments Display Styling */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    background: #f9fafb;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment-meta {
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: 600;
    color: #111827;
    margin-right: 0.5rem;
}

.comment-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.comment-content {
    color: #374151;
    line-height: 1.6;
}

.author-bio-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.author-bio-card img {
    transition: transform 0.3s ease;
}

.author-bio-card:hover img {
    transform: scale(1.05);
}

.author-bio-card a {
    transition: all 0.2s ease;
}

.author-bio-card a:hover {
    text-decoration: underline;
}

.sports-featured-swiper .swiper-slide {
    height: 500px;
    width: 100%;
}

.sports-featured-swiper .swiper-wrapper {
    height: 500px;
}

/* Sports Navigation */
.sports-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 15;
    pointer-events: none;
}

.sports-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.sports-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.sports-nav-prev {
    left: 2rem;
}

.sports-nav-next {
    right: 2rem;
}

/* Sports Sidebar */
.sports-sidebar {
    position: relative;
}

.sports-sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sports-sidebar-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: 1rem;
    height: auto;
    min-height: 160px;
    padding: 0;
    margin-bottom: 1.5rem;
}

.sports-sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.sports-sidebar-image {
    width: 180px;
    height: 160px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.sports-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sports-sidebar-card:hover .sports-sidebar-image img {
    transform: scale(1.05);
}

.sports-sidebar-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sports-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.sports-sidebar-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sports-sidebar-title a:hover {
    color: #ED1C25;
}

.sports-sidebar-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.sports-sidebar-time {
    font-weight: 500;
}

/* .sports-sidebar-author-avatar - now handled by universal author avatar styles above */

/* .author-avatar (duplicate with different size) - use .small class with universal author avatar styles above */

.sports-sidebar-date {
    font-weight: 500;
}

/* .sports-sidebar-author - now handled by universal author component styles above */

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.no-posts-message {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.no-posts-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.no-posts-message p {
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments for sports section */

/* Modern Footer Design */

/* Clean Modern Footer Design */
/* Footer - Minimal Modern Design with Deep Ocean Glow */
.footer-minimal-modern {
    position: relative;
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
    overflow: hidden;
    min-height: auto;
}

/* Deep Ocean Glow Background */
.footer-geometric-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(70% 55% at 50% 50%, #2a5d77 0%, #184058 18%, #0f2a43 34%, #0a1b30 50%, #071226 66%, #040d1c 80%, #020814 92%, #01040d 97%, #000309 100%),
        radial-gradient(160% 130% at 10% 10%, rgba(0, 0, 0, 0) 38%, #000309 76%, #000208 100%),
        radial-gradient(160% 130% at 90% 90%, rgba(0, 0, 0, 0) 38%, #000309 76%, #000208 100%);
    pointer-events: none;
}

/* Footer Content Wrapper */
.footer-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;

    gap: 2.5rem;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 0.5rem;
}

.footer-logo img,
.footer-logo .custom-logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-brand-name {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Khand', sans-serif;
    letter-spacing: -0.02em;
}

.footer-brand-name a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-brand-name a:hover {
    color: #ED1C25;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav-column {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Mukta', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ED1C25;
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    color: #ffffff;
}

.footer-nav-link:hover::after {
    width: 100%;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    color: #ED1C25;
    border-color: #ED1C25;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.footer-copyright {
    color: #a0a0a0;
    font-size: 0.875rem;
    margin: 0;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.875rem;
    font-family: 'Mukta', sans-serif;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-legal-link:hover {
    color: #ED1C25;
}

.footer-legal-separator {
    color: #666666;
    font-size: 0.875rem;
}

/* Footer Widgets Layout - 4 Columns */
.footer-widgets-layout {
    background: #dfdfdfb5;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-widgets-layout::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background-image: url(../../images/logo.png);

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.footer-widgets-layout .footer-content-wrapper {
    position: relative;
    z-index: 1;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-widget .widget-content {
    padding: 0;
    height: 100%;
}

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

.footer-widget ul li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.footer-widget ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Mukta', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-widget ul li a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #ED1C25;
}

.footer-widget ul li a:hover {
    color: #ED1C25;
    padding-left: 1rem;
}

.footer-widget ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-widget p {
    color: #3a3a3a;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-family: 'Mukta', sans-serif;
}


.footer-widget a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: #ED1C25;
}

.footer-widget-placeholder {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-family: 'Mukta', sans-serif;
}

/* Footer Widget Responsive */

/* Footer Copyright Section */
.footer-copyright-section {
    background: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: relative;
}

.footer-copyright-left {
    text-align: left;
}

.footer-copyright-right {
    text-align: right;
}

.footer-copyright-text {
    color: #5c5b5b;
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-copyright-left .footer-copyright-text {
    justify-content: flex-start;
}

.footer-copyright-right .footer-copyright-text {
    justify-content: flex-end;
}

.footer-copyright-text a {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.footer-copyright-text img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.25rem;
}

/* Footer Copyright Responsive */

/* Header Logo - White Filter and Sizing */
.tek-favicon-img {
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive */

/* Footer Widget Styling */
.footer-redesigned .widget {
    color: #ffffff;
}

.footer-redesigned .widget-title,
.footer-redesigned .footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Khand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-redesigned .widget-title::after,
.footer-redesigned .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

.footer-redesigned .widget ul,
.footer-redesigned .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-redesigned .widget li,
.footer-redesigned .footer-links li {
    margin-bottom: 0.75rem;
}

.footer-redesigned .widget a,
.footer-redesigned .footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Mukta', sans-serif;
    display: inline-block;
}

.footer-redesigned .widget a:hover,
.footer-redesigned .footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.footer-redesigned .widget p,
.footer-redesigned .widget .textwidget {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-family: 'Mukta', sans-serif;
}

/* Footer Colophon */
.footer-colophon {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer-brand-link {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Khand', sans-serif;
    transition: all 0.3s ease;
}

.footer-brand-link:hover {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.footer-brand img,
.footer-brand .custom-logo {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand:hover img,
.footer-brand:hover .custom-logo {
    transform: scale(1.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Mukta', sans-serif;
    font-size: 0.9rem;
}

.footer-credits-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Mukta', sans-serif;
    font-size: 0.85rem;
}

.footer-credits-link {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-credits-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-credits-link img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(237, 28, 37, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Main Content */
.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img,
.footer-brand img,
.footer-brand .custom-logo {
    max-width: 150px;
    height: auto;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-family: 'Mukta', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-tagline {
    font-size: 0.9rem;
    color: #ED1C25;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-family: 'Mukta', sans-serif;
}

/* Social Media */
.footer-social h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Mukta', sans-serif;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link.facebook {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.social-link.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: #3b82f6;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.instagram:hover {
    background: #e1306c;
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Mukta', sans-serif;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #ed1e23;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Mukta', sans-serif;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ED1C25;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 10px;
}

/* Footer Widget Styles */
.footer-section-widget {
    margin-bottom: 2rem;
}

.footer-section-widget .footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Mukta', sans-serif;
    position: relative;
}

.footer-section-widget .footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #ed1e23;
    border-radius: 2px;
}

.footer-section-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section-widget li {
    margin-bottom: 0.75rem;
}

.footer-section-widget a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Mukta', sans-serif;
    position: relative;
}

.footer-section-widget a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ED1C25;
    transition: width 0.3s ease;
}

.footer-section-widget a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-section-widget a:hover::before {
    width: 10px;
}

/* Newsletter Section */
.newsletter-text {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-family: 'Mukta', sans-serif;
}

.newsletter-form .input-group {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: #b0b0b0;
}

.newsletter-form .form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(237, 28, 37, 0.3);
}

.newsletter-form .btn {
    padding: 0.75rem 1rem;
    background: #ed1e23;
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(237, 28, 37, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Mukta', sans-serif;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Mukta', sans-serif;
}

.footer-bottom-links a:hover {
    color: #ED1C25;
}

/* Responsive Design */

.read-more-btn {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.news-card:hover .read-more-btn {
    transform: scale(1);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.read-more-btn:hover {
    background: #ED1C25;
    color: white;
    transform: scale(1.1);
    border-color: #ED1C25;
}

.read-more-btn svg {
    color: #333;
}

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.card-date {
    font-weight: 500;
    color: #333;
}

.card-reading-time {
    background: rgba(255, 107, 53, 0.1);
    color: #ED1C25;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-title {
    margin: 0 0 1rem 0;
    font-family: 'Mukta', sans-serif;
}

.card-title a {
    color: #333;
    text-decoration: none;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-card .card-title a {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.card-title a:hover {
    color: #ED1C25;
}

.card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-family: 'Mukta', sans-serif;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-role {
    font-size: 0.75rem;
    color: #999;
    font-family: 'Mukta', sans-serif;
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ed1e23;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    font-family: 'Mukta', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== TRENDING CATEGORIES - SIMPLE CLEAN DESIGN ===== */

.trending-categories-premium {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Simple Header - Clean & Minimal */
.trending-header-simple {
    margin-bottom: 3rem;
}

.trending-title-simple {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
    font-family: 'Khand', sans-serif;
}

.category-minimal-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    min-height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-minimal-card:hover {
    background: #333333;
    border-color: rgba(237, 28, 37, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-minimal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

/* Title */
.category-minimal-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    font-family: 'Mukta', sans-serif;
}

.category-minimal-card:hover .category-minimal-title {
    color: #ED1C25;
}

/* Count */
.category-minimal-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-family: 'Mukta', sans-serif;
}

.category-minimal-card:hover .category-minimal-count {
    color: rgba(255, 255, 255, 0.9);
}

/* Link Icon */
.category-minimal-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.category-minimal-link-icon svg {
    width: 18px;
    height: 18px;
}

.category-minimal-card:hover .category-minimal-link-icon {
    background: #ED1C25;
    color: #ffffff;
    transform: translateX(3px);
}

/* Responsive Design */

/* Trending Posts Section - Last 24 Hours */
.trending-posts-section {
    background: #3a3a3a17;
}

/* Apply Kalam font to trending section title only */
.trending-posts-section .section-title {
    font-family: 'Kalam', cursive;
}

.trending-post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 113px;
    padding: 1.5rem;
}

.trending-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgb(8 133 201);
}

.trending-post-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0;
}

.trending-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.trending-post-title a:hover {
    color: #ED1C25;
}

.trending-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.trending-post-date {
    font-size: 0.875rem;
    color: #ed1c24;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Mukta', sans-serif;
}

.trending-post-date i {
    font-size: 0.8rem;
    color: #ED1C25;
}

/* Responsive */

.category-modern-card:hover .category-modern-badge {
    background: rgba(237, 28, 37, 0.8);
    color: white;
    border-color: rgba(237, 28, 37, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    font-family: 'Mukta', sans-serif;
}

/* Modern Category Body */
.category-modern-body {
    flex: 1;
    margin-bottom: 11px;
}

.category-modern-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.category-modern-card:hover .category-modern-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-modern-description {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.category-modern-card:hover .category-modern-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Modern Category Footer */
.category-modern-footer {
    margin-top: auto;
}

.category-modern-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5em 0.8em;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-modern-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.category-modern-link:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
}

.category-modern-link:hover::before {
    left: 100%;
}

.category-modern-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    display: inline-block;
    opacity: 0.9;
}

.category-modern-link:hover i {
    transform: translateX(3px) scale(1.1);
    opacity: 1;
}

/* Removed animations - simple design */

/* Google Fonts - Mukta for Content */
body {
    font-family: 'Mukta', sans-serif;
}

p,
.card-text,
.text-muted,
.lead,
.small,
.fs-6,
.fs-5,
.fs-4,
.fs-3,
.fs-2,
.fs-1 {
    font-family: 'Mukta', sans-serif;
}

/* Content Areas */
.news-content,
.article-content,
.post-content,
.entry-content {
    font-family: 'Mukta', sans-serif;
    line-height: 1.7;
}

/* Headings with Mukta font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Khand', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Badge System - Unified Styling */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ED1C25, #ff4757);
    color: #ffffff;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.3);
    border: 1px solid rgba(237, 28, 37, 0.4);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge-icon {
    font-size: 1.2rem;
    display: inline-block;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.section-badge-icon i {
    font-size: inherit;
    color: inherit;
    display: inline-block;
}

.section-badge-text {
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

/* Badge Component Variants - Same Styling, Different Content */
/* All badges use the same styling from .section-badge */
/* Only the content (icon and text) changes */

/* Badge Icons - Static Design */

/* Section titles and subtitles */
.section-title,
.trending-title-dark {
    font-size: clamp(2.5rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #333;
    animation: slideInUp 0.8s ease-out 0.2s both;
    font-family: 'Kalam', cursive;
}

.trending-subtitle-dark {
    font-weight: 400;
}

/* Trending header styling for dark background */
.trending-header-dark {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.trending-badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.trending-badge-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.trending-badge-dark:hover::before {
    left: 100%;
}

.trending-badge-dark i {
    font-size: 1.2rem;
    animation: firePulse 2s ease-in-out infinite;
    color: #ED1C25;
    display: inline-block;
}

@keyframes firePulse {

    0%,
    100% {
        transform: scale(1);
        color: #ED1C25;
    }

    50% {
        transform: scale(1.1);
        color: #ff4757;
    }
}

/* Specific heading styles with Khand */
h1 {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

h2 {
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

h3 {
    font-weight: 600;
    font-size: 1.75rem;
    letter-spacing: 0.6px;
    line-height: 1.4;
}

h4 {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

h5 {
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.4px;
    line-height: 1.5;
}

h6 {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Category and content text */
.category-modern-title,
.category-name-minimal {
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.category-modern-description,
.category-count-minimal {
    font-family: 'Mukta', sans-serif;
    color: #e5e7eb;
}

/* News article elements */
.news-title {
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.news-excerpt,
.news-meta,
.article-meta {
    font-family: 'Mukta', sans-serif;
}

/* Widget and sidebar content */
.widget,
.sidebar-content,
.footer-content {
    font-family: 'Mukta', sans-serif;
}

/* Mukta Text Optimization */
p,
.card-text,
.news-content,
.article-content {
    font-family: 'Mukta', sans-serif;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Better spacing for Mukta text */
.news-excerpt,
.article-excerpt,
.post-excerpt {
    font-family: 'Mukta', sans-serif;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

/* Meta information styling */
.news-meta,
.article-meta,
.post-meta {
    font-family: 'Mukta', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
}

/* Button text with Mukta support */
.btn,
.category-modern-link {
    font-family: 'Mukta', sans-serif;
    font-weight: 500;
}

/* Form elements */
input,
textarea,
select,
.form-control {
    font-family: 'Mukta', sans-serif;
}

/* Responsive Headings */

/* Modern Responsive Design */

.category-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-card-modern:hover::before {
    transform: scaleX(1);
}

.category-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

/* Category Icon */
.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scale(1.1);
}

.category-card-modern:hover .category-icon i {
    color: white;
}

/* Category Info */
.category-info {
    flex: 1;
    min-width: 0;
}

.category-name-modern {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-count-modern {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-card-modern:hover .category-name-modern {
    color: #3b82f6;
}

.category-card-modern:hover .category-count-modern {
    color: #475569;
}

/* Category Link */
.category-link-modern {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-link-modern i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-link-modern {
    background: #3b82f6;
    color: white;
    transform: translateX(4px);
}

.category-card-modern:hover .category-link-modern i {
    transform: translateX(2px);
}

.category-card {
    position: relative;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Compact Category Card Styles */
.category-card.compact {
    height: 120px;
    background: var(--category-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card.compact .category-background {
    display: none;
}

.category-card.compact .category-overlay {
    background: transparent;
}

.category-card.compact .category-content {
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.category-card.compact .category-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.category-card.compact .category-count {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.category-card.compact .category-link {
    justify-content: center;
    font-size: 0.8rem;
}

.category-card.compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.category-card:hover .category-background {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--category-color) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.category-count {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    transform: translateX(5px);
}

/* Responsive Design for Grid */

/* ===== ENTERTAINMENT SECTION ===== */
/* Entertainment Magazine Section - Unique Design */
/* ===== ENTERTAINMENT SECTION - GRID SLIDER REDESIGN ===== */
.entertainment-slider-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.entertainment-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ededed;
    z-index: 0;
}

.entertainment-slider-section .tek-container {
    position: relative;
    z-index: 1;
}

/* Unique Grid Layout */
.entertainment-unique-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
    padding: 2rem 0;
}

/* Base Card Styles */
.entertainment-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.entertainment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.entertainment-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.entertainment-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.5s ease;
}

.entertainment-card:hover .entertainment-card-image {
    transform: scale(1.1);
}

.entertainment-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.entertainment-card-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #ED1C25 0%, #ff6b35 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.4);
    transition: all 0.3s ease;
}

.entertainment-card:hover .entertainment-card-category {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(237, 28, 37, 0.5);
}

.entertainment-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
}

.entertainment-card-title {
    margin: 0 0 1rem 0;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    font-family: 'Mukta', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0;
}

.entertainment-card:hover .entertainment-card-title {
    color: #fa3b4a;
}

.entertainment-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.entertainment-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Mukta', sans-serif;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.entertainment-card-date i {
    font-size: 0.95rem;
    color: #ED1C25;
    text-shadow: 0 2px 8px rgba(237, 28, 37, 0.5);
    transition: all 0.3s ease;
}

.entertainment-card:hover .entertainment-card-date i {
    color: #fa3b4a;
    transform: scale(1.1);
}

/* Large Card - Takes 2 columns, spans 2 rows */
.entertainment-card-large {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 600px;
}

.entertainment-card-large .entertainment-card-content {
    padding: 3rem 2.5rem;
}

.entertainment-card-large .entertainment-card-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    -webkit-line-clamp: 3;
}

/* Medium Cards - Take 3 columns each, 1 row */
.entertainment-card-medium {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 280px;
}

.entertainment-card-medium .entertainment-card-content {
    padding: 1.5rem;
}

.entertainment-card-medium .entertainment-card-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    -webkit-line-clamp: 2;

}

/* Small Cards - Take 2 columns each, 1 row */
.entertainment-card-small {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 250px;
}

.entertainment-card-small .entertainment-card-content {
    padding: 1.25rem;
}

.entertainment-card-small .entertainment-card-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    -webkit-line-clamp: 2;
}

/* No Posts */
.entertainment-no-posts {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entertainment-no-posts-content {
    color: rgba(255, 255, 255, 0.9);
}

.entertainment-no-posts-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.entertainment-no-posts-content h3 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-family: 'Mukta', sans-serif;
}

.entertainment-no-posts-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Mukta', sans-serif;
}

/* Responsive Design */

/* ===== PHOTO FEATURE SECTION ===== */
.photo-feature-section {
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.photo-feature-slider-wrapper {
    position: relative;
    padding: 2rem 0;
}

.photo-feature-swiper {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.photo-feature-slide {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.photo-feature-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.photo-feature-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.5s ease;
}

.photo-feature-slide:hover .photo-feature-image {
    transform: scale(1.05);
}

/* Dark Overlay */
.photo-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Photo Icon - Top Right Corner */
.photo-feature-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(237, 28, 37, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.4);
    transition: all 0.3s ease;
}

.photo-feature-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

.photo-feature-slide:hover .photo-feature-icon {
    background: rgba(237, 28, 37, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(237, 28, 37, 0.5);
}

/* Content Overlay */
.photo-feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 2;
    color: white;
}

.photo-feature-title {
    margin: 0 0 1rem 0;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 900;
    line-height: 1.3;
    color: #ffffff;
    font-family: 'Mukta', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0;
}

.photo-feature-slide:hover .photo-feature-title {
    color: #ff6b35;
}

.photo-feature-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.photo-feature-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.photo-feature-date i {
    font-size: 0.95rem;
    color: #ED1C25;
    transition: all 0.3s ease;
}

.photo-feature-slide:hover .photo-feature-date i {
    color: #ff6b35;
    transform: scale(1.1);
}

/* Navigation Arrows */
.photo-feature-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
    left: 1.5rem;
    right: 1.5rem;
}

.photo-feature-button-prev,
.photo-feature-button-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    position: relative;
    flex-shrink: 0;
}

.photo-feature-button-prev:hover,
.photo-feature-button-next:hover {
    background: rgba(237, 28, 37, 0.95);
    border-color: #ED1C25;
    transform: scale(1.1);
}

.photo-feature-no-posts {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: 'Mukta', sans-serif;
}

.photo-feature-no-posts p {
    margin: 0;
    font-size: 1.2rem;
}

/* Responsive Design */

/* ===== EDUCATION SECTION - SIMPLE GRID ===== */
.education-simple-section {
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.education-simple-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.education-simple-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(237, 28, 37, 0.2);
}

.education-simple-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.education-simple-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.education-simple-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    order: 2;
}

.education-simple-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: 'Mukta', sans-serif;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.education-simple-card:hover .education-simple-title {
    color: #ED1C25;
}

.education-simple-meta {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.education-simple-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ED1C25;
    ;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
}

.education-simple-date i {
    font-size: 0.9rem;
    /* color: #ED1C25; */
    transition: all 0.3s ease;
}

.education-simple-card:hover .education-simple-date i {
    color: #fa3b4a;
    transform: scale(1.1);
}

.education-no-posts {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    font-family: 'Mukta', sans-serif;
}

.education-no-posts p {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design */

/* ===== FOUR COLUMN CATEGORIES SECTION ===== */
.four-column-categories-section {
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.category-column {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ED1C25;
}

.category-column-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Kalam', sans-serif;
    letter-spacing: 0;
}

.category-column-view-all {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.2rem;
    color: #ED1C25;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Kalam', sans-serif;
}

.category-column-view-all:hover {
    color: #fa3b4a;
    gap: 0.5rem;
}

.category-column-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

/* Big Card - First Post */
.category-column-big-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;

}

.category-column-big-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(237, 28, 37, 0.2);
}

.category-column-big-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.category-column-big-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.category-column-big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-column-big-card:hover .category-column-big-image img {
    transform: scale(1.1);
}

.category-column-big-content {
    padding: 1rem;
}

.category-column-big-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: 'Mukta', sans-serif;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0;
}

.category-column-big-card:hover .category-column-big-title {
    color: #ED1C25;
}

.category-column-big-meta {
    display: flex;
    align-items: center;
}

.category-column-big-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #f73441;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
}

.category-column-big-date i {
    font-size: 0.8rem;
    color: #ED1C25;
    transition: all 0.3s ease;
}

.category-column-big-card:hover .category-column-big-date i {
    color: #fa3b4a;
    transform: scale(1.1);
}

/* Small Card - Remaining Posts */
.category-column-small-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-bottom: 11px;
}

.category-column-small-card:hover {
    transform: translateY(-2px);
}

.category-column-small-card:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #dbdbdb;
    left: 0;
    right: 0;
    bottom: 0;
}

.category-column-small-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    padding: 0.75rem;
}

.category-column-small-image {
    flex-shrink: 0;
    width: 80px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.category-column-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-column-small-card:hover .category-column-small-image img {
    transform: scale(1.1);
}

.category-column-small-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    min-width: 0;
}

.category-column-small-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: 'Mukta', sans-serif;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-column-small-card:hover .category-column-small-title {
    color: #ED1C25;
}

.category-column-small-meta {
    display: flex;
    align-items: center;
}

.category-column-small-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #f5303c;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
}

.category-column-small-date i {
    font-size: 0.7rem;
    color: #ED1C25;
    transition: all 0.3s ease;
}

.category-column-small-card:hover .category-column-small-date i {
    color: #fa3b4a;
    transform: scale(1.1);
}

.category-column-no-posts {
    text-align: center;
    padding: 2rem 1rem;
    color: #666;
    font-family: 'Mukta', sans-serif;
}

.category-column-no-posts p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */

/* Big Card - First Post */
.mixed-grid-big-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.mixed-grid-big-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(237, 28, 37, 0.2);
}

.mixed-grid-big-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.mixed-grid-big-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.mixed-grid-big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mixed-grid-big-card:hover .mixed-grid-big-image img {
    transform: scale(1.1);
}

.mixed-grid-big-content {
    padding: 2rem;
}

.mixed-grid-big-title {
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: 'Mukta', sans-serif;
    transition: color 0.3s ease;
}

.mixed-grid-big-card:hover .mixed-grid-big-title {
    color: #ED1C25;
}

.mixed-grid-big-meta {
    display: flex;
    align-items: center;
}

.mixed-grid-big-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Mukta', sans-serif;
    font-weight: 500;
}

.mixed-grid-big-date i {
    font-size: 0.9rem;
    color: #ED1C25;
    transition: all 0.3s ease;
}

.mixed-grid-big-card:hover .mixed-grid-big-date i {
    color: #fa3b4a;
    transform: scale(1.1);
}

/* Small Card - Remaining Posts */
.mixed-grid-small-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mixed-grid-small-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(237, 28, 37, 0.2);
}

.mixed-grid-small-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.mixed-grid-small-image {
    flex-shrink: 0;
    width: 120px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.mixed-grid-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mixed-grid-small-card:hover .mixed-grid-small-image img {
    transform: scale(1.1);
}

.mixed-grid-small-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    min-width: 0;
}

.mixed-grid-small-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: 'Mukta', sans-serif;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mixed-grid-small-card:hover .mixed-grid-small-title {
    color: #ED1C25;
}

.mixed-grid-small-meta {
    display: flex;
    align-items: center;
}

.mixed-grid-small-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    font-family: 'Mukta', sans-serif;
    font-weight: 500;
}

.mixed-grid-small-date i {
    font-size: 0.8rem;
    color: #ED1C25;
    transition: all 0.3s ease;
}

.mixed-grid-small-card:hover .mixed-grid-small-date i {
    color: #fa3b4a;
    transform: scale(1.1);
}

.mixed-grid-no-posts {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    font-family: 'Mukta', sans-serif;
}

.mixed-grid-no-posts p {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design */

/* ===== HEALTH SECTION - REDESIGNED ===== */
.health-redesigned-section {
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.health-featured-large {
    margin-bottom: 3rem;
}

.health-featured-large-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.health-featured-large-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.health-featured-large-image {
    height: 300px;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.health-featured-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.health-featured-large-card:hover .health-featured-large-image img {
    transform: scale(1.05);
}

.health-featured-large-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.health-featured-large-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.health-featured-large-date {
    font-size: 0.9rem;
    color: #ed1c25;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.health-featured-large-title {
    font-size: 1.8em;
    font-family: 'Mukta', sans-serif;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.health-featured-large-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.health-featured-large-title a:hover {
    color: #ED1C25;
}

.health-featured-large-excerpt {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 1.5rem;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.health-featured-large-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
    background: linear-gradient(135deg, #ED1C25 0%, #c90000 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.health-featured-large-btn:hover {
    background: linear-gradient(135deg, #c90000 0%, #a80000 100%);
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.health-grid-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.health-grid-item {
    display: grid;
    grid-template-columns: 207px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.health-grid-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.health-grid-image {
    min-height: 200px;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    width: 200px;
}

.health-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.health-grid-item:hover .health-grid-image img {
    transform: scale(1.08);
}

.health-grid-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.health-grid-title {
    font-size: 1.3rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.health-grid-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.health-grid-title a:hover {
    color: #ED1C25;
}

.health-grid-excerpt {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 1rem;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.health-grid-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.health-grid-date {
    font-size: 0.85rem;
    color: #ed1c25;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.health-grid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #ed1c25;
    text-decoration: none;
    transition: all 0.3s ease;
}

.health-grid-btn:hover {
    background: #ed1c25;
    color: white;
    transform: scale(1.1);
}

.health-grid-btn svg {
    width: 14px;
    height: 14px;
}

.health-no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.health-no-posts-text {
    color: #999;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */

/* ========================================
   MOBILE 480px - Health Responsive
   ======================================== */

/* Premium Footer Styles */
.premium-footer {
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #ed1e23;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    z-index: 1;
}

/* Footer Container */
.footer-container {
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Footer Top */
.footer-top {
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img,
.footer-brand img,
.footer-brand .custom-logo {
    max-width: 150px;
    height: auto;
}

.footer-brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 0.3rem 0;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    letter-spacing: -0.5px;
}

.footer-brand-tagline {
    font-size: 0.8rem;
    color: #ed1e23;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 1.5rem 0;
}

.footer-social h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.3px;
}

.social-links {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    background: #f5f5f5;
    border: 1.5px solid #efefef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: none;
}

.social-link:hover {
    background: #ed1e23;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(237, 30, 35, 0.25);
    border: 1.5px solid #ed1e23;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.25);
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 6px 16px rgba(29, 161, 242, 0.25);
}

.social-link.instagram:hover {
    background: #e4405f;
    border-color: #e4405f;
    box-shadow: 0 6px 16px rgba(228, 64, 95, 0.25);
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 6px 16px rgba(0, 119, 181, 0.25);
}

/* Footer Sections */
.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: #ed1e23;
    border-radius: 1.25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #555555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
    font-weight: 500;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1.5px;
    background: #ed1e23;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #ed1e23;
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 8px;
}

/* Newsletter Section */
.newsletter-text {
    font-size: 0.9rem;
    color: #555555;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #efefef;
    backdrop-filter: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group:focus-within {
    border-color: #ed1e23;
    box-shadow: 0 0 0 3px rgba(237, 30, 35, 0.08);
}

.input-group .form-control {
    background: transparent;
    border: none;
    color: #1a1a1a;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    font-weight: 500;
}

.input-group .form-control::placeholder {
    color: #999999;
    font-weight: 500;
}

.input-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.input-group .btn {
    background: #ed1e23;
    border: none;
    color: white;
    padding: 0.75rem 1.2rem;
    border-radius: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-weight: 600;
}

.input-group .btn:hover {
    background: #c41e3a;
}

.newsletter-success {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 10px;
    padding: 0.75rem;
    color: #15803d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Middle */
.footer-middle {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-middle-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2rem 0;
    text-align: center;
    position: relative;
}

.footer-middle-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #ed1e23;
    border-radius: 2px;
}

.footer-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.footer-post-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-post-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer-post-item:hover .footer-post-image img {
    transform: scale(1.1);
}

.footer-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.footer-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-post-title a:hover {
    color: #ed1e23;
}

.footer-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-post-date {
    font-weight: 500;
}

.footer-post-category {
    color: #ed1e23;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.75rem 0;
    position: relative;
    z-index: 2;
}

.copyright {
    font-size: 0.85rem;
    color: #888888;
    margin: 0;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 1.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: #ed1e23;
}

/* Responsive Design for Footer */

/* Big Slider Styles */
.sports-slider-main {
    position: relative;
}

.sports-slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(237, 28, 37, 0.1);
    height: 100%;
    flex: 1;
}

.sports-main-slider {
    height: 100%;
    min-height: 500px;
    flex: 1;
}

.sports-slider-card {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sports-slider-image {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.sports-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.sports-slider-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #ed1e23;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.3);
}

.sports-slider-content {
    position: relative;
    z-index: 2;
    color: white;
}

.sports-slider-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Mukta', sans-serif;
}

.sports-slider-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sports-slider-title a:hover {
    color: #ED1C25;
}

.sports-slider-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #e0e0e0;
}

.sports-slider-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sports-slider-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sports-slider-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sports-slider-author-info {
    display: flex;
    flex-direction: column;
}

.sports-slider-author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.sports-slider-date {
    font-size: 0.8rem;
    opacity: 0.8;
}

.sports-slider-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sports-slider-arrow:hover {
    background: #ED1C25;
    border-color: #ED1C25;
    transform: scale(1.1);
}

.sports-slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 15;
    pointer-events: none;
}

.sports-slider-prev,
.sports-slider-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.sports-slider-prev:hover,
.sports-slider-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.sports-slider-prev svg,
.sports-slider-next svg {
    color: #333;
}

.sports-slider-pagination {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.sports-slider-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 4px;
}

.sports-slider-pagination .swiper-pagination-bullet-active {
    background: #ED1C25;
}

/* Sidebar News Styles */
.sports-sidebar-news {
    padding-left: 2rem;
}

.sports-sidebar-header {
    margin-bottom: 2rem;
}

.sports-sidebar-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
    padding: 0;
    border: none;
    display: block;
}

.sports-sidebar-divider {
    width: 60px;
    height: 3px;
    background: #ed1e23;
    border-radius: 2px;
}

.sports-sidebar-articles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    height: 100%;
}

.sports-sidebar-articles-list .sports-sidebar-article {
    flex: 1;
    min-height: 200px;
    max-height: 250px;
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.sports-sidebar-article {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 1rem;
    height: auto;
    min-height: 160px;
    padding: 0;
    margin-bottom: 1.5rem;
    position: relative;
}

.sports-sidebar-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.sports-sidebar-image {
    width: 180px;
    height: 100%;
    min-height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.sports-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 1.5rem 1.5rem 0;
    transition: transform 0.3s ease;
}

.sports-sidebar-article:hover .sports-sidebar-image img {
    transform: scale(1.05);
}

.sports-sidebar-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(40, 40, 40, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.sports-sidebar-arrow-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.sports-sidebar-article:hover .sports-sidebar-arrow-btn {
    opacity: 1;
}

.sports-sidebar-arrow-btn:hover {
    background: #ED1C25;
    transform: scale(1.1);
}

.sports-sidebar-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 200px;
}

.sports-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.sports-sidebar-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sports-sidebar-title a:hover {
    color: #FF6B35;
}

.sports-sidebar-excerpt {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    flex: 1;
}

.sports-sidebar-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* .sports-sidebar-author-avatar (duplicate) - now handled by universal author avatar styles above */

/* .sports-sidebar-author (duplicate) - now handled by universal author component styles above */

/* ===== SPORTS SECTION - MODERN REDESIGN ===== */
.sports-section-modern {
    background: #f8f9fa;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Sports Section now uses standard section-header classes */

/* Featured Big Post */
.sports-featured-big {
    margin-bottom: 3rem;
}

.sports-featured-card-big {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.sports-featured-card-big:hover {
    transform: translateY(-6px);
}

.sports-featured-image-big {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f5f5f5;
}

.sports-featured-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.sports-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sports-featured-card-big:hover .sports-featured-img {
    transform: scale(1.1);
}

.sports-featured-overlay-big {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sports-featured-card-big:hover .sports-featured-overlay-big {
    opacity: 1;
}

.sports-featured-category-big {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #ED1C25;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Khand', sans-serif;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.5);
}

.sports-featured-content-big {
    padding: 2.5rem;
}

.sports-featured-title-big {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    font-family: 'Mukta', sans-serif;
    color: #1a1a1a;
    letter-spacing: 0;
}

.sports-featured-title-big a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.sports-featured-title-big a:hover {
    color: #ED1C25;
}

.sports-featured-excerpt-big {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.7;
    /* margin: 0 0 1.5rem 0; */
    font-family: 'Mukta', sans-serif;
}

.sports-featured-meta-big {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* padding-top: 1.5rem; */
    /* border-top: 1px solid #e5e5e5; */
}

.sports-featured-date-big {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ED1C25;
    font-size: 0.9rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
}

.sports-featured-date-big .fa-clock {
    color: #ED1C25;
    font-size: 0.9rem;
}

.sports-featured-date-big span {
    color: #ED1C25;
}

/* Sports section now uses tek-row and tek-col grid system */

/* Sports Grid Card - Matching अर्थतन्त्र Style */
.sports-grid-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sports-grid-card-modern:hover {
    transform: translateY(-8px);

}

.sports-grid-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    height: 150px;
}

.sports-grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sports-grid-card-modern:hover .sports-grid-card-image img {
    transform: scale(1.08);
}

.sports-grid-card-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    color: #ED1C25;
    border-radius: 50%;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sports-grid-card-link:hover {
    transform: scale(1.1);
    background: rgba(237, 28, 37, 0.8);
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.sports-grid-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sports-grid-card-title {
    font-size: 1.1rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0;
}

.sports-grid-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sports-grid-card-title a:hover {
    color: #ED1C25;
}

.sports-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666666;
    font-family: 'Mukta', sans-serif;
}

/* Responsive Design for Modern Sports Section */

/* Large Tablets and Small Desktops */

/* Tablets */

/* Small Tablets and Large Phones */

/* Mobile Phones */

/* Extra Small Devices */

/* ========================================
   MOBILE 480px - Sports Responsive
   ======================================== */

/* ===== ARCHIVE PAGE STYLES ===== */
.archive-page {
    background: #fafafa;
    padding: 3rem 0;
    min-height: 100vh;
}

.archive-container {
    margin: 0 auto;
    padding: 0 2rem;
}

.archive-header {
    margin-bottom: 3rem;
}

.archive-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
}

.archive-description {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.archive-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.archive-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.archive-card-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive-card:hover .archive-card-image img {
    transform: scale(1.05);
}

.archive-card-content {
    padding: 1.5rem;
}

.archive-card-category {
    margin-bottom: 0.75rem;
}

.category-badge {
    display: inline-block;
    background: #ed1e23;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.archive-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.archive-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-card-title a:hover {
    color: #ed1e23;
}

.archive-card-excerpt {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.archive-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.archive-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.archive-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.archive-author-info {
    display: flex;
    flex-direction: column;
}

.archive-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
}

.archive-author-date {
    font-size: 0.8rem;
    color: #888888;
}

/* ===== ARCHIVE PAGINATION STYLES ===== */
.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* WordPress Pagination List */
.page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-numbers li {
    margin: 0;
    padding: 0;
}

/* Pagination Links and Spans */
.page-numbers a,
.page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Pagination Hover State */
.page-numbers a:hover {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 30, 35, 0.25);
}

/* Current Page - Active State */
.page-numbers .page-numbers.current,
.page-numbers span.page-numbers.current {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
    font-weight: 700;
    cursor: default;
    box-shadow: 0 4px 12px rgba(237, 30, 35, 0.2);
}

/* Dots Separator */
.page-numbers .dots,
.pagination .dots {
    background: transparent;
    border: none;
    color: #bbb;
    cursor: default;
    min-width: auto;
    height: auto;
    padding: 0 0.25rem;
}

.page-numbers .dots:hover,
.pagination .dots:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    color: #bbb;
}

/* Previous Button */
.page-numbers .prev,
.page-numbers a.prev {
    min-width: 44px;
}

.page-numbers .prev:hover,
.page-numbers a.prev:hover {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
    transform: translateY(-2px);
}

/* Next Button */
.page-numbers .next,
.page-numbers a.next {
    min-width: 44px;
}

.page-numbers .next:hover,
.page-numbers a.next:hover {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
    transform: translateY(-2px);
}

/* Disabled Pagination States */
.page-numbers .prev.disabled,
.page-numbers .next.disabled,
.page-numbers span.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f9f9f9;
    border-color: #e0e0e0;
    color: #bbb;
}

.page-numbers .prev.disabled:hover,
.page-numbers .next.disabled:hover,
.page-numbers span.disabled:hover {
    background: #f9f9f9;
    border-color: #e0e0e0;
    transform: none;
    box-shadow: none;
}

/* SVG Icons in Pagination */
.page-numbers a svg,
.page-numbers svg {
    width: 18px;
    height: 18px;
    margin: 0 0.35rem;
    vertical-align: middle;
}

/* Alternative Pagination Container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0;
    padding: 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination a:hover {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 30, 35, 0.25);
}

.pagination .current {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
    font-weight: 700;
    cursor: default;
    box-shadow: 0 4px 12px rgba(237, 30, 35, 0.2);
}

/* Mobile Responsive Pagination */

/* Minimal Text Pagination Variant */
.pagination.minimal,
.page-numbers.minimal {
    gap: 1rem;
}

.pagination.minimal a,
.pagination.minimal span,
.page-numbers.minimal a,
.page-numbers.minimal span {
    background: transparent;
    border: none;
    color: #4a5568;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 1rem;
}

.pagination.minimal a:hover,
.page-numbers.minimal a:hover {
    color: #ed1e23;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.pagination.minimal .current,
.page-numbers.minimal .current,
.page-numbers.minimal span.current {
    color: #ed1e23;
    font-weight: 700;
    background: transparent;
    border: none;
}

.archive-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 12px;
}

.archive-empty-icon {
    margin-bottom: 1.5rem;
    color: #ddd;
}

.archive-empty-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.archive-empty-text {
    font-size: 1rem;
    color: #555555;
    margin: 0 0 2rem 0;
}

.archive-empty-button {
    display: inline-block;
    background: #ed1e23;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.archive-empty-button:hover {
    background: #c41e3a;
}

/* ===== SINGLE POST PAGE STYLES ===== */
/* ===== BLOG SINGLE POST PAGE STYLES ===== */
.blog-single-page {
    background: #fafafa;
    padding: 2rem 0 4rem;
    min-height: 100vh;
}

.blog-single-container {
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-single-wrapper {
    width: 100%;
}

/* Sidebar Layout */
.blog-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

.blog-sidebar {
    width: 100%;
}

.blog-sidebar-placeholder {
    background: #f9f9f9;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #888888;
}

/* Widget Styling in Sidebar */
.blog-sidebar .widget {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.blog-sidebar .widget:last-child {
    margin-bottom: 0;
}

.blog-sidebar .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ed1e23;
}

.blog-sidebar .widget-title h3 {
    margin: 0 !important;
}

/* Widget List Styles */
.blog-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .widget li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.blog-sidebar .widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar .widget a {
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-sidebar .widget a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #ed1e23;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-sidebar .widget a:hover {
    color: #ed1e23;
    padding-left: 0.5rem;
}

.blog-sidebar .widget a:hover::before {
    opacity: 1;
}

/* Recent Posts Widget */
.blog-sidebar .widget_recent_entries ul li a {
    font-size: 0.95rem;
}

/* Categories Widget */
.blog-sidebar .widget_categories ul li a {
    font-size: 0.95rem;
}

.blog-sidebar .widget_categories .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 0.8rem;
    color: #888888;
    margin-left: 0.5rem;
}

/* Tags Widget */
.blog-sidebar .widget_tag_cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-sidebar .widget_tag_cloud a {
    display: inline-block;
    background: #f5f5f5;
    color: #555555;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid #e0e0e0;
}

.blog-sidebar .widget_tag_cloud a::before {
    display: none;
}

.blog-sidebar .widget_tag_cloud a:hover {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
    padding-left: 0.85rem;
}

/* Search Widget */
.blog-sidebar .widget_search .search-submit {
    background: #ed1e23;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-sidebar .widget_search .search-submit:hover {
    background: #c41e3a;
    transform: translateY(-1px);
}

.blog-sidebar .widget_search input[type="search"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* Calendar Widget */
.blog-sidebar .widget_calendar table {
    width: 100%;
    font-size: 0.85rem;
}

.blog-sidebar .widget_calendar table th {
    background: #ed1e23;
    color: #ffffff;
    padding: 0.5rem;
    text-align: center;
}

.blog-sidebar .widget_calendar table td {
    border: 1px solid #e0e0e0;
    padding: 0.5rem;
    text-align: center;
}

.blog-sidebar .widget_calendar table a {
    color: #ed1e23;
    font-weight: 700;
}

/* Mobile Responsive for Sidebar */

.blog-post-article {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-article:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Hero Image */
.blog-post-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #efefef);
}

.blog-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-article:hover .blog-post-hero img {
    transform: scale(1.03);
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1), transparent);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.blog-hero-content {
    width: 100%;
}

.blog-post-category {
    margin-bottom: 1rem;
}

.blog-post-category .category-badge {
    display: inline-block;
    background: #ed1e23;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(237, 30, 35, 0.3);
}

/* Post Header */
.blog-post-header {
    padding: 3.5rem 3rem;
    border-bottom: 1px solid #f5f5f5;
}

.blog-post-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
    line-height: 1.15;
    letter-spacing: -0.7px;
}

/* Meta Information */
.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.blog-post-author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blog-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.blog-author-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #888888;
}

.blog-post-date,
.blog-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Share Buttons */
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.share-btn:hover {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

/* Header Divider */
.blog-header-divider {
    height: 1px;
    background: linear-gradient(to right, #e0e0e0, transparent);
}

/* Post Content */
.blog-post-content {
    padding: 3.5rem;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #333333;
    font-family: 'Mukta', sans-serif;
}

.blog-post-content p {
    margin-bottom: 1.75rem;
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 2.5rem 0 1.25rem 0;
    letter-spacing: -0.3px;
}

.blog-post-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    letter-spacing: -0.2px;
}

.blog-post-content h4 {
    font-size: 1.3rem;
    font-weight: 650;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem 0;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post-content img:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.blog-post-content blockquote {
    margin: 2.5rem 0;
    padding: 2rem;
    border-left: 5px solid #ed1e23;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    font-style: italic;
    color: #555555;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.75rem 0 1.75rem 2.5rem;
}

.blog-post-content li {
    margin-bottom: 0.85rem;
    color: #333333;
    line-height: 1.7;
}

.blog-post-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Post Footer */
.blog-post-footer {
    padding: 2.5rem 3rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.tags-label {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-link {
    display: inline-block;
    background: #f5f5f5;
    color: #555555;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.tag-link:hover {
    background: #ed1e23;
    color: #ffffff;
    border-color: #ed1e23;
}

/* Social Share Section */
.social-share-section {
    padding: 1.5rem;
}

.social-share-section .sharethis-inline-share-buttons {
    text-align: center;
}

/* Article Content */
.article-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.article-body {
    margin-bottom: 2rem;
    font-family: 'Mukta', sans-serif;
}

.article-body p {
    font-family: 'Mukta', sans-serif;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.3rem;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Article Author Footer */
.article-author-footer {
    border-top: 2px solid #f8f9fa;
    padding-top: 2rem;
    margin-top: 2rem;
}

.author-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.author-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ed1e23;
    box-shadow: 0 4px 12px rgba(237, 30, 35, 0.2);
    transition: all 0.3s ease;
}

.author-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(237, 30, 35, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.view-articles-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ed1e23, #c41e3a);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(237, 30, 35, 0.3);
    border: none;
    cursor: pointer;
}

.view-articles-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 30, 35, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.view-articles-btn i:last-child {
    transition: transform 0.3s ease;
}

.view-articles-btn:hover i:last-child {
    transform: translateX(4px);
}

/* Responsive Design for Article Author Footer */

/* Enhanced Author Box */
.enhanced-author-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.enhanced-author-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ed1e23, #ff6b6b, #ed1e23);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.enhanced-author-box:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.author-box-container {
    padding: 2.5rem;
}

/* Author Header */
.author-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.author-avatar-section {
    flex-shrink: 0;
}

.author-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.author-avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(237, 30, 35, 0.15);
    transition: all 0.3s ease;
}

.author-status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #28a745;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.author-info-section {
    flex: 1;
    min-width: 0;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ed1e23, #c41e3a);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(237, 30, 35, 0.2);
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0;
}

.author-posts-count,
.author-member-since {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.author-posts-count i,
.author-member-since i {
    color: #ed1e23;
    font-size: 0.8rem;
}

/* Author Bio Section */
.author-bio-section {
    margin-bottom: 2rem;
}

.author-bio-text {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    padding: 1.5rem;
    background: rgba(237, 30, 35, 0.03);
    border-radius: 12px;
    border-left: 4px solid #ed1e23;
}

/* Author Actions */
.author-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.author-action-btn.primary {
    background: linear-gradient(135deg, #ed1e23, #c41e3a);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(237, 30, 35, 0.3);
}

.author-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(237, 30, 35, 0.4);
    color: #ffffff;
}

.author-action-btn.secondary {
    background: #ffffff;
    color: #495057;
    border-color: #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-action-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #ed1e23;
    color: #ed1e23;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.author-action-btn i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.author-action-btn:hover i:last-child {
    transform: translateX(4px);
}

/* Recent Posts Section */
.author-recent-posts {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.recent-posts-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
}

.recent-posts-title i {
    color: #ed1e23;
    font-size: 1rem;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.recent-post-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #ed1e23;
}

.recent-post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.recent-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    color: #6c757d;
    font-size: 1.5rem;
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
}

.recent-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-item:hover .recent-post-title a {
    color: #ed1e23;
}

.recent-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-post-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #6c757d;
    font-size: 0.8rem;
}

.recent-post-date i {
    font-size: 0.7rem;
}

/* Responsive Design */

/* Related Posts */
.blog-related-posts {
    background: #ffffff;
    border-radius: 14px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.blog-related-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2.5rem 0;
    letter-spacing: -0.3px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.blog-related-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-related-card:hover {
    border-color: #ed1e23;
    box-shadow: 0 8px 24px rgba(237, 30, 35, 0.15);
    transform: translateY(-4px);
}

.blog-related-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}

.blog-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-related-card:hover .blog-related-image img {
    transform: scale(1.08);
}

.blog-related-content {
    padding: 1.75rem;
}

.blog-related-title-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.blog-related-title-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-related-title-item a:hover {
    color: #ed1e23;
}

.blog-related-meta {
    font-size: 0.85rem;
    color: #888888;
}

.blog-related-date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Post Navigation */
.blog-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 0;
}

.blog-nav-item {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1.5px solid #f0f0f0;
    border-radius: 14px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-nav-item:hover {
    border-color: #ed1e23;
    box-shadow: 0 8px 24px rgba(237, 30, 35, 0.15);
    transform: translateY(-4px);
}

.blog-nav-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.blog-nav-label {
    font-size: 0.8rem;
    color: #888888;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.blog-nav-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-nav-item:hover .blog-nav-title {
    color: #ed1e23;
}

.blog-nav-prev {
    text-align: left;
}

.blog-nav-next {
    text-align: right;
}

/* Content Pagination */
.blog-content-pagination {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

/* About हाम्रोमत Box */
.blog-about-hamromat {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-about-hamromat .hamromat-about {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hamromat-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #ed1e23;
}

.hamromat-logo img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.site-name-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ed1e23;
    text-align: center;
}

.hamromat-bio-text {
    flex: 1;
}

.hamromat-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hamromat-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #ed1e23;
    border-radius: 2px;
}

.hamromat-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0.75rem;
}

.hamromat-additional {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #888888;
    margin-bottom: 1.25rem;
}

.hamromat-link {
    display: inline-block;
    color: #ed1e23;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.hamromat-link:hover {
    border-bottom-color: #ed1e23;
    transform: translateX(4px);
}

/* Mobile Responsive */

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
}

/* ===== PAGE STYLES ===== */
.page-content {
    background: #fafafa;
    padding: 3rem 0;
    min-height: 100vh;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-article {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.page-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.page-header-simple {
    padding: 2rem;
    border-bottom: 2px solid #ed1e23;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.page-body {
    padding: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
}

.page-body p {
    margin-bottom: 1.5rem;
}

.page-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
}

.page-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem 0;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-body ul,
.page-body ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.page-body li {
    margin-bottom: 0.75rem;
}

.page-edit-link {
    padding: 1rem 2rem;
    border-top: 1px solid #f0f0f0;
    text-align: right;
}

.page-edit-link a {
    color: #ed1e23;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-edit-link a:hover {
    color: #c41e3a;
}

/* Responsive Archive */

/* Sticky Sidebar */
aside {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Related Cards Section */
.related-cards-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-cards-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* Related Card Title Hover */
.related-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.related-card-title:hover {
    color: #ef4444;
}

.related-card-title a {
    text-decoration: none;
    color: inherit;
}

.related-card-title a:hover {
    text-decoration: none;
    color: inherit;
}

/* Related Card Image */
.related-card-image {
    position: relative;
    overflow: hidden;
}

.related-image-cover {
    transition: transform 0.3s ease;
}

.related-card:hover .related-image-cover {
    transform: scale(1.05);
}

/* Related Arrow Button */
.related-arrow-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.related-arrow-btn:hover {
    background: #fff;
    transform: translate(2px, -2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #ef4444;
}

/* Related Brand */
.related-brand {
    flex-shrink: 0;
}

/* Related Card Styling */
.related-card {
    border: none;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.related-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Image Placeholder */
.related-image-placeholder {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

/* Responsive adjustments */

/* ===== SIMPLE MODERN TOP NAVIGATION - CLEAN DESIGN ===== */

/* Top Bar Container */
.modern-topbar {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.6rem 0;
    position: relative;
    z-index: 1010;
    box-shadow: none;
}

/* Topbar Content Below Logo */
.topbar-content-below-logo {
    background: #ffffff;
    text-align: center;
    margin-top: 1rem;
}

.topbar-content-below-logo .topbar-left {
    justify-content: center;
}

/* Topbar Content */
.topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0.85rem;
}

/* Left Section */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Right Section */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Topbar Items */
.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ED1C25;
    font-weight: 600;
    transition: all 0.3s ease;
}

.topbar-item:hover {
    color: #c91820;
}

.topbar-item svg,
.topbar-item i {
    width: 16px;
    height: 16px;
    color: #ED1C25;
    transition: color 0.3s ease;
}

.topbar-item:hover svg,
.topbar-item:hover i {
    color: #c91820;
}

.topbar-item span {
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Nepali Date Item */
.nepali-date-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
}

/* Time Item */
.time-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
}

.time-item i {
    color: #999999;
}

/* Weather Item */
.weather-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
}

.weather-item .weather-icon {
    font-size: 1rem;
}

/* Topbar Divider */
.topbar-divider {
    width: 1px;
    height: 18px;
    background: #e0e0e0;
    margin: 0 0.5rem;
}

/* Topbar Converters */
.topbar-converter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.topbar-converter:hover {
    color: #333333;
}

.topbar-converter i {
    color: #999999;
    font-size: 0.9rem;
}

.topbar-converter:hover i {
    color: #333333;
}

.topbar-converter span {
    font-size: 0.85rem;
}

/* Social Icons */
.topbar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-label {
    color: #999999;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Facebook - Blue */
.social-icon[href*="facebook"] {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-icon[href*="facebook"]:hover {
    background: #1877F2;
    color: #ffffff;
}

/* YouTube - Red */
.social-icon[href*="youtube"] {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-icon[href*="youtube"]:hover {
    background: #FF0000;
    color: #ffffff;
}

/* Twitter - Blue (if used) */
.social-icon[href*="twitter"] {
    color: #1DA1F2;
    background: rgba(29, 161, 242, 0.1);
}

.social-icon[href*="twitter"]:hover {
    background: #1DA1F2;
    color: #ffffff;
}

/* Instagram - Gradient (if used) */
.social-icon[href*="instagram"] {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-icon[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-icon i {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Responsive Top Bar */

/* ===== TOP FEATURED SECTION ===== */

/* Top Featured Section Container */
.top-featured-section {
    background: #ffffff;
    padding: 3rem 0;
}

/* Top Featured Item - Centered Layout */
.top-featured-item {
    margin-bottom: 3rem;
}

/* Top Featured Card */
.top-featured-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.top-featured-card:after {
    content: "";
    border-bottom: 1px solid #cecece;
    width: 80%;
}

/* Top Featured Content - Center Aligned */
.top-featured-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 0 auto;
}

/* Top Featured Title - Dark, Bold, Big Font */
.top-featured-title {
    font-size: 3.25em;
    color: #1a1a1a;
    transition: all 0.3s ease;
    line-height: 1.4;
    font-family: "Mukta", sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.top-featured-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-featured-title a:hover {
    color: #dc3545;
}

/* Top Featured Excerpt - Red Color */
.top-featured-excerpt {
    font-size: 1rem;
    color: #dc3545;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
}

/* Top Featured Image - Full Width, Centered */
.top-featured-image {
    width: 100%;
    max-width: 100%;
    max-height: 600px;
    height: auto;
    overflow: hidden;
}

.top-featured-image a {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

.top-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: cover;
}

/* Top Featured Meta - Author & Date */
.top-featured-meta {
    width: 100%;
    display: flex;
    justify-content: center;
}

.featured-author-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.top-featured-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px dashed #bf1e2e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2392156863);
    padding: 2px;
    flex-shrink: 0;
}

.top-featured-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-details {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    text-align: left;
    white-space: nowrap;
}

.post-date {
    font-size: 0.8em;
    color: #dc3445;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Responsive Design */

/* ===== COPY PERMISSION FEATURE ===== */

/* Copy Protection Indicator */
.copy-permission-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: help;
}

.copy-permission-badge.protected {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.copy-permission-badge.protected i {
    font-size: 0.9rem;
}

.copy-permission-badge.protected:hover {
    background-color: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.5);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.copy-permission-badge.allowed {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.copy-permission-badge.allowed i {
    font-size: 0.9rem;
}

.copy-permission-badge.allowed:hover {
    background-color: rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.5);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

/* Copy Protected Content Alert */
.copy-protection-alert {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #dc3545;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    font-size: 0.95rem;
    max-width: 300px;
    animation: slideInRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.copy-protection-alert.success {
    background: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.copy-protection-alert i {
    font-size: 1.1rem;
}

/* Copy Button in Article Header */
.article-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    color: #1a1a1a;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
}

.article-copy-btn:hover:not(.disabled) {
    background: #e8e8e8;
    border-color: #999;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-copy-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.article-copy-btn i {
    font-size: 0.95rem;
}

/* Protected Images - No Drag, No Right-Click */
.copy-protected-content img {
    /* Prevent image dragging */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;

    /* Prevent context menu on image */
    -webkit-touch-callout: none;
}

.copy-protected-content img::selection {
    background: transparent;
}

/* Responsive Copy Permission */

/* ===== SKELETON LOADER - TRENDING CATEGORIES ===== */

.trending-skeleton-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.trending-skeleton-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.trending-skeleton-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e5e7eb;
}

.trending-skeleton-title {
    width: 100%;
    height: 1rem;
    background: #e5e7eb;
    border-radius: 8px;
}

.trending-skeleton-count {
    width: 60%;
    height: 0.8rem;
    background: #e5e7eb;
    border-radius: 8px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===== HIGHLIGHT SECTION - SWIPER CAROUSEL MINIMAL ===== */

.highlight-section {
    padding: 3rem 0;
    background: #fff;
}

/* Header Styles */
.highlight-header-modern {
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-title-modern {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Swiper Wrapper */
.highlight-swiper-wrapper {
    position: relative;
}

.highlight-swiper {
    width: 100%;
    padding-bottom: 0;
    position: relative;
}

.highlight-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Swiper Slide */
.highlight-swiper .swiper-slide {
    height: auto;
    width: 340px;
}

/* Card Swiper Design */
.highlight-card-swiper {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    position: relative;
    padding: 0.5rem;
}

.highlight-card-swiper:hover {
    transform: translateY(-3px);
}

.highlight-card-swiper:hover .highlight-image-swiper img {
    transform: scale(1.03);
}

/* Image Container */
.highlight-image-swiper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.highlight-image-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Category Badge */
.highlight-category-swiper {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ED1C25;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Content Area */
.highlight-content-swiper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-title-swiper {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Mukta', sans-serif;
}

.highlight-date-swiper {
    font-size: 0.8rem;
    color: #ed1c24;
    font-weight: 600;
}

/* Swiper Navigation - Bullet Pagination */
.highlight-swiper-pagination {
    position: relative !important;
    bottom: auto;
    left: auto;
    transform: none;
    width: auto;
    z-index: 5;
    padding: 0;
    background: none;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(237, 28, 37, 0.3);
    opacity: 0.5;
    margin: 0 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: none;
}

.highlight-swiper-pagination .swiper-pagination-bullet:hover {
    background: rgba(237, 28, 37, 0.6);
    opacity: 0.8;
}

.highlight-swiper-pagination .swiper-pagination-bullet-active {
    background: #ED1C25;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(237, 28, 37, 0.3);
}

/* Responsive Design */

/* ===== SAMACHAR SECTION - LEFT FEATURED + RIGHT SIDE ARTICLES ===== */

.news-category-section {
    background: #fff;
    padding: 3rem 0;
}

/* Featured Card - Large Left with Text Overlay */
.samachar-featured-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 450px;
    position: relative;
}

.samachar-featured-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.samachar-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.samachar-featured-card:hover .samachar-featured-image img {
    transform: scale(1.05);
}

.samachar-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.samachar-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ED1C25;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.samachar-featured-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 0.75rem;
}

.samachar-featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.samachar-featured-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Side Articles Grid - Image Top, Content Below */
.samachar-side-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.samachar-side-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.samachar-side-card:hover {
    border-color: #ED1C25;
    box-shadow: 0 10px 20px rgba(237, 28, 37, 0.1);
}

.samachar-side-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
}

.samachar-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.samachar-side-card:hover .samachar-side-image img {
    transform: scale(1.08);
}

.samachar-side-content {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.5rem;
}

.samachar-side-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.samachar-side-card:hover .samachar-side-title {
    color: #ED1C25;
}

.samachar-side-category {
    font-size: 0.7rem;
    color: #ED1C25;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsive Design */

.category-news-grid {
    margin-top: 2rem;
}

/* Sidebar */
.news-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Advertisement Placeholder */
.sidebar-ad-placeholder {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    transition: all 0.3s ease;
}

.sidebar-ad-placeholder:hover {
    border-color: #ED1C25;
    background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
}

.ad-placeholder-content {
    text-align: center;
    color: #999;
}

.ad-placeholder-content i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
    display: block;
}

.ad-placeholder-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: #999;
}

/* Category News Card - List Style */
.cat-news-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.cat-news-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cat-news-card:hover {
    transform: translateY(-4px);
    border-color: #ED1C25;
    box-shadow: 0 12px 28px rgba(237, 28, 37, 0.1);
}

/* News Image */
.cat-news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.cat-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-news-card:hover .cat-news-image img {
    transform: scale(1.05);
}

/* News Badge */
.cat-news-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ED1C25;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* News Content */
.cat-news-content {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    flex-grow: 1;
}

.cat-news-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-news-card:hover .cat-news-title {
    color: #ED1C25;
}

.cat-news-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* News Meta */
.cat-news-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.cat-news-date {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cat-news-date i {
    color: #ED1C25;
    font-size: 0.75rem;
}

/* Responsive Design */

/* ===== INTERVIEW SECTION - REDESIGNED TO MATCH THEME ===== */

/* Main container with proper spacing */
.interview-redesigned-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.interview-redesigned-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(237, 28, 37, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Featured Interview Container */
.interview-featured-container {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Interview Advertisement Sidebar */
.interview-sidebar-ad {
    position: sticky;
    top: 100px;
    z-index: 1;
}

.interview-sidebar-ad .ad-placeholder {
    min-height: 400px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    font-size: 0.9rem;
}

/* Featured Interview Card */
.interview-featured-card {
    background: #0055a5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 0;
    min-height: 350px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.interview-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(237, 28, 37, 0.2);
}

.interview-featured-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 0 12px 12px 0;
}

.interview-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.interview-featured-card:hover .interview-featured-image img {
    transform: scale(1.08);
}

.interview-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.interview-featured-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.interview-featured-date {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interview-featured-date i {
    font-size: 0.9rem;
}

.interview-featured-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
    font-family: 'Mukta', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.interview-quote-icon {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1;
    margin-top: 0.25rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.interview-featured-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
}

.interview-featured-title a:hover {
    color: #ED1C25;
}

.interview-featured-excerpt {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    flex: 1;
}

.interview-featured-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ED1C25;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.2);
    width: fit-content;
}

.interview-featured-read-btn:hover {
    background: #c90000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 37, 0.4);
    color: white;
}

.interview-featured-read-btn svg {
    transition: transform 0.3s ease;
}

.interview-featured-read-btn:hover svg {
    transform: translateX(2px);
}

/* Interview List - Modern List Layout - 2 Columns */
.interview-list-modern {
    position: relative;
    z-index: 1;
}

.interview-list-item {
    width: 100%;
    height: 100%;
}

.interview-list-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    align-items: stretch;
    padding: 0;
    animation: slideInUp 0.8s ease-out both;
    min-height: 120px;
    height: 100%;
}

.interview-list-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(237, 28, 37, 0.2);
}

.interview-list-image-link {
    text-decoration: none;
    display: block;
    flex-shrink: 0;
    height: 100%;
    align-self: stretch;
}

.interview-list-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    height: 100%;
    width: 140px;
    flex-shrink: 0;
}

.interview-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.interview-list-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.interview-list-link-overlay svg {
    color: #ffffff;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.interview-list-image-link:hover .interview-list-link-overlay {
    opacity: 1;
}

.interview-list-image-link:hover .interview-list-link-overlay svg {
    transform: scale(1.1);
}

.interview-list-image-link:hover .interview-list-image img {
    transform: scale(1.08);
}

.interview-list-content {
    padding: 0.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.interview-list-title {
    font-size: 1.2rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.interview-list-quote-icon {
    color: #ED1C25;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 0.2rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.interview-list-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
}

.interview-list-title a:hover {
    color: #ED1C25;
}

.interview-list-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.interview-list-date {
    font-size: 0.85rem;
    color: #ed1c25;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interview-list-date i {
    font-size: 0.85rem;
}

/* Responsive - Tablet and below */

/* Responsive - Mobile */

/* Responsive - Small mobile */

/* ===== MOBILE 480px - Interview Responsive ===== */

/* ===== SIDEBAR ARTICLE CARD GRID LAYOUT (col-lg-6) ===== */

/* Grid Style - For Raajneeti Samchar and Vichar sections */
.sidebar-article-card.grid-style {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.sidebar-article-card.grid-style:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.sidebar-article-card.grid-style .sidebar-article-content {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-article-card.grid-style .sidebar-article-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-article-card.grid-style .sidebar-article-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.sidebar-article-card.grid-style .sidebar-article-title a:hover {
    color: #ff6b35;
}

.sidebar-article-card.grid-style .sidebar-article-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-article-card.grid-style .sidebar-article-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 0;
}

.sidebar-article-card.grid-style .sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 0;
}

.sidebar-article-card.grid-style:hover .sidebar-article-image img {
    transform: scale(1.05);
}

.sidebar-article-card.grid-style .sidebar-arrow-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.sidebar-article-card.grid-style:hover .sidebar-arrow-btn {
    opacity: 1;
}

.sidebar-article-card.grid-style .sidebar-arrow-btn:hover {
    background: #ff6b35;
    transform: translate(-50%, -50%) scale(1.1);
}

.sidebar-article-card.grid-style .sidebar-arrow-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Opinion Grid Layout */
.opinion-grid-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.opinion-grid-layout .col-lg-6 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
}

/* Responsive Design for Grid */

/* ===== SOCIETY SECTION - 4 COLUMN GRID WITH OVERLAY ===== */
/* Specific overrides for society section if needed */

.society-card-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

.society-card-overlay:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.society-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.society-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.society-card-overlay:hover .society-card-image img {
    transform: scale(1.05);
}

.society-card-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgb(0 0 0 / 89%) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.society-card-overlay:hover .society-card-overlay-bg {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.society-card-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.society-card-category {
    display: inline-block;
    background: rgba(237, 28, 37, 0.95);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.society-card-title {
    margin: 0 0 0.75rem 0;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Mukta', sans-serif;
    line-height: 1.4;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0;
}

.society-card-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.society-card-title a:hover {
    color: #fff;
}

.society-card-excerpt {
    font-size: 1.3rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.society-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.society-card-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.society-card-date i {
    font-size: 0.75rem;
    color: #FF6B35;
}

.society-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ed1c25;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.society-card-link:hover {
    background: #FF6B35;
    transform: scale(1.1);
}

.society-card-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Responsive Design for Society Grid */

/* ========================================
   MOBILE 480px - Society Responsive
   ======================================== */

/* ===== ECONOMICS SECTION - SAME DESIGN AS INTERVIEW ===== */

.economics-redesigned-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: #3a3a3a17;
}

.economics-redesigned-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(237, 28, 37, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Featured Economics Container */
.economics-featured-container {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Featured Economics Card */
.economics-featured-card {
    border-radius: 20px;
    overflow: hidden;
    background: #0885c96e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
    animation: slideInUp 0.8s ease-out 0.8s both;
    color: white;
}

.economics-featured-card:hover {
    transform: translateY(-5px);
}

.economics-featured-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.economics-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.economics-featured-card:hover .economics-featured-image img {
    transform: scale(1.05);
}

.economics-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #ED1C25;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.economics-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.economics-featured-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.economics-featured-date {
    color: #ed1c25;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.economics-featured-date i {
    font-size: 0.9rem;
}

.economics-featured-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
}

.economics-featured-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.economics-featured-title a:hover {
    color: #ED1C25;
}

.economics-featured-excerpt {
    font-size: 1.3rem;
    color: #000000;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    flex: 1;
}

.economics-featured-read-btn {
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: fit-content;
    background: #ED1C25;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Kalam', sans-serif;
    letter-spacing: 0;
}

.economics-featured-read-btn:hover {
    background: #d70b14;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 37, 0.4);
    color: #ffffff;
}

.economics-featured-read-btn svg {
    width: 20px;
    height: 20px;
    color: #ff0000;
    stroke: #ff0000;
    background: white;
    border-radius: 3rem;
}

.economics-featured-read-btn:hover svg {
    transform: translateX(2px);
}

/* Economics Grid - Modern Cards */

.economics-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.8s ease-out both;
    height: 100%;
}

.economics-card-modern:nth-child(1) {
    animation-delay: 1s;
}

.economics-card-modern:nth-child(2) {
    animation-delay: 1.1s;
}

.economics-card-modern:nth-child(3) {
    animation-delay: 1.2s;
}

.economics-card-modern:nth-child(4) {
    animation-delay: 1.3s;
}

.economics-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(237, 28, 37, 0.2);
}

.economics-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    height: 150px;
}

.economics-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.economics-card-modern:hover .economics-card-image img {
    transform: scale(1.08);
}

.economics-card-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    color: #ED1C25;
    border-radius: 50%;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.economics-card-link:hover {
    transform: scale(1.1);
    background: rgba(237, 28, 37, 0.8);
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.economics-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.economics-card-title {
    font-size: 1.1rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.economics-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.economics-card-title a:hover {
    color: #ED1C25;
}

/* Responsive - Tablet and below */

/* Responsive - Mobile */

/* ========================================
   MOBILE 480px - Economics Cards
   Horizontal Layout: Left Image, Right Content
   ======================================== */

/* ========================================
   Scroll to Top Button - Modern Design
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ED1C25, #ff4757);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(237, 28, 37, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.scroll-to-top:hover::before {
    width: 300px;
    height: 300px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: scrollToTopPulse 2s ease-in-out infinite;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ff4757, #ED1C25);
    box-shadow: 0 6px 30px rgba(237, 28, 37, 0.6);
    transform: translateY(-5px) scale(1.05);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.98);
}

.scroll-to-top i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

/* Pulse animation on show */
@keyframes scrollToTopPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(237, 28, 37, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(237, 28, 37, 0.7);
    }
}

/* Responsive adjustments */

/* ===== MODERN ARCHIVE PAGE DESIGN ===== */
.modern-archive-page {
    background: #fafafa;
    min-height: 100vh;
    padding-bottom: 4rem;
}

/* Archive Hero Section */
.modern-archive-hero {
    background: #0053a71f;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.modern-archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background-image: url(../../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.archive-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumb */
.archive-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgb(27 26 26 / 90%);
}

.archive-breadcrumb a {
    color: rgb(35 35 35 / 90%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    color: rgb(35 35 35 / 90%);
    margin: 0 0.25rem;
}

.breadcrumb-current {
    color: rgb(35 35 35 / 90%);
    font-weight: 600;
}

/* Archive Title */
.modern-archive-title {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(35 35 35 / 90%);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    font-family: 'Khand', sans-serif;
    letter-spacing: -0.02em;
}

.tag-icon {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Archive Description */
.modern-archive-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    max-width: 800px;
}

/* Archive Meta Info */
.archive-meta-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.archive-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.archive-count i {
    font-size: 0.9rem;
}

/* Archive Grid */
.modern-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

/* Archive Card */
.modern-archive-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-archive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(237, 28, 37, 0.2);
}

/* Card Image */
.modern-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.modern-card-image {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-archive-card:hover .modern-card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-archive-card:hover .image-overlay {
    opacity: 1;
}

/* Category Badge */
.modern-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.modern-category-badge {
    display: inline-block;
    background: #ED1C25;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(237, 28, 37, 0.3);
}

/* Card Content */
.modern-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.modern-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    font-family: 'Mukta', sans-serif;
}

.modern-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-card-title a:hover {
    color: #ED1C25;
}

.modern-card-excerpt {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer */
.modern-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.modern-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.modern-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.modern-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.modern-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-author-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.modern-author-date,
.modern-reading-time {
    font-size: 0.75rem;
    color: #888888;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.modern-author-date i,
.modern-reading-time i {
    font-size: 0.7rem;
}

/* Read More Button */
.modern-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ED1C25;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.modern-read-more:hover {
    color: #c41e3a;
    gap: 0.75rem;
}

.modern-read-more i {
    transition: transform 0.3s ease;
}

.modern-read-more:hover i {
    transform: translateX(3px);
}

/* Pagination */
.modern-archive-pagination {
    margin-top: 4rem;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
}

.modern-archive-pagination .page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modern-archive-pagination .page-numbers li {
    margin: 0;
}

.modern-archive-pagination .page-numbers a,
.modern-archive-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modern-archive-pagination .page-numbers a:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
    color: #1a1a1a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.modern-archive-pagination .page-numbers .current {
    background: #ED1C25;
    border-color: #ED1C25;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(237, 28, 37, 0.2);
}

.modern-archive-pagination .page-numbers .prev,
.modern-archive-pagination .page-numbers .next {
    gap: 0.5rem;
    font-weight: 600;
}

.modern-archive-pagination .page-numbers .prev i,
.modern-archive-pagination .page-numbers .next i {
    font-size: 0.85rem;
}

.modern-archive-pagination .page-numbers .dots {
    background: transparent;
    border: none;
    color: #999999;
    cursor: default;
    box-shadow: none;
    min-width: auto;
    padding: 0 0.5rem;
}

.modern-archive-pagination .page-numbers .dots:hover {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Empty State */
.modern-archive-empty {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.empty-illustration {
    margin-bottom: 2rem;
    color: #cccccc;
}

.empty-illustration svg {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.empty-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    font-family: 'Khand', sans-serif;
}

.empty-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.empty-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ED1C25;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 28, 37, 0.2);
}

.empty-button:hover {
    background: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 28, 37, 0.3);
    color: #ffffff;
}

/* Responsive Design */

/* ===== TAGS NAVIGATION BAR ===== */
.tags-navigation-bar {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1015;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.tags-navigation-wrapper {
    width: 100%;
    overflow: hidden;
}

.tags-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 transparent;
}

.tags-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.tags-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.tags-scroll-container::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 2px;
}

.tags-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #d0d0d0;
}

.tags-list-navigation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    white-space: nowrap;
    justify-content: center;
    min-width: max-content;
}

.tag-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    color: #495057;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Mukta', sans-serif;
}

.tag-nav-item:hover {
    background: #ED1C25;
    border-color: #ED1C25;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(237, 28, 37, 0.2);
}

.tag-nav-text {
    line-height: 1;
}

.tag-nav-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.35rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}

.tag-nav-item:hover .tag-nav-count {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Responsive Design */

/* ===== SIDEBAR NEWS TABS ===== */
.sidebar-news-tabs {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.news-tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e9ecef;
    background: #f8f9fa;
    padding: 0;
}

.news-tab-btn {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Mukta', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.news-tab-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.news-tab-btn.active {
    color: #ED1C25;
    background: #ffffff;
}

.news-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ED1C25 0%, #ff6b35 100%);
    border-radius: 2px 2px 0 0;
}

.news-tab-icon {
    font-size: 1.1rem;
    display: inline-block;
}

.news-tab-label {
    font-weight: 600;
}

.news-tab-content {
    display: none;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease-in;
}

.news-tab-content.active {
    display: block;
}

/* Sidebar News Item */
.sidebar-news-item {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.sidebar-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-news-link {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
}

.sidebar-news-link:hover {
    gap: 1rem;
}

.sidebar-news-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.sidebar-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sidebar-news-link:hover .sidebar-news-image img {
    transform: scale(1.08);
}

.sidebar-news-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
}

.sidebar-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sidebar-news-title {
    font-size: 0.95rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.4rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-link:hover .sidebar-news-title {
    color: #ED1C25;
}

.sidebar-news-meta {
    font-size: 0.8rem;
    color: #ff0000;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sidebar-news-meta i {
    font-size: 0.75rem;
}

/* Responsive Design */

/* ===== RELATED CARDS - REDESIGNED ===== */
.related-cards-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.related-cards-title {
    font-size: 1.8rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ED1C25;
    display: inline-block;
}

.related-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.related-card-modern {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-card-modern:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.related-image-col {
    height: 200px;
}

.related-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.related-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.related-card-modern:hover .related-image-img {
    transform: scale(1.08);
}

.related-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.related-card-modern:hover .related-image-overlay {
    opacity: 1;
}

.related-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.related-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
}

.related-content-col {
    display: flex;
    align-items: center;
}

.related-content-wrapper {
    padding: 1.5rem;
    width: 100%;
}

.related-card-title {
    font-size: 1.1rem;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.related-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card-title a:hover {
    color: #ED1C25;
}

.related-card-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.related-card-date {
    font-size: 0.85rem;
    color: #ED1C25;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.related-card-date i {
    font-size: 0.75rem;
}

.related-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.related-read-more:hover {
    background: linear-gradient(135deg, #c90000 0%, #ff5722 100%);
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 28, 37, 0.3);
}

.related-read-more svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Responsive Design */

/* ========================================
   FOOTER WIDGET NAV MENU - Enhanced Design
   ======================================== */

/* Footer Widget Container */
.footer-widget {
    padding: 2rem;
}

.footer-widget .widget {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Footer Widget Title */
.footer-widget .widget-title,
.footer-widget .widgettitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ee0000;
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    font-family: 'Kalam', sans-serif;
    position: relative;
    display: block;
}

.footer-widget .widget-title::after,
.footer-widget .widgettitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ED1C25, #ff4d6d);
    border-radius: 2px;
}

/* Navigation Menu Widget */
.footer-widget.widget_nav_menu {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-widget.widget_nav_menu .widget {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Navigation Menu Lists */
.footer-widget.widget_nav_menu ul,
.widget_nav_menu ul {
    padding: 0 !important;
    margin: 0 !important;
}

.footer-widget.widget_nav_menu ul li,
.widget_nav_menu ul li {
    list-style: none;
}

/* Link Hover Animation */
.footer-widget.widget_nav_menu ul li a::before,
.widget_nav_menu ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ED1C25, #ff4d6d);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.footer-widget.widget_nav_menu ul li a:hover,
.widget_nav_menu ul li a:hover {
    color: #ffffff;
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-widget.widget_nav_menu ul li a:hover::before,
.widget_nav_menu ul li a:hover::before {
    width: 10px;
}

/* Active Link State */
.footer-widget.widget_nav_menu ul li.current-menu-item>a,
.widget_nav_menu ul li.current-menu-item>a {
    color: #ED1C25;
    font-weight: 600;
}

.footer-widget.widget_nav_menu ul li.current-menu-item>a::before,
.widget_nav_menu ul li.current-menu-item>a::before {
    width: 10px;
}

/* Nested Lists (Submenu) */
.footer-widget.widget_nav_menu ul ul,
.widget_nav_menu ul ul {
    margin-left: 1rem !important;
    padding-left: 0 !important;
    margin-top: 0.5rem !important;
    border-left: 2px solid rgba(237, 28, 37, 0.3);
    padding-left: 1rem !important;
}

.footer-widget.widget_nav_menu ul ul li a,
.widget_nav_menu ul ul li a {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.footer-widget.widget_nav_menu ul ul li a:hover,
.widget_nav_menu ul ul li a:hover {
    color: #ffffff;
}

/* Link Icon Styling */
.footer-widget.widget_nav_menu ul li a .link-icon,
.widget_nav_menu ul li a .link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-widget.widget_nav_menu ul li a:hover .link-icon,
.widget_nav_menu ul li a:hover .link-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Arrow Icon */
.footer-widget.widget_nav_menu ul li a::after,
.widget_nav_menu ul li a::after {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-widget.widget_nav_menu ul li a:hover::after,
.widget_nav_menu ul li a:hover::after {
    opacity: 1;
}

/* Empty Widget Message */
.footer-widget .widget-empty,
.widget_nav_menu .widget-empty {
    color: #b0b0b0;
    font-size: 0.9rem;
    padding: 1rem 0;
    font-style: italic;
}

/* Responsive Design */

/* ========================================
   FOOTER EXTRA LINKS MENU - Simple Style
   ======================================== */

/* Menu Links */
.menu-extra-links-container a,
#menu-extra-links a {
    color: #403f3f;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    font-family: 'Mukta', sans-serif;
    transition: color 200ms ease;
}

.menu-extra-links-container a:hover,
#menu-extra-links a:hover {
    color: #dc3545;
}

/* Responsive */

/* ========================================
   CUSTOM BADGE - Single Post Subheading
   ======================================== */

.custom-badge {
    display: inline-block;
    background: rgba(237, 28, 37, 0.15);
    border: 1.5px solid rgba(237, 28, 37, 0.4);
    color: #1a1a1a;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.custom-badge:hover {
    background: rgba(237, 28, 37, 0.25);
    border-color: rgba(237, 28, 37, 0.6);
    color: #ED1C25;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 28, 37, 0.15);
}

/* Desktop (1200px and above) */

/* Large Tablet (992px - 1199px) */

/* Tablet (768px - 991px) */

/* Small Tablet (576px - 767px) */

/* Mobile (480px - 575px) */

/* Mobile (360px - 479px) */

/* Extra small devices (below 360px) */

/* ========================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   Mobile-First Responsive Design System
   ======================================== */

/* ===== IMPROVED MOBILE SPACING & PADDING ===== */

/* Reduce padding on small devices for better space usage */

/* ===== RESPONSIVE TYPOGRAPHY ===== */

/* Use fluid typography for better scaling across devices */
h1 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    line-height: clamp(1.2, 1.4, 1.6);
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

h2 {
    font-size: clamp(1.3rem, 4vw, 2.5rem);
    line-height: clamp(1.2, 1.4, 1.6);
    margin-bottom: clamp(0.6rem, 1.5vw, 1.25rem);
}

h3 {
    font-size: clamp(1.1rem, 3.5vw, 1.8rem);
    line-height: 1.4;
    margin-bottom: clamp(0.5rem, 1rem, 1rem);
}

h4,
h5,
h6 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.4;
}

p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: clamp(1.5, 1.6, 1.8);
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

/* ===== RESPONSIVE IMAGES & CONTAINERS ===== */

/* Make all images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Picture elements */
picture {
    display: block;
    max-width: 100%;
}

/* Fix image containers for proper aspect ratios */
.image-container,
.img-wrapper,
[style*="aspect-ratio"] {
    width: 100%;
    height: auto;
}

/* Ensure featured images don't overflow */
.featured-image,
.featured-article-card,
.featured-post-card,
.province-featured-card,
.news-card-slider {
    overflow: hidden;
}

.featured-image img,
.featured-article-card img,
.featured-post-card img,
.province-featured-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== MOBILE GRID ADJUSTMENTS ===== */

/* Responsive grid columns */

/* ===== RESPONSIVE FLEXBOX ADJUSTMENTS ===== */

/* Stack flex items on mobile */

/* ===== RESPONSIVE BUTTON LAYOUT ===== */

/* Stack buttons on mobile */

/* ===== RESPONSIVE SIDEBAR ADJUSTMENTS ===== */

/* Stack sidebars on mobile */

/* ===== RESPONSIVE CARD ADJUSTMENTS ===== */

/* Improve card layouts for small screens */

/* ===== RESPONSIVE TEXT OVERFLOW HANDLING ===== */

/* Better text wrapping and overflow on mobile */

/* ===== RESPONSIVE SPACING FIX ===== */

/* Ensure proper gap/margin on small devices */

/* ===== RESPONSIVE MODAL/OVERLAY ADJUSTMENTS ===== */

/* Fix modals on mobile */

/* ===== RESPONSIVE VIDEO HANDLING ===== */

/* Responsive video embeds */
.video-container,
.embed-responsive,
[class*="video"],
iframe[src*="youtube"],
iframe[src*="vimeo"] {
    position: relative;
    width: 100%;
    max-width: 100%;
}

iframe {
    max-width: 100%;
    height: auto;
}

/* ===== RESPONSIVE UTILITY CLASSES ===== */

/* Display utilities for mobile */

/* ===== RESPONSIVE FONT SCALING ===== */

/* Improve readability across devices */

/* ===== RESPONSIVE ASPECT RATIO ===== */

/* Maintain aspect ratios on responsive containers */
.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.aspect-ratio-16-9 img,
.aspect-ratio-4-3 img,
.aspect-ratio-1-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== RESPONSIVE CONTAINER QUERIES (Future Ready) ===== */

/* Ensure containers don't overflow on any device */

/* ===== NEWS SECTION LAYOUT ===== */
.news-section-layout {
    padding: 3rem 0;
}

/* News Layout Article (Left & Right Side) */
/* ========================================
   NEWS LAYOUT ARTICLE - RESPONSIVE
   Desktop: Image top, content below (vertical)
   Mobile: Image left, content right (horizontal)
   ======================================== */

.news-layout-article {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.news-layout-article:last-child {
    margin-bottom: 0;
}

.news-layout-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Left Image */
.news-layout-image {
    position: relative;
    width: 140px;
    min-width: 140px;
    height: 120px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.news-layout-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-layout-article:hover .news-layout-image img {
    transform: scale(1.05);
}

/* Right Content */
.news-layout-content {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-layout-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0;
}

.news-layout-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-layout-article:hover .news-layout-title a {
    color: #ED1C25;
}

.news-layout-meta {
    margin-top: auto;
}

.news-layout-date {
    font-size: 0.8rem;
    color: #f93a47;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 0.5rem;
}

.news-layout-date i {
    color: #ED1C25;
    font-size: 0.75rem;
}

/* ========================================
   MOBILE RESPONSIVE (max-width: 480px)
   Horizontal Layout: Image Left, Content Right
   ======================================== */

/* News Layout Featured (Big News - Center) */
.news-layout-featured {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-layout-featured:hover {
    transform: translateY(-4px);
}

.news-layout-featured-content {
    padding: 1em 1em 0;
}

.news-layout-featured-title {
    margin: 0 0 1rem 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0;
}

.news-layout-featured-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-layout-featured:hover .news-layout-featured-title a {
    color: #ED1C25;
}

.news-layout-featured-meta {
    margin-bottom: 1rem;
}

.news-layout-featured-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: #f73542;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-layout-featured-date i {
    color: #ED1C25;
    font-size: 0.875rem;
}

.news-layout-featured-excerpt {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-layout-featured-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f0f0f0;
}

.news-layout-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-layout-featured:hover .news-layout-featured-image img {
    transform: scale(1.05);
}

/* Image Placeholder */
.news-layout-article .image-placeholder,
.news-layout-featured .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #999;
}

/* Responsive Design */

/* ========================================
   MOBILE 480px - Featured News Optimization
   ======================================== */

/* ===== HORIZONTAL GRID SECTION ===== */
.horizontal-grid-section {
    margin-top: 2rem;
}

.horizontal-grid-article {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: all 0.3s ease;
    height: 100%;
}

.horizontal-grid-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.horizontal-grid-image {
    width: 150px;
    min-width: 150px;
    height: 120px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.horizontal-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.horizontal-grid-article:hover .horizontal-grid-image img {
    transform: scale(1.05);
}

.horizontal-grid-content {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.horizontal-grid-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0;
}

.horizontal-grid-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.horizontal-grid-article:hover .horizontal-grid-title a {
    color: #ED1C25;
}

.horizontal-grid-meta {
    margin-top: auto;
}

.horizontal-grid-date {
    font-size: 0.8rem;
    color: #f93a47;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.horizontal-grid-date i {
    color: #f93a47;
    font-size: 0.75rem;
}

.horizontal-grid-article .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #999;
}

/* Responsive Design for Horizontal Grid */

/* ===== BIG POST SECTION ===== */
.big-post-section {
    margin-bottom: 2rem;
}

/* Big Post Card (Left Side) */
.big-post-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.big-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.big-post-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.big-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.big-post-card:hover .big-post-image img {
    transform: scale(1.05);
}

.big-post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.big-post-title {
    margin: 0 0 1rem 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0;
}

.big-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.big-post-card:hover .big-post-title a {
    color: #ED1C25;
}

.big-post-meta {
    margin-bottom: 1rem;
}

.big-post-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: #f73542;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.big-post-date i {
    color: #f73542;
    font-size: 0.75rem;
}

.big-post-excerpt {
    font-size: 1.2 rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Big Post Side Items (Right Side - 3 posts) */

.big-post-side-item {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: all 0.3s ease;
}

.big-post-side-item:last-child {
    margin-bottom: 0;
}

.big-post-side-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.big-post-side-image {
    width: 120px;
    min-width: 120px;
    /* height: 130px; */
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.big-post-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.big-post-side-item:hover .big-post-side-image img {
    transform: scale(1.05);
}

.big-post-side-content {
    flex: 1;
    padding: 1rem 1.25rem;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
}

.big-post-side-title {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
}

.big-post-side-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.big-post-side-item:hover .big-post-side-title a {
    color: #ED1C25;
}

.big-post-side-meta {
    margin-top: auto;
}

.big-post-side-date {
    font-size: 0.8rem;
    color: #f93a47;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.big-post-side-date i {
    color: #f93a47;
    font-size: 0.75rem;
}

.big-post-card .image-placeholder,
.big-post-side-item .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #999;
}

/* Responsive Design for Big Post Section */

/* Big Post Sidebar Advertisement */
.big-post-sidebar-ad {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.big-post-sidebar-ad .ad-placeholder {
    min-height: 400px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
}

/* ===== SINGLE POST PAGE DESIGN ===== */
.single-post-page {
    background: #fafafa;
    padding: 2rem 0 4rem;
    min-height: 100vh;
}

.single-post-article {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

/* Featured Image */
.single-post-featured-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.single-post-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Post Header */
.single-post-header {
    padding: 0 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.single-post-title {
 font-size: 2.8rem;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0;
}

/* Font Size Controls */
.font-size-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 2rem;
    padding: 0.375rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.08);
    width: fit-content;
    position: relative;
    margin-bottom: 1rem;
}

.font-size-controls::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #0053a7, #003d7a);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.font-size-controls:hover::before {
    opacity: 0.1;
}

.font-size-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #495057;
    font-size: 0.875rem;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.font-size-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 83, 167, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.font-size-btn:hover:not(.disabled)::before {
    width: 100%;
    height: 100%;
}

.font-size-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #0053a7 0%, #003d7a 100%);
    border-color: #0053a7;
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 83, 167, 0.3), 0 2px 4px rgba(0, 83, 167, 0.2);
}

.font-size-btn:active:not(.disabled) {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 6px rgba(0, 83, 167, 0.25);
}

.font-size-btn i {
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.font-size-btn:hover:not(.disabled) i {
    transform: scale(1.1);
}

.font-size-btn.disabled,
.font-size-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    box-shadow: none;
}

.font-size-btn.disabled::before,
.font-size-btn:disabled::before {
    display: none;
}

.font-size-btn.disabled:hover,
.font-size-btn:disabled:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    transform: none;
    box-shadow: none;
}

.font-size-btn.disabled i,
.font-size-btn:disabled i {
    transform: none;
}

/* Specific button styles */
.font-size-decrease {
    border-left: 2px solid #e9ecef;
}

.font-size-increase {
    border-right: 2px solid #e9ecef;
}

.font-size-reset {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-color: #dee2e6;
    font-weight: 600;
}

.font-size-reset:hover:not(.disabled) {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-color: #6c757d;
}

/* Tooltip effect on hover */
.font-size-btn {
    position: relative;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Post Content Wrapper - Font Size Target */
.post-content-wrapper {
    font-size: 1.125rem;
    /* 18px - Default font size */
    line-height: 1.8;
    transition: font-size 0.2s ease;
}

/* Responsive Font Size Controls */

.post-content-wrapper p,
.post-content-wrapper li,
.post-content-wrapper span,
.post-content-wrapper div,
.post-content-wrapper a {
    font-size: inherit;
}

/* Post Meta */
.single-post-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    position: relative;
}

/* Font Size Controls - Positioned below title */
.single-post-header .font-size-controls {
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-start;
}

.single-post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #f93a47;
    font-weight: 600;
}

.single-post-date i {
    color: #f93a47;
    font-size: 0.9rem;
}

/* Post Content */
.single-post-content {
    padding: 0 2rem 2rem;
}

.post-content-wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    font-family: 'Mukta', sans-serif;
}

.post-content-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.post-content-wrapper h1,
.post-content-wrapper h2,
.post-content-wrapper h3,
.post-content-wrapper h4,
.post-content-wrapper h5,
.post-content-wrapper h6 {
    font-family: 'Khand', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content-wrapper h2 {
    font-size: 2rem;
}

.post-content-wrapper h3 {
    font-size: 1.75rem;
}

.post-content-wrapper img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.post-content-wrapper a {
    color: #0053a7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content-wrapper a:hover {
    color: #003d7a;
    text-decoration: underline;
}

.post-content-wrapper ul,
.post-content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content-wrapper li {
    margin-bottom: 0.75rem;
}

.post-content-wrapper blockquote {
    border-left: 4px solid #0053a7;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555555;
}

/* Post Footer */
.single-post-footer {
    padding: 2rem;
    border-top: 1px solid #e8e8e8;
    margin-top: 2rem;
}

.single-post-categories,
.single-post-tags {
    margin-bottom: 1.5rem;
}

.single-post-categories:last-child,
.single-post-tags:last-child {
    margin-bottom: 0;
}

.categories-label,
.tags-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 0.5rem;
    font-family: 'Khand', sans-serif;
}

.post-category-link,
.post-tag-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f0f0f0;
    color: #1a1a1a;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Mukta', sans-serif;
}

.post-category-link:hover,
.post-tag-link:hover {
    background: #0053a7;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Single Post Sidebar */
.single-post-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget .widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0053a7;
    font-family: 'Khand', sans-serif;
}

/* Responsive Design */

/* ===== AUTHOR BOX ===== */
.single-post-author-box {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.author-box-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.author-box-avatar {
    flex-shrink: 0;
}

.author-box-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0053a7;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Khand', sans-serif;
}

.author-box-info {
    flex: 1;
}

.author-box-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    font-family: 'Khand', sans-serif;
}

.author-box-bio {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-family: 'Mukta', sans-serif;
}

.author-box-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0053a7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Mukta', sans-serif;
}

.author-box-link:hover {
    color: #003d7a;
    gap: 0.75rem;
}

.author-box-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.author-box-link:hover i {
    transform: translateX(3px);
}

/* ===== COMMENTS SECTION ===== */
.single-post-comments {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    max-height: none;
    overflow: visible;
}

/* Comments Area */
.comments-area {
    width: 100%;
}

/* Comments Title */
.comments-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #0053a7;
    font-family: 'Khand', sans-serif;
}

/* Comments List */
.comments-list {
    margin-bottom: 2rem;
    max-height: 800px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.comments-list::-webkit-scrollbar {
    width: 6px;
}

.comments-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: #0053a7;
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: #003d7a;
}

/* Comment Item */
.comment-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-content {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.comment-content:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #0053a7;
}

/* Comment Header */
.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8e8e8;
    transition: border-color 0.3s ease;
}

.comment-content:hover .comment-avatar img {
    border-color: #0053a7;
}

.comment-meta {
    flex: 1;
    min-width: 0;
}

.comment-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-family: 'Khand', sans-serif;
}

.comment-author a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-author a:hover {
    color: #0053a7;
}

.comment-date {
    font-size: 0.85rem;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-date i {
    color: #f93a47;
    font-size: 0.75rem;
}

/* Comment Body */
.comment-body {
    color: #333333;
    line-height: 1.7;
    font-size: 1rem;
    font-family: 'Mukta', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.comment-body p {
    margin-bottom: 1rem;
}

.comment-body p:last-child {
    margin-bottom: 0;
}

.comment-body a {
    color: #0053a7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-body a:hover {
    color: #003d7a;
    text-decoration: underline;
}

/* Comment Reply */
.comment-reply {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.comment-reply a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: #1a1a1a;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Mukta', sans-serif;
}

.comment-reply a:hover {
    background: #0053a7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 83, 167, 0.3);
}

/* Nested Comments */
.comment-item .comment-item {
    margin-left: 3rem;
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e8e8e8;
}

.comment-item .comment-item .comment-content {
    background: #f8f9fa;
}

/* Comments Pagination */
.comments-pagination {
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.comments-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.comments-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: 'Mukta', sans-serif;
}

.comments-pagination .page-numbers:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
    color: #1a1a1a;
}

.comments-pagination .page-numbers.current {
    background: #0053a7;
    border-color: #0053a7;
    color: #ffffff;
}

/* No Comments Message */
.no-comments {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    color: #666666;
    font-family: 'Mukta', sans-serif;
    font-size: 1.1rem;
}

/* Comment Form */
.comment-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e8e8e8;
}

.comment-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    font-family: 'Khand', sans-serif;
}

.comment-form-group {
    margin-bottom: 1.25rem;
}

.comment-form-input,
.comment-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Mukta', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.comment-form-input:focus,
.comment-form-textarea:focus {
    outline: none;
    border-color: #0053a7;
    box-shadow: 0 0 0 3px rgba(0, 83, 167, 0.1);
}

.comment-form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.comment-form .form-submit {
    margin-top: 1.5rem;
}

.comment-submit-btn,
.comment-form .form-submit input[type="submit"] {
    background: #0053a7;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Khand', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-submit-btn:hover,
.comment-form .form-submit input[type="submit"]:hover {
    background: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 83, 167, 0.3);
}

/* Cancel Reply Link */
#cancel-comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: 'Mukta', sans-serif;
}

#cancel-comment-reply-link:hover {
    color: #ED1C25;
}

/* ===== COMMENT FORM ELEMENTS ===== */
/* Comment Form Container */
#respond {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e8e8e8;
}

/* Reply Title */
#reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    font-family: 'Khand', sans-serif;
}

/* Comment Form */
#commentform {
    margin-top: 1.5rem;
}

/* Form Fields */
#author,
#email {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Mukta', sans-serif;
    font-style: italic;
    color: #1d1d1d;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

#url {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Mukta', sans-serif;
    color: #1d1d1d;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

#comment {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Mukta', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

#author:focus,
#email:focus,
#url:focus,
#comment:focus {
    outline: none;
    border-color: #0053a7;
    box-shadow: 0 0 0 3px rgba(0, 83, 167, 0.1);
}

#comment {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

/* Submit Button */
#submit {
    background: -moz-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
    background: -webkit-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
    background: -o-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
    background: -ms-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
    background: linear-gradient(to bottom, #44c767 5%, #5cbf2a 100%);
    background-color: #44c767;
    -moz-border-radius: 28px;
    -webkit-border-radius: 28px;
    border-radius: 28px;
    border: 1px solid #18ab29;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Mukta', sans-serif;
    font-size: 17px;
    padding: 16px 31px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #2f6627;
    transition: all 0.3s ease;
}

#submit:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #5cbf2a), color-stop(1, #44c767));
    background: -moz-linear-gradient(top, #5cbf2a 5%, #44c767 100%);
    background: -webkit-linear-gradient(top, #5cbf2a 5%, #44c767 100%);
    background: -o-linear-gradient(top, #5cbf2a 5%, #44c767 100%);
    background: -ms-linear-gradient(top, #5cbf2a 5%, #44c767 100%);
    background: linear-gradient(to bottom, #5cbf2a 5%, #44c767 100%);
    background-color: #5cbf2a;
}

#submit:active {
    position: relative;
    top: 1px;
}

/* Comment Notes */
.comment-notes {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 1.5rem;
    font-family: 'Mukta', sans-serif;
}

/* Required Field Indicator */
.required {
    color: #ED1C25;
    font-weight: 700;
}

/* Form Field Wrappers */
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 1.25rem;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Mukta', sans-serif;
    font-size: 0.95rem;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Mukta', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #0053a7;
    box-shadow: 0 0 0 3px rgba(0, 83, 167, 0.1);
}

.comment-form-comment textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Mukta', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: #0053a7;
    box-shadow: 0 0 0 3px rgba(0, 83, 167, 0.1);
}

/* Cookies Consent */
.comment-form-cookies-consent {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0053a7;
}

.comment-form-cookies-consent label {
    font-size: 0.9rem;
    color: #666666;
    font-family: 'Mukta', sans-serif;
    cursor: pointer;
    line-height: 1.5;
}

/* Allowed Tags */
.form-allowed-tags {
    font-size: 0.85rem;
    color: #999999;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-family: 'Mukta', sans-serif;
}

.form-allowed-tags code {
    background: #ffffff;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Form Submit */
.form-submit {
    margin-top: 1.5rem;
}

.form-submit input[type="submit"] {
    background: #0053a7;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Khand', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-submit input[type="submit"]:hover {
    background: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 83, 167, 0.3);
}

/* Responsive Design for Comment Form */

/* Comments Closed */
.comments-closed {
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    color: #666666;
    font-family: 'Mukta', sans-serif;
}

/* Pending Comment */
.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Mukta', sans-serif;
}

/* Responsive Design */

/* ===== RELATED ARTICLES ===== */
.single-post-related {
    margin: 2rem 0;
}

.related-articles-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    font-family: 'Khand', sans-serif;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0053a7;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-article-item {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.related-article-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-article-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-item:hover .related-article-image img {
    transform: scale(1.05);
}

.related-article-content {
    padding: 1.25rem;
}

.related-article-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    font-family: 'Mukta', sans-serif;
}

.related-article-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-item:hover .related-article-title a {
    color: #ED1C25;
}

.related-article-meta {
    margin-top: auto;
}

.related-article-date {
    font-size: 0.8rem;
    color: #f93a47;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 0.5rem;
}

.related-article-date i {
    color: #ED1C25;
    font-size: 0.75rem;
}

.no-related-posts {
    text-align: center;
    padding: 2rem;
    color: #888888;
    font-style: italic;
}

/* Trending News Widget */
.trending-news-widget {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trending-news-widget:hover {
    border-color: #ed1e23;
    box-shadow: 0 4px 16px rgba(237, 30, 35, 0.08);
}

.trending-news-widget .widget-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.25rem 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ed1e23;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Kalam', cursive;
}



.trending-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-news-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #f5f5f5;
    font-family: 'Mukta', sans-serif;
}

.trending-news-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.trending-news-item:hover {
    padding-left: 0.5rem;
    background: rgba(237, 30, 35, 0.02);
}

.trending-news-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.trending-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ed1e23;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    line-height: 1;
}

.trending-news-content {
    flex: 1;
}

.trending-news-title {
       margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    font-family: 'Mukta', sans-serif;
    letter-spacing: 0;
}

.trending-news-title a {
    color: #555555;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.trending-news-title a:hover {
    color: #ed1e23;
}

