.hero-with-bg {
    position: relative;
    height: 400px;
    background: url("../../imgs/single-section-image.webp") center/cover no-repeat;
    color: var(--white);
    padding-block: 40px;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.content {
    position: relative;
    /* z-index: 0; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* TITLE */
.title {
    font-size: 48px;
    font-weight: 700;
    line-height: 12rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title h1 {
    width: fit-content;
}

.back-arrow {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity .3s;
}

.back-arrow:hover {
    opacity: .7;
}

@media (max-width:1024px) {
    .title {
        font-size: 30px;
        font-weight: 500;
        line-height: 8rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }
}
@media (max-width:425px) {
    .title h1{
        font-size: 30px;
       
    }
}