/*
Theme Name: Prothom Alo English Clone
Theme URI: https://example.com
Author: Custom Theme
Author URI: https://example.com
Description: A complete news portal theme inspired by Prothom Alo English. 100% automatic - just post and design appears.
Version: 3.0
License: GPL v2 or later
Text Domain: prothomalo-clone
*/

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222222;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

a:hover {
    color: #d32f2f;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== TOP BAR ========== */
.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar .left {
    color: #555555;
}

.top-bar .right a {
    color: #555555;
    margin-left: 15px;
    font-weight: 500;
}

.top-bar .right a:hover {
    color: #d32f2f;
}

/* ========== LOGO AREA ========== */
.logo-area {
    text-align: center;
    padding: 25px 0 20px;
    border-bottom: 4px solid #d32f2f;
    background-color: #ffffff;
}

.logo-area h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.logo-area h1 a {
    color: #000000;
}

.logo-area p {
    color: #666666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #d0d0d0;
    padding: 12px 0;
    margin-bottom: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.main-nav ul li {
    margin: 0 5px;
    position: relative;
}

.main-nav ul li a {
    display: block;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 3px;
}

.main-nav ul li a:hover {
    background-color: #f5f5f5;
    color: #d32f2f;
}

.main-nav ul li.current-menu-item a {
    color: #d32f2f;
    border-bottom: 2px solid #d32f2f;
}

/* ========== HOME PAGE - NEWS GRID ========== */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Featured Post (Left Big) */
.featured-post {
    background-color: #ffffff;
}

.featured-post .post-thumbnail {
    margin-bottom: 18px;
    border-radius: 6px;
    overflow: hidden;
}

.featured-post .post-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.featured-post .post-thumbnail:hover img {
    transform: scale(1.02);
}

.featured-post h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.featured-post h2 a {
    color: #000000;
}

.featured-post h2 a:hover {
    color: #d32f2f;
}

.featured-post .meta {
    color: #777777;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 15px;
}

.featured-post .excerpt {
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}

/* Side List (Right Side) */
.side-list {
    background-color: #ffffff;
}

.side-list .list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.side-list .list-item:last-child {
    border-bottom: none;
}

.side-list .item-img {
    flex: 0 0 100px;
    border-radius: 4px;
    overflow: hidden;
}

.side-list .item-img img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.side-list .item-img:hover img {
    transform: scale(1.05);
}

.side-list .item-content {
    flex: 1;
}

.side-list .item-content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.side-list .item-content h3 a {
    color: #000000;
}

.side-list .item-content h3 a:hover {
    color: #d32f2f;
}

.side-list .item-content .date {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ========== SECTION TITLE ========== */
.section-title {
    font-size: 24px;
    font-weight: 700;
    border-left: 6px solid #d32f2f;
    padding-left: 18px;
    margin: 45px 0 25px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== THREE COLUMN GRID ========== */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.grid-item {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.03);
}

.grid-item h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.grid-item h3 a {
    color: #000000;
}

.grid-item h3 a:hover {
    color: #d32f2f;
}

.grid-item .date {
    font-size: 13px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ========== SINGLE POST PAGE ========== */
.single-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
}

.single-post {
    background-color: #ffffff;
}

.post-category {
    margin-bottom: 15px;
}

.post-category a {
    display: inline-block;
    background-color: #d32f2f;
    color: #ffffff !important;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-right: 5px;
}

.post-category a:hover {
    background-color: #b71c1c;
}

.post-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
    color: #000000;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #666666;
    font-size: 14px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 2px solid #eeeeee;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta .author {
    font-weight: 600;
    color: #d32f2f;
}

.featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.post-content p {
    margin-bottom: 25px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 35px 0 20px;
    color: #000000;
    font-weight: 700;
}

.post-content h2 {
    font-size: 28px;
}

.post-content h3 {
    font-size: 24px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
    border-radius: 6px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0 25px 25px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content blockquote {
    border-left: 5px solid #d32f2f;
    padding: 20px 25px;
    margin: 30px 0;
    background-color: #f9f9f9;
    font-style: italic;
    font-size: 20px;
    color: #555555;
    border-radius: 0 6px 6px 0;
}

.post-tags {
    margin: 40px 0 25px;
    padding: 20px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.post-tags span {
    font-weight: 700;
    margin-right: 15px;
    color: #000000;
}

.post-tags a {
    display: inline-block;
    background-color: #f0f0f0;
    color: #444444;
    padding: 6px 14px;
    margin: 0 8px 8px 0;
    font-size: 13px;
    border-radius: 20px;
}

.post-tags a:hover {
    background-color: #d32f2f;
    color: #ffffff;
}

.post-share {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-share span {
    font-weight: 700;
    margin-right: 20px;
    color: #000000;
}

.post-share a {
    display: inline-block;
    padding: 8px 18px;
    margin-right: 10px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.post-share a:hover {
    background-color: #d32f2f;
    color: #ffffff;
    border-color: #d32f2f;
}

/* ========== RELATED POSTS ========== */
.related-posts {
    margin: 50px 0;
}

.related-item {
    background-color: #ffffff;
}

.related-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

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

.related-item h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.related-item h4 a {
    color: #000000;
}

.related-item h4 a:hover {
    color: #d32f2f;
}

.related-item .date {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
}

/* ========== ARCHIVE PAGE ========== */
.archive-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 4px solid #d32f2f;
}

.archive-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.archive-description {
    color: #666666;
    font-size: 16px;
}

.archive-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 20px;
}

.archive-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.archive-item:hover img {
    transform: scale(1.03);
}

.archive-item h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.archive-item h3 a {
    color: #000000;
}

.archive-item h3 a:hover {
    color: #d32f2f;
}

.archive-item .meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888888;
    margin-bottom: 12px;
}

.archive-item .excerpt {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
}

/* ========== SEARCH PAGE ========== */
.search-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 4px solid #d32f2f;
}

.search-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.search-header p {
    color: #666666;
    font-size: 16px;
}

.search-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 20px;
}

.search-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.search-item:hover img {
    transform: scale(1.03);
}

.search-item h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.search-item h3 a {
    color: #000000;
}

.search-item h3 a:hover {
    color: #d32f2f;
}

.search-item .date {
    display: block;
    font-size: 13px;
    color: #888888;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.search-item p {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
}

/* ========== PAGINATION ========== */
.pagination {
    margin: 50px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
}

.pagination .page-numbers.current {
    background-color: #d32f2f;
    color: #ffffff;
    border-color: #d32f2f;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: #f5f5f5;
}

/* ========== COMMENTS AREA ========== */
.comments-area {
    margin: 60px 0;
    padding-top: 30px;
    border-top: 2px solid #eeeeee;
}

.comments-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    margin-bottom: 35px;
}

