/*For favorite button on post*/
.favorite-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #052A75;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    white-space: nowrap;
}

.favorite-btn:hover,
.favorite-btn:active,
.favorite-btn:focus {
    color: #385dff;
    text-decoration: none;
    background: none;
}

.favorite-btn i {
    font-size: 12px;
}


/*For favorite tab in account page*/
.favorite-item img {
    width: 300px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}


/*Change delete button*/

/*Layout title and delete on the side of featured image*/
.favorite-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
}

/*Image size*/
.favorite-item a,
.favorite-item .favorite-thumb {
    width: 300px;
}

/*Delete text color*/
.favorite-item .favorite-btn {
    color: #DB4B86;
}


/*Adjust Title*/
.favorite-item .favorite-title {
    margin: 0 0 8px;
    line-height: 1.4;
}

/*Adjust delete text*/
.favorite-item .favorite-meta {
    display: flex;
    flex-direction: column;
}

/*For mobile display under image*/
@media (max-width: 428px) {
.favorite-item {
    display: block;
}

/*Padding under image*/
.favorite-item .favorite-title {
    margin: 15px 0 8px;
    line-height: 1.4;
}
}

/*Guest user message*/
.favorite-guest-msg {
    font-size: 12px;
    color: #052A75;
    text-align: center;
    font-family: inherit;
    margin-bottom: 0px;
    margin-top: 2px;
}
