.blog-hero { 
    background: #0f0f1a; 
    padding: 50px 0; 
}
.blog-hero-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 30px; 
}
.blog-hero-main { 
    position: relative; 
    border-radius: 16px; 
    overflow: hidden; 
    height: 380px; 
}
.blog-hero-main img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-hero-main:hover img {
    transform: scale(1.05);
}
.blog-hero-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: 30px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.9)); 
    color: #fff;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.4s ease;
}
.blog-hero-main:hover .blog-hero-overlay {
    transform: translateY(0);
    opacity: 1;
}
.blog-hero-overlay .post-category { 
    background: #6abf4b; 
    color: #fff; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 10px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    display: inline-block; 
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(106,191,75,0.4);
}
.blog-hero-overlay h2 { 
    font-size: 26px; 
    font-weight: 500; 
    margin-bottom: 8px; 
    line-height: 1.3; 
}
.blog-hero-overlay h3 { 
    font-size: 15px; 
    font-weight: 500; 
    margin-bottom: 4px; 
    line-height: 1.3; 
    color: #fff; 
}
.blog-hero-overlay p { 
    font-size: 14px; 
    opacity: 0.85; 
    font-family: 'Open Sans', sans-serif; 
}
.blog-hero-side { 
    display: grid; 
    gap: 16px; 
}
.blog-hero-small { 
    position: relative; 
    border-radius: 12px; 
    overflow: hidden; 
    height: 180px; 
    display: block; 
}
.blog-hero-small img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-hero-small:hover img { 
    transform: scale(1.08); 
}
.blog-categories { 
    background: #f8f9fa; 
    padding: 30px 0; 
}
.category-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 12px; 
    flex-wrap: wrap; 
}
.category-tab { 
    padding: 12px 26px; 
    background: linear-gradient(135deg, #fff, #f8f9fa); 
    border: 2px solid rgba(106,191,75,0.2); 
    border-radius: 30px; 
    font-size: 13px; 
    font-weight: 600; 
    font-family: 'Open Sans', sans-serif; 
    color: #444; 
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-tab:hover, 
.category-tab.active { 
    background: linear-gradient(135deg, #6abf4b, #5aa83d); 
    border-color: transparent; 
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(106,191,75,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.blog-masonry { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
}
.blog-card { 
    background: #fff; 
    border-radius: 14px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.12); 
}
.blog-card img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover img {
    transform: scale(1.05);
}
.blog-card-content { 
    padding: 22px; 
}
.blog-card-content h3 { 
    font-size: 17px; 
    margin-bottom: 10px; 
    line-height: 1.4; 
}
.blog-card-content h3 a { 
    color: #111;
    transition: color 0.3s ease;
}
.blog-card-content h3 a:hover { 
    color: #6abf4b; 
}
.blog-card-content p { 
    font-size: 14px; 
    color: #666; 
    font-family: 'Open Sans', sans-serif; 
    line-height: 1.6; 
    margin-bottom: 12px; 
}
.blog-meta { 
    display: flex; 
    gap: 16px; 
    font-size: 12px; 
    color: #888; 
    font-family: 'Open Sans', sans-serif; 
}
.blog-meta i { 
    margin-right: 4px; 
    color: #6abf4b; 
}
.blog-layout { 
    display: grid; 
    grid-template-columns: 1fr 320px; 
    gap: 70px; 
    align-items: start; 
}
.blog-layout main { 
    display: grid; 
    gap: 36px; 
}
.blog-post { 
    margin: 0; 
    padding-bottom: 0; 
    border: 1px solid #e8e8e8; 
    border-radius: 14px; 
    background: #fff; 
    box-shadow: 0 12px 30px rgba(0,0,0,0.06); 
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-post:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.blog-post img { 
    height: 360px; 
    object-fit: cover; 
    width: 100%; 
    transition: all 0.5s ease;
    border-top-left-radius: 14px; 
    border-top-right-radius: 14px; 
}
.blog-post:hover img { 
    transform: scale(1.02);
}
.blog-post h2 { 
    font-size: 26px; 
    font-weight: 500; 
    margin: 18px 0 12px; 
    transition: color 0.3s; 
    color: #111; 
    padding: 0 22px; 
    line-height: 1.35; 
}
.blog-post h2:hover { 
    color: #6abf4b; 
}
.blog-post p { 
    color: #555; 
    line-height: 1.8; 
    font-family: 'Open Sans', sans-serif; 
    padding: 0 22px 22px; 
}
.sidebar-widget { 
    background: #fff; 
    padding: 30px; 
    margin-bottom: 28px; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #eee;
    border-radius: 14px; 
    box-shadow: 0 10px 28px rgba(0,0,0,0.06); 
}
.sidebar-widget:hover { 
    box-shadow: 0 18px 45px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.sidebar-widget h4 { 
    font-size: 13px; 
    letter-spacing: 2px; 
    margin-bottom: 20px; 
    padding-bottom: 15px; 
    border-bottom: 2px solid #6abf4b; 
    color: #111; 
    font-family: 'Open Sans', sans-serif; 
    font-weight: 700; 
    text-transform: uppercase; 
}
.sidebar-widget li { 
    padding: 14px 0; 
    border-bottom: 1px solid #f0f0f0; 
    font-size: 14px; 
    transition: all 0.3s ease;
}
.sidebar-widget li:hover { 
    padding-left: 10px;
    background: #f8fdf6;
}
.sidebar-widget a { 
    color: #333;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}
.sidebar-widget a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6abf4b;
    transition: width 0.3s ease;
}
.sidebar-widget a:hover { 
    color: #6abf4b; 
}
.sidebar-widget a:hover::after {
    width: 100%;
}
.post-category { 
    display: inline-block; 
    background: linear-gradient(135deg, rgba(106,191,75,0.15), rgba(106,191,75,0.08)); 
    color: #5aa83d; 
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 10px; 
    font-weight: 700; 
    letter-spacing: 1.2px; 
    text-transform: uppercase; 
    margin-bottom: 12px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(106,191,75,0.2);
}
.post-category:hover {
    background: linear-gradient(135deg, #6abf4b, #5aa83d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(106,191,75,0.35);
}
.blog-card {
    animation: fadeIn 0.5s ease forwards;
}
.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.15s; }
.blog-card:nth-child(3) { animation-delay: 0.2s; }
.blog-card:nth-child(4) { animation-delay: 0.25s; }
.blog-card:nth-child(5) { animation-delay: 0.3s; }
.blog-card:nth-child(6) { animation-delay: 0.35s; }
