/*
Theme Name: My Newspaper Theme
Theme URI: https://example.com/my-newspaper-theme
Author: మీ పేరు
Author URI: https://example.com
Description: A custom newspaper theme built from scratch.
Version: 2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: newspaper, grid-layout, responsive-layout
Text Domain: mynewspaper
*/

/* ===== ఫాంట్ స్టైల్స్ (బేసిక్ సెట్టింగ్స్) ===== */
body {
    font-size: 18px;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
    overflow-x: hidden; 
}
h1, h2, h3, h4, h5, h6, .entry-title, .block-title span, .post-list-content h4 {
    font-weight: 700; 
}
.main-navigation a,
.widget-title,
.button-404,
.social-share-buttons li a {
    font-family: 'Noto Sans Telugu', 'Roboto', sans-serif; 
    font-weight: 700;
}
.entry-content, .entry-content p {
    font-size: 20px; 
}

/* ===== పేజ్ ర్యాపర్ & ఆఫ్-కాన్వాస్ మెనూ ===== */
#page-wrap {
    position: relative;
    left: 0;
    background: #fff;
    transition: left 0.3s ease;
}
#page-wrap.menu-open {
    left: 280px; 
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
}
.mobile-menu-overlay.menu-open {
    display: block;
}
.mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #222;
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-navigation.menu-open {
    transform: translateX(0);
}
.mobile-menu-top {
    padding: 15px 20px;
    border-bottom: 1px solid #555;
    display: flex;
    gap: 15px;
}
.mobile-menu-top a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}
.mobile-menu-top a:hover {
    color: #00aaff;
}
.mobile-menu-top a i {
    margin-right: 5px;
}
.mobile-navigation .mobile-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-navigation .mobile-main-menu li {
    border-bottom: 1px solid #444; 
}
.mobile-navigation .mobile-main-menu li a {
    display: block;
    padding: 12px 20px; 
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.mobile-navigation .mobile-main-menu li a:hover {
    background: #0073aa;
}
.mobile-menu-social {
    padding: 20px;
    border-top: 1px solid #555;
}
.mobile-menu-social h4 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 1rem;
}
.social-icons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}
.social-icons-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.social-icons-list .social-icon-facebook a { background-color: #3b5998; }
.social-icons-list .social-icon-twitter a { background-color: #1DA1F2; }
.social-icons-list .social-icon-instagram a { background-color: #e1306c; }
.social-icons-list .social-icon-youtube a { background-color: #c4302b; }
.social-icons-list li a:hover {
    opacity: 0.8;
}

/* ===== బేసిక్ స్టైల్స్ ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.container::after {
    content: "";
    display: table;
    clear: both;
}
.main-content {
    width: 66.66666667%;
    float: left;
}
.sidebar {
    width: 33.33333333%;
    float: right;
    padding-left: 20px;
    box-sizing: border-box;
}
.main-content-full {
    width: 100%;
    float: none;
}
.main-content-full .single-post-entry {
    max-width: 850px;
    margin: 0 auto;
}

/* ===== బ్రెడ్‌క్రంబ్స్ స్టైల్స్ (గ్యాప్ తగ్గించబడింది) ===== */
.entry-crumbs {
    font-family: 'Noto Sans Telugu', 'Roboto', sans-serif;
    font-size: 12px;
    color: #c3c3c3;
    line-height: 18px;
    padding-top: 10px; /* గ్యాప్ తగ్గించబడింది */
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px; /* గ్యాప్ తగ్గించబడింది */
}
.entry-crumbs span { color: #c3c3c3; }
.entry-crumbs a { color: #c3c3c3; text-decoration: none; }
.entry-crumbs a:hover { color: #777; text-decoration: none; }

/* ===== విడ్జెట్ స్టైలింగ్ ===== */
.widget {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.widget-title {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { margin-bottom: 10px; }
.widget ul li a { text-decoration: none; color: #333; }
.widget ul li a:hover { color: #0073aa; }

/* ===== హోమ్‌పేజీ స్లైడర్ స్టైల్స్ ===== */
.homepage-slider {
    margin: 20px 0;
}
.post-slider .slide-item {
    padding: 0 10px;
}
.post-slider .slide-item a {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 5px;
    overflow: hidden;
}
.post-slider .slide-image {
    width: 100%;
    height: 180px; 
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
.post-slider .slide-item a:hover .slide-image {
    transform: scale(1.05);
}
.post-slider .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 30px 15px 15px 15px;
    box-sizing: border-box;
}
.post-slider .slide-content h3 {
    color: #fff;
    margin: 0;
}
.post-slider .slick-prev,
.post-slider .slick-next {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    z-index: 10;
}
.post-slider .slick-prev:before,
.post-slider .slick-next:before {
    font-size: 20px;
    color: #fff;
    opacity: 1;
}
.post-slider .slick-prev { left: 15px; }
.post-slider .slick-next { right: 15px; }
.post-slider .slick-dots {
    bottom: -30px;
}
.post-slider .slick-dots li button:before {
    font-size: 10px;
    color: #555;
    opacity: 0.5;
}
.post-slider .slick-dots li.slick-active button:before {
    color: #0073aa;
    opacity: 1;
}

/* ===== హోమ్‌పేజీ బ్లాక్ స్టైల్స్ ===== */
.homepage-block {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.block-title {
    border-bottom: 2px solid #222;
    margin-bottom: 20px;
}
.block-title span {
    background: #222;
    color: #fff;
    padding: 8px 15px;
    font-size: 1.2rem;
    position: relative;
    top: 2px;
    text-transform: uppercase;
}
/* కేటగిరీ రంగులు (ఇవి Customizer నుండి వస్తాయి) */
.block-cat-1 span, .block-cat-1 { border-bottom-color: #222; }
.block-cat-2 span, .block-cat-2 { border-bottom-color: #222; }
.block-cat-3 span, .block-cat-3 { border-bottom-color: #222; }
.block-cat-4 span, .block-cat-4 { border-bottom-color: #222; }
.block-cat-5 span, .block-cat-5 { border-bottom-color: #222; }


.post-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.post-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}
.post-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.post-list-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 75px;
}
.post-list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.post-list-content {
    flex-grow: 1;
}
.post-list-content h4 {
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.post-list-content h4 a {
    text-decoration: none;
    color: #333;
}
.post-list-content h4 a:hover {
    color: #0073aa;
}
.post-list-content .entry-meta {
    font-size: 0.8rem;
    color: #888;
}

/* "Read More" బటన్ స్టైల్స్ */
.more-link {
    text-decoration: none;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff !important;
    display: inline-block;
    margin-top: 15px;
}
.button-green {
    background-color: #2f9e44;
}
.button-green:hover {
    background-color: #2b8a3e;
}
.button-red {
    background-color: #c92a2a;
}
.button-red:hover {
    background-color: #b02525;
}


/* ===== సింగిల్ పోస్ట్ పేజీ స్టైల్స్ ===== */
.single-post-entry .entry-title {
    margin-bottom: 15px;
    color: #111; 
}
.single-post-entry .entry-meta {
    border: none;
    padding: 0;
    margin: 0;
}

/* (కొత్తది) 3D పోస్ట్ మెటా స్టైల్స్ */
.single-post-entry .entry-meta {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: inline-block; /* కంటెంట్‌కు తగ్గట్టుగా వెడల్పు */
}
.single-post-entry .entry-meta span {
    margin-right: 20px;
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
}
.single-post-entry .entry-meta span i {
    margin-right: 8px;
    color: #0073aa;
}
.single-post-entry .entry-meta a {
    color: #333;
    text-decoration: none;
}
.single-post-entry .entry-meta a:hover {
    color: #0073aa;
}

/* (కొత్తది) సింగిల్ పోస్ట్ ఇమేజ్ సైజును నియంత్రించడం */
.single-post-entry .single-post-thumbnail {
    max-width: 700px; /* వెడల్పును 700pxకి పరిమితం చేయండి */
    margin: 0 auto 25px auto; /* మధ్యలో ఉంచండి */
}
.single-post-entry .single-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.single-post-entry .entry-content {
    text-align: justify; 
}
.single-post-entry .entry-content a { color: #0073aa; }
.single-post-entry .entry-footer { margin-top: 25px; }
.tag-links { font-size: 0.9rem; }
.tag-links a {
    background: #eee;
    padding: 3px 8px;
    border-radius: 3px;
    text-decoration: none;
    color: #444;
}

/* పోస్ట్ యాడ్ విడ్జెట్ స్టైల్స్ */
.ad-container {
    margin: 25px 0;
    text-align: center;
}

/* సంబంధిత వార్తలు (Related Posts) స్టైల్స్ */
.related-posts-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.related-post-item .related-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.related-post-item h4 {
    font-size: 1rem;
    line-height: 1.4;
    margin: 10px 0 0 0;
}
.related-post-item h4 a {
    text-decoration: none;
    color: #333;
}
.related-post-item h4 a:hover {
    color: #0073aa;
}

/* ===== 3D సోషల్ షేర్ బటన్ల స్టైల్స్ (ఐకాన్ల కోసం) ===== */
.social-share-buttons {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.social-share-buttons h4 {
    display: none; 
}
.social-share-buttons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap; 
    gap: 10px;
    overflow-x: auto; 
    padding-bottom: 5px; 
}
.social-share-buttons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; 
    height: 45px;
    padding: 0;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.1s ease-in-out;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.2);
    position: relative;
    top: 0;
}
.social-share-buttons li a .icon {
    font-size: 20px; 
}
.social-share-buttons li a:hover {
    top: 2px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
}
.social-share-buttons li a:active {
    top: 4px;
    box-shadow: 0 0px 0 0 rgba(0, 0, 0, 0.2);
}
.share-facebook a { background-color: #3b5998; border-bottom: 4px solid #2d4373; }
.share-facebook a:hover { background-color: #4c69a6; }
.share-twitter a { background-color: #1DA1F2; border-bottom: 4px solid #0c85d0; }
.share-twitter a:hover { background-color: #3ab0f4; }
.share-whatsapp a { background-color: #25D366; border-bottom: 4px solid #1ebe5a; }
.share-whatsapp a:hover { background-color: #30e070; }
.share-telegram a { background-color: #0088cc; border-bottom: 4px solid #006da3; }
.share-telegram a:hover { background-color: #1399d9; }
.share-email a { background-color: #777; border-bottom: 4px solid #555; }
.share-email a:hover { background-color: #888; }
.share-clip a { background-color: #f0ad4e; border-bottom: 4px solid #d6902e; } 
.share-clip a:hover { background-color: #f3b96a; }


/* ===== వ్యాఖ్యల (Comments) విభాగం స్టైల్స్ ===== */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}
.comments-title,
.comment-reply-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.comment-list { list-style: none; padding: 0; }
.comment-body {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    background: #fdfdfd;
}
.comment-author { font-weight: bold; }
.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}
.comment-form-comment textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.comment-form .form-submit .submit {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.comment-form .form-submit .submit:hover { background: #005a87; }

/* ===== స్టాటిక్ పేజీ (page.php) స్టైల్స్ ===== */
.page-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 25px;
}

/* ===== ఆర్కైవ్ పేజీ (archive.php) స్టైల్స్ ===== */
.archive-header {
    padding: 20px;
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 5px solid #0073aa;
}
.archive-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}
.archive-description { font-size: 1rem; color: #555; }
.archive-entry {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.archive-entry h2 a { text-decoration: none; color: #222; }
.archive-entry h2 a:hover { color: #0073aa; }

/* పేజినేషన్ స్టైల్స్ */
.pagination { margin-top: 30px; }
.pagination .nav-links { display: flex; gap: 10px; }
.pagination .page-numbers {
    padding: 10px 15px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #0073aa;
    border-radius: 5px;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* ===== సెర్చ్ ఫలితాల పేజీ (search.php) స్టైల్స్ ===== */
.search-header {
    padding: 20px;
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 5px solid #0073aa;
}
.search-title { margin-top: 0; font-size: 1.8rem; }
.search-title span { font-style: italic; font-weight: bold; }
.search-entry {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.search-entry h2 a { text-decoration: none; color: #222; }
.no-results {
    padding: 20px;
    background: #fff8f8;
    border: 1px solid #e5c0c0;
    border-radius: 5px;
}

/* ===== 404 ఎర్రర్ పేజీ స్టైల్స్ ===== */
.error-404-content {
    padding: 30px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 5px;
    text-align: center; 
}
.error-404-content .page-title {
    font-size: 2.2rem;
    color: #d9534f; 
    margin-top: 0;
}
.error-404-content .page-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
}
.error-404-content .search-form {
    max-width: 400px;
    margin: 0 auto 25px auto;
    display: flex;
}
.error-404-content .search-form .search-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-right: none;
}
.error-404-content .search-form .search-submit {
    padding: 10px 15px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}
.error-404-links .button-404 {
    display: inline-block;
    padding: 12px 25px;
    background: #5cb85c; 
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.error-404-links .button-404:hover { background: #4a994a; }

/* ===== హెడర్ లోగో + యాడ్ బ్యానర్ స్టైల్స్ (డెస్క్‌టాప్) ===== */
.desktop-header-bar {
    display: block;
}
.header-container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding-top: 20px;
    padding-bottom: 20px;
}
.site-branding { flex: 1; }
.site-branding img { max-height: 90px; width: auto; }
.header-ad-banner { flex-shrink: 0; margin-left: 20px; }
.widget_header_ad {
    max-width: 728px;
    height: 90px;
    text-align: right;
}
.widget-title-header-ad { display: none; }

/* ===== హెడర్ మెనూ - (డెస్క్‌టాప్) ===== */
#site-navigation {
    background: #222; 
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    border-top: 1px solid #444;
}
#site-navigation .container {
    padding-top: 0;
    padding-bottom: 0;
}
#primary-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
#primary-menu li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative; 
    transition: color 0.3s ease;
}
#primary-menu li a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 10%; 
    width: 80%;
    height: 3px;
    background-color: #0073aa;
    transform: scaleX(0); 
    transition: transform 0.3s ease;
}
#primary-menu li a:hover {
    background: none; 
    color: #00aaff; 
}
#primary-menu li a:hover::after { transform: scaleX(1); }

/* ===== మొబైల్ హెడర్ బార్ (కొత్తది) ===== */
.mobile-header-bar {
    display: none; 
    background: #222;
    color: #fff;
    padding: 10px 0;
}
.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-logo-wrap {
    flex: 1;
}
.mobile-logo-wrap .custom-logo {
    max-height: 40px; 
    width: auto;
    display: block;
}
.mobile-logo-wrap a {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}


/* ===== మొబైల్ మెనూ టోగుల్ బటన్ ===== */
.mobile-menu-toggle {
    display: none; 
    background: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 8px 10px;
    cursor: pointer;
}
.mobile-menu-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s;
}
.mobile-menu-toggle.menu-open {
    border-color: #aaa;
}
.mobile-menu-toggle.menu-open .icon-bar {
    background: #aaa;
}
.mobile-menu-toggle[aria-expanded="true"] .icon-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .icon-bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== బ్రేకింగ్ న్యూస్ టిక్కర్ స్టైల్స్ ===== */
.breaking-news-ticker {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 5px;
}
.ticker-label {
    background: #d9534f; 
    color: #fff;
    font-weight: bold;
    padding: 8px 15px;
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0; 
    border-radius: 3px;
}
.ticker-content { font-size: 1rem; white-space: nowrap; }
.ticker-content a { color: #333; text-decoration: none; font-weight: 500; }
.ticker-content a:hover { color: #0073aa; }
.ticker-separator { color: #aaa; margin: 0 15px; }


/* ===== (కొత్తది) లైవ్ టీవీ సెక్షన్ ===== */
.live-tv-section {
    padding: 20px 0;
    background: #f0f0f0; /* లైట్ గ్రే బ్యాక్‌గ్రౌండ్ */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.live-tv-section .block-title span {
    background: #c4302b; /* YouTube Red */
}
.live-tv-section .block-title {
    border-bottom-color: #c4302b;
}
.youtube-playlist-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.youtube-playlist-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ===== ఫూటర్ - మెరుగైన స్టైల్స్ ===== */
.site-footer {
    background: #222;
    color: #ccc;
    margin-top: 30px;
}
.footer-widgets {
    padding: 40px 0;
    border-bottom: 1px solid #444;
}
.footer-widgets .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
.footer-widget .widget-title {
    color: #fff;
    font-size: 1.3rem;
    border-bottom-color: #555;
}
.footer-widget ul li {
    border-bottom: 1px dashed #444;
    padding-bottom: 8px;
}
.footer-widget ul li a { color: #ccc; text-decoration: none; }
.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 5px; 
    transition: padding-left 0.2s ease;
}

/* (కొత్తది) ఫూటర్ సోషల్ ఐకాన్ బార్ */
.footer-social-bar {
    background: #1a1a1a;
    padding: 20px 0;
    text-align: center;
}
.footer-follow-title {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}
.footer-social-bar .social-icons-list {
    justify-content: center; /* ఐకాన్లను మధ్యకు తెస్తుంది */
}

/* (కొత్తది) 3D సోషల్ ఐకాన్ స్టైల్స్ */
.social-icons-list.social-3d li a {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.2);
    position: relative;
    top: 0;
}
.social-icons-list.social-3d li a:hover {
    top: 2px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
    opacity: 1;
}
.social-icons-list.social-3d li a:active {
    top: 4px;
    box-shadow: 0 0px 0 0 rgba(0, 0, 0, 0.2);
}
.social-icons-list.social-3d .social-icon-facebook a { background-color: #3b5998; border-bottom: 4px solid #2d4373; }
.social-icons-list.social-3d .social-icon-twitter a { background-color: #1DA1F2; border-bottom: 4px solid #0c85d0; }
.social-icons-list.social-3d .social-icon-instagram a { background-color: #e1306c; border-bottom: 4px solid #b3124b; }
.social-icons-list.social-3d .social-icon-youtube a { background-color: #c4302b; border-bottom: 4px solid #9c1f1a; }


.site-info-bar {
    background: #111;
    padding: 20px 0;
    text-align: center;
}
.site-info { font-size: 0.9rem; color: #888; }
.site-info a { color: #00aaff; text-decoration: none; }
.site-info a:hover { text-decoration: underline; }

/* ===== రెస్పాన్సివ్ స్టైల్స్ (మొబైల్ కోసం) ===== */
@media (max-width: 768px) {
    .main-content {
        width: 100%;
        float: none;
    }
    .sidebar {
        width: 100%;
        float: none;
        padding-left: 0;
        margin-top: 30px;
    }
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* ===== మొబైల్ హెడర్ మార్పులు ===== */
    .desktop-header-bar, #site-navigation {
        display: none; 
    }
    .mobile-header-bar {
        display: block; 
    }
    .mobile-menu-toggle {
        display: block; 
    }
    
    .footer-widgets .container {
        grid-template-columns: 1fr; 
    }

    /* మొబైల్‌లో పోస్ట్ కంటెంట్ కోసం కాలమ్స్ */
    .single-post-entry .entry-content {
        column-count: 2;
        column-gap: 20px;
    }
    .single-post-entry .entry-content img,
    .single-post-entry .entry-content figure,
    .single-post-entry .entry-content blockquote {
        break-inside: avoid;
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-list-thumbnail {
        width: 80px;
        height: 60px;
    }

    /* చిన్న మొబైల్‌లో 1 కాలమ్ సరిపోతుంది */
    .single-post-entry .entry-content {
        column-count: 1;
    }
}
