/*
Theme Name:   Hello-Elementor Child
Theme URI:    http://example.com/hello-elementor/
Description:  Hello-Elementor Child Theme
Author:       Lexcis solution
Author URI:   http://example.com
Template:     hello-elementor
Version:      1.1.10
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  hello-elementor-child
*/

/* ===========================================
   HOMEPAGE STYLES
   =========================================== */
/* Global link color */
a {
    color: #9c2c38;
    text-decoration: none;
}

/* Hover color */
a:hover,
a:focus {
    color: #7a1f29;
    /* darker hover */
}

/* Visited links */
a:visited {
    color: #9c2c38;
}

/* Homepage Custom Styles */
.ls-homepage-container {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* .ls-homepage-container.row  {
    background-color: #fff;
  } */


.ls-main-content-wrapper {
    background-color: #fff;
}

.ls-sidebar-left-container,
.ls-sidebar-right-container {
    padding-top: 20px;
}

/* .ls-sidebar-left-container {
    padding-right: 0px !important;
}

.ls-sidebar-right-container {
    padding-left: 0px !important;
} */

/* Sidebar Styles */
.ls-sidebar-left {
    background: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.ls-sidebar-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.ls-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ls-nav-item {
    margin-bottom: 8px;
}

.ls-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.ls-nav-link:hover {
    background-color: #f8f9fa;
    color: #333;
    transform: translateX(5px);
}

.ls-nav-link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.ls-nav-link span {
    /* font-weight: 500; */
    color: rgb(43, 43, 43);
    font-size: 18px;
    font-weight: 600;
    height: 26px;
    line-height: 26px;
    margin-right: 5px;
    text-align: left;
    /* -webkit-line-clamp: 2; */
}

/* Category count styling */
.ls-category-count {
    color: #6c757d;
    font-size: 12px;
    font-weight: 400;
    margin-left: auto;
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1;
}

/* Horizontal rule styling */
hr.ls-hr {
    height: 12px;
    /* Thickness of the bar */
    background-color: #dcdcdc;
    /* Light gray color */
    color: #dcdcdc;
}

/* Main Content Styles */
.ls-main-content {
    padding: 20px;
}

.ls-featured-story {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border-bottom: 1px solid #eaeaea;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.ls-story-label {
    margin-bottom: 15px;
}

.ls-story-headline {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: rgb(43, 43, 43);
    /* line-height: 1.4; */
    margin-bottom: 20px;
}

.ls-highlight {
    font-weight: bold;
    padding: 0 4px;
    /* color: #f89c1d; */
}

.ls-video-thumbnail {
    margin-bottom: 20px;
    width: 100%;
    height: 650px;
    text-align: center;
}

.ls-video-thumbnail-right {
    margin-bottom: 20px;
}

.ls-video-thumbnail img {
    width: 90%;
    height: 100%;
    object-fit: cover;
}

.ls-article-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ls-video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ls-video-placeholder.small {
    height: 120px;
}

.ls-play-button {
    font-size: 60px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ls-video-placeholder.small .ls-play-button {
    font-size: 30px;
}

.ls-play-button:hover {
    transform: scale(1.1);
}

.ls-timestamp {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.ls-story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ls-social-sharing {
    display: flex;
    gap: 8px;
}

/* News Articles Grid */
.ls-news-grid-header h2 {
    font-size: 20px;
    font-weight: 600;
    /* height: 30px; */
    line-height: 30px;
}

.ls-news-article {
    background: white;
    border-radius: 8px;
    padding: 20px;
    /* border-bottom: 1px solid #eaeaea; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    transition: transform 0.2s ease;
}

.ls-news-grid .ls-news-article:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
}

.ls-news-grid a.ls-article-thumbnail {
    width: 345px;
    height: 260px;
}

.ls-news-grid a.ls-article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-news-article:hover {
    /* transform: translateY(-2px); */
    background-color: #fafafa;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.ls-article-title {
    font-size: 20px;
    font-weight: 600;
    /* color: rgb(255, 85, 75); */
    line-height: 30px;
    margin-bottom: 15px;
}

.ls-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Right Sidebar Styles */
.ls-sidebar-right {
    background: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.ls-ad-placeholder {
    text-align: center;
    padding: 15px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

.ls-ad-placeholder h6 {
    margin: 15px 0 10px 0;
    color: #333;
}

.ls-google-ad img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.ls-video-item {
    margin-bottom: 15px;
}

.ls-video-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ls-horoscope-content {
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.ls-zodiac-sign .badge {
    font-size: 12px;
}

.ls-horoscope-text {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Custom Colors for Icons */
.text-purple {
    color: #6f42c1 !important;
}

.text-brown {
    color: #8b4513 !important;
}

.text-pink {
    color: #e83e8c !important;
}

/* Hover Effects */
.ls-nav-link:hover i {
    transform: scale(1.1);
}

.ls-news-article:hover .ls-article-title {
    color: #007bff;
}

/* Loading States */
.ls-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Accessibility */
.ls-nav-link:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Single Blog Page Css */
.restricted-content {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
}

.content-lock {
    text-align: center;
    background: #fff;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    padding: 20px;
    margin-top: 15px;
    border-bottom: 4px solid #eaeaea;
}

.content-lock h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0 5px;
}

.content-lock p {
    margin: 0 0 15px;
    color: rgb(51, 51, 51);
}

/* .content-lock .btn {
    background: orange;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
} */

.content-lock .btn {
    background-color: #ffa500;
    /* base orange */
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.content-lock .btn:hover {
    background-color: #ffa500;
    color: #fff;
    /* keep white text */
    transform: scale(1.05);
    /* slight zoom */
    /* box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4); */
}

/* News Submission Form */
/* Hide the ugly input */
.custom-file-input {
    display: none;
}

/* Stylish upload box */
.upload-box {
    border: 2px dashed #6c63ff;
    background: #f9f9ff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-box:hover {
    background: #f0f0ff;
    border-color: #4a3cff;
}

.upload-box span {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    color: #555;
}

.img-preview-wrapper {
    position: relative;
    display: inline-block;
    margin: 10px;
    width: 250px;
    height: 150px;
}

.img-preview-wrapper img {
    /*max-width: 120px;
    max-height: 120px;*/
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-preview {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Button Highlight Styling */
.ls-highlight-button {
    --border-radius: 15px;
    --border-width: 4px;
    appearance: none;
    position: relative;
    padding: 1em 2em;
    border: 0;
    background-color: transparent;
    /* visible by default */
    font-family: "Roboto", Arial, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: black;
    z-index: 2;
    width: 100%;
    /* Make button full width */
    max-width: 100%;
    /* Prevent overflow */
    word-wrap: break-word;
    /* Break long words */
    white-space: normal;
    /* Allow text to wrap */
}

.ls-highlight-button::after {
    --m-i: linear-gradient(#000, #000);
    --m-o: content-box, padding-box;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: var(--border-width);
    border-radius: var(--border-radius);
    background-image: conic-gradient(#488cfb,
            #29dbbc,
            #ddf505,
            #ff9f0e,
            #e440bb,
            #655adc,
            #488cfb);
    -webkit-mask-image: var(--m-i), var(--m-i);
    mask-image: var(--m-i), var(--m-i);
    -webkit-mask-origin: var(--m-o);
    mask-origin: var(--m-o);
    -webkit-mask-clip: var(--m-o);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: hue-rotate(0);
    animation: rotate-hue linear 500ms infinite;
    animation-play-state: running;
    /* run by default */
}

.ls-highlight-button:hover {
    background-color: transparent;
    /* background disappears on hover */
    color: black;
}

.ls-highlight-button:hover::after {
    animation-play-state: paused;
    /* stop animation on hover */
}

@keyframes rotate-hue {
    to {
        filter: hue-rotate(1turn);
    }
}

.ls-highlight-button,
.ls-highlight-button::after {
    box-sizing: border-box;
}

.ls-highlight-button:active {
    --border-width: 5px;
}

/* Floating Sticky Button for Mobile */
.ls-floating-news-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Custom CSS for Invalid Fields */
.ls-is-invalid {
    border: 2px solid red !important;
    background-color: #fff0f0;
    border-radius: 6px;
    /* padding: 5px; */
}

/* Highlight WP Editor wrapper */
#wp-news_content-wrap.ls-is-invalid {
    border: 2px solid red !important;
}

/* Highlight upload-box for featured image */
.upload-box.ls-is-invalid {
    border: 2px dashed red !important;
    background-color: #fff0f0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .ls-sidebar-left {
        /* position: static; */
        margin-bottom: 20px;
    }

    .ls-sidebar-right {
        /* position: static; */
        margin-top: 20px;
    }

    .ls-story-headline {
        font-size: 20px;
    }

    .ls-video-placeholder {
        height: 250px;
    }

    /* Stack columns on medium screens */
    .ls-homepage-container .row>div {
        margin-bottom: 20px;
    }

    .ls-news-grid a.ls-article-thumbnail {
        width: 205px;
        height: 155px;
    }
}

@media (max-width: 767.98px) {

    /* Main content adjustments */
    .ls-main-content,
    .ls-featured-story {
        padding: 0px;
    }

    /* Headlines */
    .ls-story-headline {
        font-size: 20px;
        line-height: 30px;
    }

    .ls-article-title {
        font-size: 17px;
        font-weight: 600;
        line-height: 24px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Video placeholder */
    .ls-video-placeholder {
        height: 200px;
    }

    /* Navigation links */
    .ls-nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .ls-nav-link i {
        font-size: 14px;
        margin-right: 10px;
    }

    /* Sidebars */
    .ls-sidebar-left,
    .ls-sidebar-right {
        padding: 15px;
    }

    .ls-sidebar-right-container {
        display: none;
    }

    /* News article card */
    .ls-news-article {
        margin-bottom: 8px !important;
        padding: 0 !important;
        background: #fff;
        /* border-bottom: 1px solid #eaeaea; */
        border-radius: 0;
    }

    .ls-news-article .row {
        margin: 0;
    }

    .ls-news-article .col-6:first-child {
        padding-right: 6px;
    }

    .ls-news-article .col-6:last-child {
        padding-left: 6px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Thumbnail images */
    .ls-article-thumbnail img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 6px;
    }

    /* Story & article meta */
    .ls-story-meta,
    .ls-article-meta {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .ls-story-meta {
        margin-bottom: 20px;
    }

    /* Article meta specific */
    .ls-article-meta {
        font-size: 12px;
        color: #888;
        gap: 4px;
    }

    .ls-highlight-button {
        font-size: 14px;
        padding: 0.8em 1.5em;
        --border-width: 3px;
        --border-radius: 12px;
    }

    .ls-article-meta .badge {
        font-size: 10px;
        padding: 3px 6px;
        line-height: 1;
        border-radius: 4px;
    }

    /* Social sharing buttons */
    .ls-social-sharing .btn {
        padding: 2px 6px;
        font-size: 12px;
    }

    .ls-submit-button {
        text-align: center;
    }

    .img-preview-wrapper {
        width: 100px;
        height: 70px;
    }

    .ls-video-thumbnail {
        height: 384px;
    }

    .ls-video-thumbnail img {
        width: 100%;
    }
}



@media (max-width: 575.98px) {
    /*
    .ls-homepage-container .container-fluid {
        padding: 0 10px;
    }
    */

    .ls-main-content {
        padding: 0px;
    }

    .ls-featured-story {
        padding-top: 12px;
    }

    .ls-story-headline {
        font-size: 20px;
        line-height: 30px;
    }

    .ls-video-placeholder {
        height: 180px;
    }

    .ls-news-article {
        padding: 15px;
    }

    .ls-sidebar-left,
    .ls-sidebar-right {
        padding: 15px;
    }

    .ls-nav-link {
        padding: 8px 10px;
        font-size: 12px;
    }

    .ls-nav-link i {
        font-size: 12px;
        margin-right: 8px;
    }

    /* Mobile-specific improvements */
    .ls-homepage-container {
        /* padding: 10px 0; */
    }

    .ls-story-meta,
    .ls-article-meta {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
    }

    .ls-social-sharing {
        justify-content: flex-start;
    }

    /* Improve touch targets on mobile */
    .ls-nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn {
        /* min-height: 44px; */
        padding: 8px 16px;
    }

    .ls-story-meta {
        margin-bottom: 20px;
    }

    .ls-highlight-button {
        font-size: 12px;
        padding: 0.7em 1.2em;
        --border-width: 2px;
        --border-radius: 10px;
    }

    .ls-news-grid a.ls-article-thumbnail {
        width: 160px;
        height: 120px;
    }
}


.news-headline {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.news-content {
    font-size: 18px;
    line-height: 1.9;
}

.news-sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: owsald, sans-serif;
    margin-bottom: 15px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.news-share {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #55acee;
}

.share-btn.whatsapp {
    background: #25D366;
}

.post-navigation {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.author-box {
    background: #f7f7f7;
}

.author-box h5 {
    margin-bottom: 5px;
}

.comments-section textarea {
    width: 100%;
    min-height: 160px;
}

/* ===========================================
   CATEGORY PAGE (NEWS STYLE)
   =========================================== */

/* FEATURED POST */
.ls-featured-post {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.ls-featured-post .featured-img {
    position: relative;
}

.ls-featured-post img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Overlay like screenshot */
.ls-featured-post .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    color: #fff;
}

.ls-featured-post .overlay h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin: 10px 0 0;
}

/* Badge */
.ls-featured-post .badge,
.news-card .badge {
    background: #0073aa;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 3px;
    position: absolute;
    top: 12px;
    left: 12px;
}

/* GRID */
.ls-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARD */
.news-card {
    background: #fff;
    transition: all 0.3s ease;
}

.news-card .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s ease;
}

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

.news-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.4;
    color: #222;
}

/* Remove underline */
.news-card a {
    text-decoration: none;
}

/* SIDEBAR (match your existing style) */
.sidebar-widget {
    border-radius: 6px;
}

/* MOBILE FIX */
@media (max-width: 767px) {

    .ls-featured-post img {
        height: 250px;
    }

    .ls-featured-post .overlay h2 {
        font-size: 18px;
    }

    .ls-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-card img {
        height: 160px;
    }
}

/* Featured excerpt */
.featured-excerpt {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.6;
    color: #ddd;
}

/* Grid excerpt */
.news-excerpt {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    line-height: 1.5;
}

/* Clamp text (modern look) */
.news-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-pagination {
    text-align: center;
}

.ls-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.ls-pagination .current {
    background: #9c2c38;
    color: #fff;
    border-color: #9c2c38;
}

.ls-pagination a:hover {
    background: #f1f1f1;
}

/* CATEGORY HEADER */
.ls-category-header {
    padding: 40px 0 20px;
}

.ls-category-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ls-breadcrumb {
    font-size: 14px;
    color: #666;
}

.ls-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.ls-breadcrumb span {
    margin: 0 6px;
}

/* Optional subtle background like screenshot */
.ls-category-header {
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    border-bottom: 1px solid #eee;
}

/* Breadcrumb */
.ls-breadcrumb {
    font-size: 14px;
    color: #777;
}

.ls-breadcrumb a {
    color: #777;
    text-decoration: none;
}

.ls-breadcrumb span {
    margin: 0 5px;
}

/* Title highlight */
.ls-category-title .highlight {
    background: #f4d58d;
    padding: 2px 6px;
}

/* Featured Post */
.ls-featured-post img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Post Row */
.ls-post-row .thumb img {
    width: 220px;
    height: 150px;
    object-fit: cover;
}

/* Read More Button */
.read-more {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ccc;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
}

/* Pagination */
.ls-pagination a,
.ls-pagination span {
    margin: 0 5px;
    padding: 6px 10px;
    border: 1px solid #ddd;
}

h3.tag-title a {
    color: #000 !important;
    font-size: 22px;
    font-family: 'Oswald';
    font-weight: 600;
}

.ls-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ls-recent-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ls-recent-item .ls-thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.ls-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.ls-content h4 {
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

.ls-content h4 a {
    text-decoration: none;
    color: #000;
}

.ls-content h4 a:hover {
    color: #d32f2f;
}

.ls-date {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.ls-date .icon {
    margin-right: 5px;
}