.offers-listing-offer {
    padding: 2em !important;
    flex: 0 0 calc(29% - 2em);
    justify-content: space-between;

    .material-symbols-outlined {
        font-size: 20px;
    }

    .offers-listing-offer-title {
        font-size: 1.3em;
        margin: 0;
        position: relative;
        width: 100%;
        display: flex;

        &:after {
            font-family: 'Material Symbols Outlined';
            content: 'chevron_forward';
            position: absolute;
            right: 0;
            top: 0;
            background: #dbdbdbc2;
            padding: 10px;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            font-size: 30px;
            align-items: center;
            opacity: 0;
            z-index: -1;
            transition: .3s;
        }

        &:hover {
            &:after {
                opacity: 1;
                z-index: 1;
            }
        }
    }

    .offers-listing-offer-details {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;

        .offers-listing-offer-detail {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 5px;
            width: 100%;
            margin: 0;
            text-align: justify;
        }
    }

    .offers-listing-offer-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        margin-top: 2em;

        .offers-listing-offer-favorite {
            font-size: 2em ;
            height: 32px;
            width: 32px;

            .material-symbols-outlined {
                font-size: 1em;
            }
        }
    }
}
