.brushed-bg-wrapper {
    height: fit-content;
    width: 330px;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.brushed-bg-link {
    width: fit-content;
    height: fit-content;
    text-decoration: none;
    transition: opacity 200ms ease-in-out;
}

.brushed-bg-link:hover {
    cursor: pointer;
    opacity: 0.9;
}

.brushed-bg-content {
    height: fit-content;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.brushed-bg-content img {
    width: 100%;
    object-fit: cover;
    height: 250px;
}

.full-img img {
    width: 100%;
    height: 100%;
}

.brushed-bg-text-container {
    box-sizing: border-box;
    width: 100%;
    height: fit-content;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brushed-bg-text-container span {
    font-size: 25px;
    font-weight: 600;
    max-width: 85%;
}

.brushed-bg-full-span {
    max-width: none !important;
    width: 100%;
}

.brushed-bg-text-container i {
    font-size: 23px;
    font-weight: 600;
}

@media (max-width:390px) {

    .brushed-bg-wrapper {
        width: 280px;
    }


}