.featured-post {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-10px);
}

.featured-post-img {
    /* height: 300px; */
    object-fit: cover;
    width: 100%;
}

.featured-post-content {
    padding: 2rem;
    background-color: white;
}

.featured-post-tag {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.featured-post-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.featured-post-meta {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.featured-post-meta i {
    margin-right: 0.3rem;
}

.featured-post-meta span {
    margin-right: 1rem;
}

.featured-post-excerpt {
    margin-bottom: 1rem;
}

.highlight-badge {
    background-color: var(--featured-post-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
}

.blog-card {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-card-content {
    padding: 1.5rem;
    background-color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--accent-green);
}

.blog-card-meta {
    color: #6c757d;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.blog-card-meta i {
    margin-right: 0.3rem;
}

.blog-card-meta span {
    margin-right: 0.7rem;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.read-more i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.side-section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.side-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(0, 114, 17, 0.1);
    color: var(--primary-green);
}

@media (max-width: 768px) {

    .featured-post-img {
        height: 200px;
    }

    .blog-card-img {
        height: 180px;
    }
}