.hero-single-blog {
    color: var(--white);
    background-image: url("../img/bg-blog.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 50px 0;
    height: auto;
}

.hero-single-blog .hero-text {
    max-width: 85%;
}

.hero-single-blog .hero-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-single-blog .hero-text p {
    font-size: 18px;
}

.hero-single-blog .hero-text .btn-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-single-blog .hero-text .btn-wrapper .neon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* gap: .5rem; */
    padding: 15px 28px;
    background: #0b1631;
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    isolation: isolate;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    overflow: hidden;
}

.hero-single-blog .hero-text .btn-wrapper .neon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(240, 164, 58, .6);
}

.hero-single-blog .hero-text .btn-wrapper .neon-btn::before {
    content: "";
    position: absolute;
    inset: auto auto 0 .8rem;
    width: 26px;
    height: 6px;
    background: #f0a43a;
    border-radius: 0 4px 0 0;
    box-shadow: 0 0 14px rgba(240, 164, 58, .6);
    transition: width .25s ease;
    z-index: 1;
}

.hero-single-blog .hero-text .btn-wrapper .neon-btn:hover::before {
    width: 36px;
}

.hero-single-blog .hero-text .hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    margin-top: 15px;
}
.hero-single-blog .hero-text .hero-meta i{
    color: #f0a43a;
    margin: 5px 10px;
}

@media (max-width: 768px) {
    .hero-single-blog .hero-text h1 {
        font-size: 28px;
    }

    .hero-single-blog .hero-text p {
        font-size: 16px;
    }

    .hero-single-blog .hero-text {
        max-width: 100%;
    }
    .hero-single-blog .hero-text .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}