/*
Theme Name: Greenblock Blog
Theme URI: https://www.greenblock.ca/
Author: Greenblock Property Services Ltd
Author URI: https://www.greenblock.ca/
Description: A custom professional blog theme for Greenblock Property Services. Designed to showcase blog articles with a modern card-based layout while maintaining the corporate branding of the main website. Edge-to-edge header and footer with a contained, responsive blog content area.
Version: 1.0.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greenblock-blog
Domain Path: /languages
Tags: blog, custom-menu, featured-images, post-formats, threaded-comments, translation-ready
*/

/* ============================================
   GREENBLOCK BLOG THEME - CUSTOM STYLES
   ============================================ */

/* Blog Container */
.blog-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 576px) {
    .blog-container {
        padding: 0 1rem;
    }
}

/* Blog Section Styling */
.blog-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 2.5rem 0;
    }
}

/* Page Header for Blog */
.blog-page-header {
    background: linear-gradient(135deg, #1a3a0a 0%, #2d5a12 50%, #6fb60e 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.blog-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='80' cy='40' r='3' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='40' cy='80' r='2' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

.blog-page-header h1 {
    color: #fff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.blog-page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.blog-page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-page-header .breadcrumb-item a:hover {
    color: #fff;
}

.blog-page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.blog-page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   BLOG CARDS
   ============================================ */

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(111, 182, 14, 0.2);
}

/* Card Image */
.blog-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    background-color: #e9ecef;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

/* Card Category Badge */
.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.blog-card-category a {
    display: inline-block;
    background: linear-gradient(135deg, #6fb60e 0%, #5a9a0a 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(111, 182, 14, 0.35);
    transition: all 0.3s ease;
}

.blog-card-category a:hover {
    background: linear-gradient(135deg, #5a9a0a 0%, #4a8008 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 182, 14, 0.45);
    color: #fff;
}

/* Card Body */
.blog-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card Meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.875rem;
    font-size: 0.8125rem;
    color: #6c757d;
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-card-meta-item i {
    color: #6fb60e;
    font-size: 0.875rem;
}

/* Card Title */
.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.875rem;
}

.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #6fb60e;
}

/* Card Excerpt */
.blog-card-excerpt {
    color: #555;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-excerpt p {
    margin: 0;
}

/* Card Footer / Read More */
.blog-card-footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6fb60e;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-read-more:hover {
    color: #5a9a0a;
    gap: 0.75rem;
}

.blog-card-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.blog-card-read-more:hover i {
    transform: translateX(4px);
}

/* ============================================
   SINGLE POST
   ============================================ */

.single-post-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.single-post-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-color: #1a3a0a;
}

.single-post-header-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.single-post-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.single-post-header-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.single-post-header-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 3rem 1.5rem;
    color: #fff;
    width: 100%;
}

.single-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #fff;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.single-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post-meta-item i {
    color: #6fb60e;
}

.single-post-meta a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-meta a:hover {
    color: #fff;
}

.single-post-body {
    padding: 1.5rem 3rem 3rem;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #333;
}

.single-post-body h1 {
    color: #1a1a1a;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.875rem;
}

.single-post-body h2,
.single-post-body h3,
.single-post-body h4 {
    color: #1a3a0a;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.single-post-body > *:first-child {
    margin-top: 0;
}

.single-post-body p {
    margin-bottom: 1.5rem;
}

.single-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.single-post-body blockquote {
    border-left: 4px solid #6fb60e;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
}

.single-post-body a {
    color: #6fb60e;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(111, 182, 14, 0.3);
    transition: all 0.3s ease;
}

.single-post-body a:hover {
    border-bottom-color: #6fb60e;
    color: #5a9a0a;
}

.single-post-body ul,
.single-post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-post-body li {
    margin-bottom: 0.5rem;
}

/* Post Tags */
.post-tags {
    padding: 0 3rem 2rem;
}

.post-tags .tag-label {
    font-weight: 700;
    color: #1a3a0a;
    margin-right: 0.75rem;
}

.post-tags a {
    display: inline-block;
    background: #f0f4e8;
    color: #4a7008;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: #6fb60e;
    color: #fff;
}

