/* ========== BLOG SECTION ========== */
.blog-section {
    padding: 80px 40px;
    background: #fff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

/* ========== SIDEBAR ========== */
.blog-sidebar {
    flex: 0 0 280px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c9a84c;
}

.category-list li {
    margin-bottom: 4px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-link i {
    font-size: 16px;
    color: #c9a84c;
    width: 20px;
    text-align: center;
}

.category-count {
    margin-left: auto;
    background: #f0f0f0;
    color: #999;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
}

.category-link:hover,
.category-link.active {
    background: #f9f5ec;
    color: #c9a84c;
}

.category-link.active .category-count {
    background: #c9a84c;
    color: #fff;
}

/* Sidebar CTA */
.sidebar-cta {
    background: #000;
    padding: 30px 24px;
    text-align: center;
}

.sidebar-cta p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #c9a84c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    background: #b8953e;
}

/* ========== BLOG GRID ========== */
.blog-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ========== BLOG CARD ========== */
.blog-card {
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card.hidden {
    display: none;
}

.blog-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #c9a84c;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 14px;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-card-meta span {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: #c9a84c;
}

.blog-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: #222;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: #c9a84c;
}

.blog-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-link {
    font-size: 13px;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
}