.comment-body {
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.comment-author img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.comment-author cite {
    font-weight: 700;
    font-style: normal;
    color: #000000;
}

.comment-meta {
    font-size: 13px;
    color: #888888;
    margin-bottom: 15px;
}

.comment-content {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin: 15px 0;
}

.comment-content p {
    margin-bottom: 15px;
}

.reply {
    margin-top: 15px;
}

.reply a {
    display: inline-block;
    padding: 6px 15px;
    background-color: #f0f0f0;
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.reply a:hover {
    background-color: #d32f2f;
    color: #ffffff;
}

/* ========== COMMENT FORM ========== */
.comment-respond {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.comment-reply-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
}

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

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

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

.comment-form input[type="submit"] {
    background-color: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background-color: #b71c1c;
}

/* ========== PAGE CONTENT ========== */
.page-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.page-content .content {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.page-content .content p {
    margin-bottom: 25px;
}

.page-content .featured-image {
    margin-bottom: 35px;
    border-radius: 8px;
    overflow: hidden;
}

/* ========== SIDEBAR ========== */
.sidebar {
    background-color: #ffffff;
}

.widget {
    margin-bottom: 35px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #d32f2f;
    color: #000000;
    text-transform: uppercase;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #333333;
}

.widget ul li a:hover {
    color: #d32f2f;
}

/* ========== SEARCH FORM ========== */
.search-form {
    display: flex;
    gap: 10px;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-size: 15px;
}

.search-submit {
    padding: 12px 25px;
    background-color: #d32f2f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.search-submit:hover {
    background-color: #b71c1c;
}

/* ========== FOOTER ========== */
.site-footer {
    margin-top: 60px;
    padding: 35px 0;
    background-color: #1a1a1a;
    text-align: center;
    color: #aaaaaa;
    border-top: 4px solid #d32f2f;
}

.site-footer p {
    font-size: 14px;
}

.site-footer a {
    color: #ffffff;
}

.site-footer a:hover {
    color: #d32f2f;
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .featured-post h2 {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .three-col-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .logo-area h1 {
        font-size: 36px;
    }
    
    .main-nav ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav ul li {
        flex-shrink: 0;
    }
    
    .post-title {
        font-size: 30px;
    }
    
    .single-container {
        padding: 15px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .post-content {
        font-size: 16px;
    }
    
    .archive-title,
    .search-header h1 {
        font-size: 28px;
    }
    
    .archive-item img,
    .search-item img {
        height: 180px;
    }
    
    .page-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar .right a {
        margin: 0 8px;
    }
    
    .logo-area h1 {
        font-size: 28px;
    }
    
    .post-title {
        font-size: 24px;
    }
    
    .featured-post h2 {
        font-size: 22px;
    }
    
    .side-list .list-item {
        flex-direction: column;
    }
    
    .side-list .item-img {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .side-list .item-img img {
        height: 180px;
    }
    
    .pagination .page-numbers {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .comment-respond {
        padding: 20px 15px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .top-bar,
    .main-nav,
    .post-share,
    .related-posts,
    .comments-area,
    .site-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .single-container {
        max-width: 100%;
    }
    
    a {
        text-decoration: none;
        color: #000000;
    }
}

/* ======================================== */
/* CUSTOM FOOTER STYLES                     */
/* ======================================== */

.site-footer {
    margin-top: 60px;
    padding: 50px 0 30px;
    background-color: #1a1a1a;
    color: #aaaaaa;
    border-top: 4px solid #d32f2f;
}

/* Footer Widgets Grid */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333333;
}

/* Footer Segment */
.footer-segment {
    text-align: left;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d32f2f;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #d32f2f;
    padding-left: 5px;
}

/* Copyright Section */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 5px;
}

.footer-copyright a {
    color: #ffffff;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: #d32f2f;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-segment {
        text-align: center;
    }
    
    .footer-title {
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .footer-links li a {
        font-size: 14px;
    }
}
/* ======================================== */
/* US CATEGORY GRID - AP STYLE              */
/* ======================================== */

.us-category-section {
    margin: 50px 0 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
}

.category-badge {
    background-color: #d32f2f;
    color: #ffffff;
    padding: 5px 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 3px;
}

.view-all-link {
    color: #d32f2f;
    font-size: 15px;
    font-weight: 600;
}

.us-news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.us-featured-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.us-featured-title {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
}

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

.us-small-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.us-small-image {
    flex: 0 0 100px;
}

.us-small-image img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
}

.us-small-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

.us-meta {
    font-size: 12px;
    color: #888;
}

.category-label {
    color: #d32f2f;
    font-size: 12px;
    font-weight: 700;
}

.no-posts {
    text-align: center;
    padding: 40px;
    color: #888;
}

@media screen and (max-width: 768px) {
    .us-news-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================== */
/* SOCIAL SHARE BUTTONS WITH ICONS          */
/* ======================================== */

.post-share {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.share-label {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.share-btn span {
    line-height: 1;
}

.share-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.share-btn:hover .share-icon {
    transform: scale(1.1);
}

/* Facebook */
.share-facebook {
    background-color: #1877f2;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.2);
}

.share-facebook:hover {
    background-color: #166fe5;
    box-shadow: 0 6px 12px rgba(24, 119, 242, 0.3);
    transform: translateY(-2px);
}

/* Twitter */
.share-twitter {
    background-color: #000000;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.share-twitter:hover {
    background-color: #1a1a1a;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* LinkedIn */
.share-linkedin {
    background-color: #0a66c2;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(10, 102, 194, 0.2);
}

.share-linkedin:hover {
    background-color: #004182;
    box-shadow: 0 6px 12px rgba(10, 102, 194, 0.3);
    transform: translateY(-2px);
}

/* WhatsApp */
.share-whatsapp {
    background-color: #25d366;
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.2);
}

.share-whatsapp:hover {
    background-color: #20bd5a;
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .post-share {
        justify-content: center;
        padding: 15px;
    }
    
    .share-label {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .share-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .post-share {
        gap: 8px;
    }
    
    .share-btn span {
        display: none;
    }
    
    .share-btn {
        padding: 12px;
        border-radius: 50%;
        justify-content: center;
        width: 45px;
        height: 45px;
    }
    
    .share-icon {
        width: 20px;
        height: 20px;
    }
    
    .share-label {
        display: none;
    }
}