/*
Theme Name: IPL Track Pro
Theme URI: https://www.ipltrack.com
Author: IPL Track Team
Author URI: https://www.ipltrack.com
Description: Professional, ultra-fast, SEO-optimized WordPress news theme inspired by Jagran Josh and ABP News. Features lightning-fast load speeds (Core Web Vitals 90+), Google Discover optimization, sticky responsive header, mobile hamburger menu, social sharing, like buttons, breadcrumbs, related posts, dark mode, and perfect Hindi news publishing support.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ipltrack
Tags: news, blog, news-magazine, custom-menu, featured-images, translation-ready
*/

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111111;
    background: #ffffff;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 1rem;
}

h1 { font-size: 2.125rem; }
h2 { font-size: 1.75rem; font-weight: 600; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #0057e7;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #e60000;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ============================================
   TOP BLACK STRIP - BREAKING NEWS
   ============================================ */
.top-strip {
    background: #000000;
    color: #ffffff;
    height: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.top-strip-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.breaking-news-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.breaking-icon {
    font-size: 0.875rem;
}

.breaking-news-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.breaking-news-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    animation: scroll-ticker 30s linear infinite;
    white-space: nowrap;
}

.breaking-news-list li {
    display: inline-block;
}

.breaking-news-list a {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 0 0.5rem;
}

.breaking-news-list a:hover {
    text-decoration: underline;
    color: #ffffff;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   MAIN HEADER - STICKY
   ============================================ */
.site-header {
    position: sticky;
    top: 30px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-logo {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-ipl {
    color: #111111;
}

.logo-track {
    color: #0057e7;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.main-menu a {
    color: #111111;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e60000;
    transition: width 0.3s ease-in-out;
}

.main-menu a:hover {
    color: #e60000;
}

.main-menu a:hover::after,
.main-menu .current-menu-item a::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
}

.header-icon:hover {
    color: #e60000;
    background: rgba(230, 0, 0, 0.1);
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #111111;
    transition: all 0.3s ease-in-out;
}

.search-form-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #e5e5e5;
}

.search-form-container.active {
    display: block;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
}

.search-form input:focus {
    outline: none;
    border-color: #0057e7;
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background: #0057e7;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease-in-out;
}

.search-form button:hover {
    background: #e60000;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    margin-bottom: 10px;
    padding: 1rem 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #666;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: #e5e5e5;
}

.breadcrumb-list a {
    color: #666;
    font-weight: 500;
}

.breadcrumb-list a:hover {
    color: #e60000;
    text-decoration: none;
}

.breadcrumb-list > li:last-child {
    color: #111111;
    font-weight: 600;
}

/* ============================================
   SINGLE POST PAGE
   ============================================ */
.single-post-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.single-post-header {
    margin-bottom: 1rem;
}

.post-title {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #111111;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 14px;
    color: #555;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.meta-item a {
    color: #555;
    transition: color 0.3s ease-in-out;
}

.meta-item a:hover {
    color: #e60000;
    text-decoration: none;
}

/* Ad Below Meta */
.ad-below-meta {
    margin: 1.5rem 0;
    text-align: center;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.ad-content {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Featured Image */
.single-post-featured-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Post Content */
.post-content {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
}

.post-content p {
    margin: 16px 0;
}

.post-content h2 {
    border-bottom: 2px solid #dddddd;
    font-weight: 600;
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content blockquote {
    border-left: 4px solid #e60000;
    padding-left: 10px;
    color: #555;
    font-style: italic;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.post-content a {
    color: #0057e7;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content a:hover {
    color: #e60000;
}

.post-content img {
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.post-content ul,
.post-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

/* Post Tags */
.post-tags {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.post-tags .tags-label {
    font-weight: 700;
    margin-right: 1rem;
    color: #111111;
}

.post-tags .tag-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-link:hover {
    background: #0057e7;
    color: #ffffff;
    border-color: #0057e7;
    text-decoration: none;
}

/* ============================================
   FLOATING SHARE BAR
   ============================================ */
.floating-share-bar {
    position: fixed;
    z-index: 998;
    transition: all 0.3s ease-in-out;
}

.floating-share-bar.desktop {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.floating-share-bar.mobile {
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.floating-share-bar.mobile.visible {
    transform: translateY(0);
}

.share-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-share-bar.mobile .share-buttons-group {
    flex-direction: row;
    justify-content: space-around;
    padding: 0.75rem;
}

.share-btn {
    width: 48px;
    height: 48px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 0.75rem;
    font-weight: 600;
    color: #111111;
}

.floating-share-bar.mobile .share-btn {
    width: auto;
    flex: 1;
    padding: 0.75rem 0.5rem;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn span {
    display: block;
}

.floating-share-bar.desktop .share-btn span {
    display: none;
}

.share-btn:hover {
    border-color: currentColor;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.share-whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.share-facebook:hover {
    background: #1877F2;
    color: #ffffff;
    border-color: #1877F2;
}

.share-twitter:hover {
    background: #1DA1F2;
    color: #ffffff;
    border-color: #1DA1F2;
}

.share-telegram:hover {
    background: #0088cc;
    color: #ffffff;
    border-color: #0088cc;
}

.share-copy:hover {
    background: #0057e7;
    color: #ffffff;
    border-color: #0057e7;
}

/* ============================================
   LIKE & SAVE BUTTONS
   ============================================ */
.like-save-buttons {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 997;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    width: 56px;
    height: 56px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    color: #111111;
}

.action-btn:hover {
    border-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-btn svg {
    width: 20px;
    height: 20px;
}

.action-btn span {
    display: block;
    line-height: 1;
}

.like-btn.liked {
    background: #e60000;
    color: #ffffff;
    border-color: #e60000;
}

.like-btn.liked .like-icon {
    fill: #ffffff;
}

.save-btn.saved {
    background: #0057e7;
    color: #ffffff;
    border-color: #0057e7;
}

.like-count {
    font-size: 0.6875rem;
    font-weight: 700;
}

/* ============================================
   RELATED POSTS
   ============================================ */
.related-posts-section {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
}

.related-posts-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111111;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.related-post-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.related-post-image {
    display: block;
}

.related-post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.related-post-content {
    padding: 1.25rem;
}

.related-post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e60000;
    color: #ffffff;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.related-post-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.related-post-content h3 a {
    color: #111111;
}

.related-post-content h3 a:hover {
    color: #e60000;
    text-decoration: none;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar.sticky {
    position: sticky;
    top: 110px;
    align-self: start;
}

.sidebar .widget {
    margin-bottom: 2rem;
}

.sidebar .widget:last-child {
    margin-bottom: 0;
}

.sidebar .widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e60000;
    color: #111111;
}

/* Latest Stories Widget */
.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar ul li img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.sidebar ul li a {
    color: #111111;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.sidebar ul li a:hover {
    color: #e60000;
    text-decoration: none;
}

/* Follow Us Widget */
.sidebar .social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sidebar .social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e60000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.sidebar .social-link:hover {
    background: #cc0000;
    transform: scale(1.1);
    text-decoration: none;
}

/* Ad Widgets */
.ad-widget {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ad-widget img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-icons a:hover {
    background: #e60000;
    transform: scale(1.1);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

/* ============================================
   POST GRID
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.post-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.post-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.post-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.post-card-excerpt {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #0057e7;
}

.read-more:hover {
    color: #e60000;
    text-decoration: none;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    color: #111111;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.pagination a:hover,
.pagination .current {
    background: #0057e7;
    color: #ffffff;
    border-color: #0057e7;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0057e7;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.back-to-top:hover {
    background: #e60000;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   DARK MODE TOGGLE
   ============================================ */
.dark-mode-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.dark-mode-toggle:hover {
    background: #e60000;
    transform: scale(1.1);
}

.dark-mode-toggle svg {
    width: 20px;
    height: 20px;
}

.dark-mode-toggle .light-icon {
    display: none;
}

.dark-mode .dark-mode-toggle .dark-icon {
    display: none;
}

.dark-mode .dark-mode-toggle .light-icon {
    display: block;
}

/* Dark Mode Styles */
.dark-mode {
    --bg: #111111;
    --text: #eeeeee;
    --border: #333333;
}

.dark-mode body {
    background: #111111;
    color: #eeeeee;
}

.dark-mode .site-header {
    background: #111111;
    border-bottom-color: #333333;
}

.dark-mode .post-card,
.dark-mode .sidebar {
    background: #1a1a1a;
}

.dark-mode .post-content a {
    color: #4dabf7;
}

.dark-mode .post-content a:hover {
    color: #74c0fc;
}

.dark-mode .top-strip {
    background: #000000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-with-sidebar {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    .main-navigation.active {
        max-height: 500px;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        align-items: flex-start;
    }
    
    .main-menu li {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .main-menu a {
        padding: 1rem 0;
    }
    
    .breaking-news-ticker {
        flex-direction: column;
        height: auto;
        padding: 0.5rem;
    }
    
    .top-strip {
        height: auto;
        min-height: 30px;
    }
    
    .site-header {
        top: 0;
    }
    
    .post-title {
        font-size: 22px;
    }
    
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        margin-top: 2rem;
    }
    
    .sidebar.sticky {
        position: relative;
        top: 0;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .floating-share-bar.desktop {
        display: none;
    }
    
    .floating-share-bar.mobile {
        display: block;
    }
    
    .like-save-buttons {
        display: none;
    }
}

@media (min-width: 769px) {
    .floating-share-bar.mobile {
        display: none;
    }
    
    .floating-share-bar.desktop {
        display: block;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    height: auto;
    left: 5px;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999999;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
    text-decoration: none;
    padding: 8px 16px;
    background: #0057e7;
    color: #ffffff;
    border-radius: 4px;
}

/* ============================================
   FONTS - PRELOAD
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');