/* Post Navigation */
.post-navigation {
    padding: 2rem 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-nav-link {
    flex: 1;
    max-width: 45%;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.post-nav-link:hover {
    transform: translateX(4px);
}

.post-nav-link.prev:hover {
    transform: translateX(-4px);
}

.post-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6fb60e;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.post-nav-title {
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    font-size: 1rem;
}

/* ============================================
   PAGINATION
   ============================================ */

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a {
    background: #fff;
    color: #555;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.blog-pagination a:hover {
    background: #6fb60e;
    color: #fff;
    border-color: #6fb60e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 182, 14, 0.3);
}

.blog-pagination .current {
    background: linear-gradient(135deg, #6fb60e 0%, #5a9a0a 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(111, 182, 14, 0.35);
}

.blog-pagination .dots {
    color: #999;
    background: none;
    border: none;
    box-shadow: none;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */

.blog-sidebar .widget {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-sidebar .widget-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1a3a0a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid #6fb60e;
    position: relative;
}

.blog-sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #1a3a0a;
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar li {
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-sidebar li:last-child {
    border-bottom: none;
}

.blog-sidebar li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-sidebar li a:hover {
    color: #6fb60e;
    padding-left: 0.5rem;
}

.blog-sidebar li a .count {
    background: #f0f4e8;
    color: #4a7008;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
}

/* Search Widget */
.widget_search .search-form {
    position: relative;
}

.widget_search input[type="search"] {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.widget_search input[type="search"]:focus {
    outline: none;
    border-color: #6fb60e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(111, 182, 14, 0.1);
}

.widget_search button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #6fb60e;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget_search button:hover {
    background: #5a9a0a;
}

/* ============================================
   ARCHIVE / SEARCH HEADER
   ============================================ */

.archive-header {
    background: linear-gradient(135deg, #1a3a0a 0%, #2d5a12 100%);
    padding: 2.5rem 0;
    margin-bottom: 3rem;
    color: #fff;
}

.archive-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.archive-header .archive-description {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
}

/* ============================================
   404 PAGE
   ============================================ */

.error-404 {
    text-align: center;
    padding: 5rem 2rem;
}

.error-404 .error-code {
    font-size: 8rem;
    font-weight: 900;
    color: #6fb60e;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.error-404 h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3a0a;
    margin-bottom: 1rem;
}

.error-404 p {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 991px) {
    .single-post-title {
        font-size: 1.875rem;
    }
    
    .single-post-header-content,
    .single-post-body,
    .post-tags,
    .post-navigation {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .single-post-header {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .blog-page-header h1 {
        font-size: 1.75rem;
    }
    
    .single-post-title {
        font-size: 1.5rem;
    }
    
    .single-post-header-content,
    .single-post-body,
    .post-tags,
    .post-navigation {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .single-post-body {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .single-post-header {
        min-height: 280px;
    }
    
    .blog-card-title {
        font-size: 1.125rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .post-nav-link {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .blog-card-body {
        padding: 1.25rem;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .error-404 .error-code {
        font-size: 5rem;
    }
}

/* ============================================
   ADMIN BAR FIX
   ============================================ */

html {
    margin-top: 0 !important;
}

#wpadminbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

@media screen and (max-width: 782px) {
    html {
        margin-top: 0 !important;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid #6fb60e;
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #6fb60e;
    color: #fff;
    padding: 8px 16px;
    z-index: 100000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.blog-card {
    animation: fadeInUp 0.6s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.1s; }
.blog-card:nth-child(3) { animation-delay: 0.15s; }
.blog-card:nth-child(4) { animation-delay: 0.2s; }
.blog-card:nth-child(5) { animation-delay: 0.25s; }
.blog-card:nth-child(6) { animation-delay: 0.3s; }
.blog-card:nth-child(7) { animation-delay: 0.35s; }
.blog-card:nth-child(8) { animation-delay: 0.4s; }
.blog-card:nth-child(9) { animation-delay: 0.45s; }

/* ============================================
   SINGLE POST SIDEBAR
   ============================================ */

.single-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 32px;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .single-post-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

.sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.sidebar-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06);
}

/* CTA Card */
.sidebar-card-cta {
    background: linear-gradient(135deg, #1a3a0a 0%, #2d5a12 50%, #4a8008 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-card-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(111, 182, 14, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.sidebar-card-cta .sidebar-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(111, 182, 14, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #6fb60e;
    border: 2px solid rgba(111, 182, 14, 0.3);
    position: relative;
    z-index: 1;
}

.sidebar-card-cta .sidebar-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.sidebar-card-cta .sidebar-card-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.sidebar-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #6fb60e 0%, #5a9a0a 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.sidebar-card-btn:hover {
    background: linear-gradient(135deg, #7bc80f 0%, #6aad0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 182, 14, 0.4);
    color: #fff;
}

/* Contact Card */
.sidebar-card-contact {
    padding: 1.5rem;
}

.sidebar-card-title-sm {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #1a3a0a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #6fb60e;
    position: relative;
}

.sidebar-card-title-sm::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #1a3a0a;
}

.sidebar-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-contact-list li:last-child {
    border-bottom: none;
}

.sidebar-contact-list li i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #f0f4e8;
    color: #4a7008;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-top: 2px;
}

.sidebar-contact-list li .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    margin-bottom: 0.125rem;
}

.sidebar-contact-list li a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-contact-list li a:hover {
    color: #6fb60e;
}

.sidebar-contact-list li span:not(.label) {
    color: #1a1a1a;
    font-weight: 600;
}

/* Form Card */
.sidebar-card-form {
    padding: 1.5rem;
}

.sidebar-card-text-sm {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.sidebar-card-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: transparent;
    color: #6fb60e;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #6fb60e;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.sidebar-card-btn-outline:hover {
    background: #6fb60e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 182, 14, 0.3);
}

/* Trust Card */
.sidebar-card-trust {
    padding: 1.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.trust-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555;
    line-height: 1.3;
}

/* Responsive sidebar adjustments */
@media (max-width: 991px) {
    .single-post-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .sidebar-card-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .single-post-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        padding: 1.25rem;
    }
}
