#heart-icon {
    max-height: 70px;
    fill: #898989;
    stroke: white;
    cursor: pointer;
}

.heartscale {
    -webkit-animation: heart-beat 0.5s alternate forwards;
    animation: heart-beat 0.5s alternate forwards;
    stroke-width: 0px;
}

@-webkit-keyframes heart-beat {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
        fill: #d22128;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        fill: #d22128;
    }
}

@keyframes heart-beat {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
        fill: #d22128;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        fill: #d22128;
    }
}

@media (max-width: 730px) {
    .publish-date {
        text-align: left;
    }
}

/* Favourite Inline Button */

.favourite-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 5px 12px;

    margin-left: 10px;

    border-radius: 40px;

    background: #f4f8fb;
    border: 1px solid #e2e8f0;

    cursor: pointer;

    transition: all 0.25s ease;
}

/* Hover Container */

.favourite-wrapper:hover {
    background: #e9f4fb;
    border-color: #2c7da0;

    box-shadow: 0 4px 10px rgba(44, 125, 160, 0.15);
}

/* Icon Circle */

.favourite-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: white;

    transition: all 0.25s ease;
}

/* Hover Ring Effect */

.favourite-wrapper:hover .favourite-icon-wrap {
    background: #ffeaea;

    box-shadow: 0 0 0 4px rgba(210, 33, 40, 0.08);
}

/* Heart Icon */

.favourite-icon {
    width: 16px;
    height: 16px;

    fill: #a0aec0;

    transition: all 0.25s ease;
}

/* Hover Heart */

.favourite-wrapper:hover .favourite-icon {
    fill: #e53e3e;
    transform: scale(1.1);
}

/* Saved State */

.favourite-wrapper.saved {
    border-color: #ffd6d6;
    background: #fff5f5;
}

.favourite-wrapper.saved .favourite-icon {
    fill: #d22128;
}

.favourite-wrappere.saved .favourite-text {
    color: #d22128;
}

/* Text */

.favourite-text {
    font-size: 12.5px;
    font-weight: 500;

    color: #4a5568;

    transition: color 0.2s ease;
}

/* Mobile */

/* @media (max-width: 576px) {
    .favourite-text {
        display: none;
    }

    .favourite-wrapper {
        padding: 6px;
        border-radius: 50%;
    }
} */
