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

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

    ul {
        list-style: none;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 600;
        font-size: 0.875rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .btn-success {
        background-color: hsl(var(--secondary));
        color: white;
    }

    .btn-success:hover {
        background-color: hsl(174 62% 40%);
    }

    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* ========================================
       Animations
       ======================================== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ========================================
       Inner Blog Section - Main Layout
       ======================================== */
    .inner-blog {
        padding: var(--section-padding) 0;
        background: hsl(var(--background));
    }

    .row {
        display: grid;
        gap: 3rem;
    }

    @media (min-width: 1024px) {
        .row {
            grid-template-columns: 1fr 380px;
        }
    }

    .col-lg-8 {
        min-width: 0;
    }

    .col-lg-4,
    .col-sm-12,
    .col-md-12 {
        min-width: 0;
    }

    /* ========================================
       Blog Single Post Card
       ======================================== */
    .bsingle__post {
        background: hsl(var(--card));
        border-radius: 1.5rem;
        overflow: hidden;
        border: 1px solid hsl(var(--border));
        transition: all 0.3s ease;
    }

    .bsingle__post:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    }

    .mb-50 {
        margin-bottom: 2.5rem;
    }

    .bsingle__post-thumb {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16/9;
    }

    .bsingle__post-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .bsingle__post:hover .bsingle__post-thumb img {
        transform: scale(1.05);
    }

    .bsingle__content {
        padding: 2rem;
    }

    .bsingle__content .admin {
        margin-bottom: 1rem;
    }

    .bsingle__content .admin a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: hsl(var(--secondary));
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .bsingle__content .admin a:hover {
        color: hsl(174 62% 35%);
    }

    .bsingle__content .admin a i {
        font-size: 0.875rem;
    }

    .bsingle__content h2 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1rem;
        color: hsl(var(--foreground));
    }

    .bsingle__content h2 a {
        color: inherit;
        transition: color 0.3s ease;
    }

    .bsingle__content h2 a:hover {
        color: hsl(var(--secondary));
    }

    .bsingle__content p {
        color: hsl(var(--muted-foreground));
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .meta-info ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid hsl(var(--border));
    }

    .meta-info li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: hsl(var(--muted-foreground));
    }

    .meta-info li i {
        color: hsl(var(--secondary));
    }

    /* ========================================
       Empty State / Not Found
       ======================================== */
    .text-center {
        text-align: center;
        padding: 4rem 2rem;
        background: hsl(var(--card));
        border-radius: 1.5rem;
        border: 1px solid hsl(var(--border));
    }

    .text-center h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: hsl(var(--foreground));
        margin-bottom: 1.5rem;
    }

    /* ========================================
       Pagination
       ======================================== */
    .pagination-wrap {
        margin-top: 2rem;
    }

    .pagination-wrap nav {
        display: flex;
        justify-content: center;
    }

    .pagination-wrap ul,
    .pagination-wrap .pagination {
        display: flex;
        gap: 0.5rem;
        list-style: none;
    }

    .pagination-wrap a,
    .pagination-wrap span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 2.5rem;
        height: 2.5rem;
        padding: 0 0.75rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: hsl(var(--foreground));
        background: hsl(var(--card));
        border: 1px solid hsl(var(--border));
        transition: all 0.3s ease;
    }

    .pagination-wrap a:hover {
        background: hsl(var(--secondary));
        color: white;
        border-color: hsl(var(--secondary));
    }

    .pagination-wrap .active a,
    .pagination-wrap .current {
        background: hsl(var(--primary));
        color: white;
        border-color: hsl(var(--primary));
    }

    /* ========================================
       Sidebar Widgets
       ======================================== */
    .sidebar-widget {
        position: sticky;
        top: 6rem;
    }

    .widget {
        background: hsl(var(--card));
        border-radius: 1rem;
        padding: 1.5rem;
        border: 1px solid hsl(var(--border));
        margin-bottom: 1.5rem;
    }

    .widget-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: hsl(var(--foreground));
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid hsl(var(--secondary));
        display: inline-block;
    }

    /* Search Widget */
    .widget_search .search-form {
        display: flex;
        gap: 0.5rem;
    }

    .widget_search .search-form label {
        flex: 1;
    }

    .widget_search .screen-reader-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .widget_search .search-field {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid hsl(var(--border));
        border-radius: 0.5rem;
        font-family: inherit;
        font-size: 0.875rem;
        background: hsl(var(--background));
        color: hsl(var(--foreground));
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .widget_search .search-field:focus {
        outline: none;
        border-color: hsl(var(--secondary));
        box-shadow: 0 0 0 3px hsl(var(--secondary) / 0.1);
    }

    .widget_search .search-submit {
        padding: 0.75rem 1.25rem;
        background: hsl(var(--secondary));
        color: white;
        border: none;
        border-radius: 0.5rem;
        font-weight: 600;
        font-size: 0.875rem;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .widget_search .search-submit:hover {
        background: hsl(174 62% 40%);
    }

    /* Categories Widget */
    .widget_categories ul {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .widget_categories .cat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        background: hsl(var(--background));
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }

    .widget_categories .cat-item:hover {
        background: hsl(var(--secondary) / 0.1);
    }

    .widget_categories .cat-item a {
        color: hsl(var(--foreground));
        font-weight: 500;
        font-size: 0.9rem;
        flex: 1;
    }

    .widget_categories .cat-item:hover a {
        color: hsl(var(--secondary));
    }

    /* Recent Posts / Other Posts Widget */
    .widget_recent_entries ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .widget_recent_entries li {
        padding-bottom: 1rem;
        border-bottom: 1px solid hsl(var(--border));
    }

    .widget_recent_entries li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .widget_recent_entries li a {
        font-weight: 600;
        font-size: 0.9rem;
        color: hsl(var(--foreground));
        display: block;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    .widget_recent_entries li a:hover {
        color: hsl(var(--secondary));
    }

    .widget_recent_entries .post-date {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.8rem;
        color: hsl(var(--muted-foreground));
    }

    /* ========================================
       Responsive Adjustments
       ======================================== */
    @media (max-width: 1023px) {
        .sidebar-widget {
            position: static;
            margin-top: 2rem;
        }

        .row {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 767px) {
        .bsingle__content {
            padding: 1.5rem;
        }

        .bsingle__content h2 {
            font-size: 1.25rem;
        }

        .meta-info ul {
            flex-direction: column;
            gap: 0.75rem;
        }

        .widget_search .search-form {
            flex-direction: column;
        }

        .widget_search .search-submit {
            width: 100%;
        }
    }

    /* ========================================
       Utilities
       ======================================== */
    .pt-120 {
        padding-top: var(--section-padding);
    }

    .pb-120 {
        padding-bottom: var(--section-padding);
    }