/* Blog Page Styles (index.html) */
.blog-one__img img {
    transition: transform 0.5s ease;
}

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

.filter-tag {
    background-color: #f4f4f4;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag.active,
.filter-tag:hover {
    background-color: #10C710;
    color: white;
    border-color: #10C710;
}

.blog-sidebar__search-form {
    position: relative;
}

.blog-sidebar__search-form input {
    width: 100%;
    height: 60px;
    background-color: #f4f4f4;
    padding-left: 30px;
    padding-right: 60px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #74787c;
    border-radius: 5px;
}

.blog-sidebar__search-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #10C710;
    color: white;
    border: none;
    outline: none;
    font-size: 18px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-sidebar__search-form button:hover {
    background-color: #1d2228;
}

/* Blog Post Details Styles (post.html) */
.blog-details__content a {
    color: #0a9c0a;
    font-weight: 600;
}

.blog-details__content a:hover {
    color: var(--thm-black);
    text-decoration: underline;
}

.blog-details__img img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-details__text-1 h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.blog-details__text-1 ul,
.blog-details__text-1 ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-details__text-1 li {
    margin-bottom: 10px;
}

.blog-details__content h2 {
    border-bottom: 2px solid #2dc42d; /* Updated color */
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 100%;
}

/* New Custom Changes */

/* 1. Remove blog date display */
.blog-one__date,
.blog-details__meta li:has(.fa-calendar-alt),
.blog-one__date p {
    display: none !important;
}

/* 2. Change read more button color */
.blog-one__read-more {
    color: #2dc42d !important;
}

.blog-one__read-more:hover {
    color: #0a9c0a !important;
}

/* 3. Remove black hover animation for mobile */
@media (max-width: 767px) {
    .blog-one__img:before {
        display: none !important;
    }
    .blog-one__plus {
        display: none !important;
    }
    .blog-one__img img {
        transform: none !important;
    }
}

