.health-banner {
    background-image: url(/static/image/cool-6.jpg);
    background-position: center 30%;

    &::before {
        background-color: rgba(19, 19, 19, 0.76);
    }
}

/* blog - start */
.blog-section {
    /* background-color: rgba(1, 92, 178, 0.02); */
    position: relative;
    padding-bottom: 180px;

    .section-title {
        color: #fff;
    }

    /* &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(/static/image/stats-events-bg-shape.png) no-repeat center center / cover;
        opacity: 0.06;
    } */
}

.blog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.blog-more-btn {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 24px 0 16px;
    border-radius: 999px;
    /* border: 1px solid var(--orange-color); */
    background: var(--orange-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;

    &:hover {
        background: #fff;
        color: var(--orange-color);

        .blog-more-icon {
            color: #ffffff;
            background: var(--orange-color);

            svg {
                width: 16px;
                height: 16px;

                path {
                    fill: #ffffff;
                    transition: all 0.3s ease;
                }
            }
        }

        span {
            color: var(--orange-color);

            svg {
                path {
                    fill: #ffffff;
                    transition: all 0.3s ease;
                }
            }
        }
    }
}

.blog-more-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: var(--orange-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;

    svg {
        width: 16px;
        height: 16px;

        path {
            fill: var(--orange-color);
            transition: all 0.3s ease;
        }
    }
}

.blog-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.blog-card-item {
    display: grid;
    grid-template-columns: 42% 1fr;
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    /* border: 4px solid var(--main-color); */

    a {
        
    }

    &:hover {
        .blog-card-img-wrap img {
            transform: scale(1.1);
        }

        .blog-card-title {
            color: var(--orange-color);
        }
    }
}

.blog-card-img-wrap {
    position: relative;
    min-height: 220px;
    border-radius: 15px;
    overflow: hidden;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.blog-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.blog-date-badge strong {
    font-size: 16px;
    line-height: 1.2;
    color: var(--orange-color);
}

.blog-date-badge span {
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--orange-color);
    font-weight: 700;
}

.blog-card-content {
    padding: 14px 16px 14px;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    margin: 0;
    color: #1d2531;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 800;
    margin-bottom: 17px;
}

.blog-card-desc {
    margin-bottom: 12px;
    color: #6c7483;
    font-size: 16px;
    line-height: 1.6;
}

.blog-card-meta-label {
    margin: 0;
    color: var(--orange-color);
    font-size: 15px;
    font-weight: 700;
    border-top: 1px solid #e5e5e5;
    padding-top: 12px;
}

.blog-card-meta-value {
    margin: 4px 0 14px;
    color: #818898;
    font-size: 15px;
}

.blog-card-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 20px 0 12px;
    border-radius: 999px;
    background: var(--orange-color);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    width: fit-content;

    &:hover {
        background: #fff;
        color: var(--orange-color);
        border: 1px solid var(--orange-color);

        span {
            background: var(--orange-color);
            color: #fff;

            svg {
                path {
                    fill: #fff;
                    transition: all 0.3s ease;
                }
            }
        }
    }
}

.blog-card-btn span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: var(--orange-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;

    svg {
        width: 14px;
        height: 14px;

        path {
            fill: var(--orange-color);
            transition: all 0.3s ease;
        }
    }
}

.search-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    border-radius: 16px;
    background: #fff;
    /* box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06); */
}

.search-empty__img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(1, 93, 178, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.search-empty__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.65;
}

.search-empty__text {
    margin: 0;
    color: #6c7483;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
}

/* blog - end */