.social-discovery-page .uae-advertisement__statistics {
    display: none !important;
}

.social-discovery-page .uae-advertisement__engagement {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-discovery-page .uae-advertisement__engagement-button {
    align-items: center;
    background: #fff;
    border: 1px solid #d9e2ef;
    border-radius: 999px;
    color: #42526a;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 700;
    gap: 0.35rem;
    min-height: 2.25rem;
    padding: 0.45rem 0.8rem;
    text-decoration: none;
}

.social-discovery-page .uae-advertisement__engagement-button:hover,
.social-discovery-page .uae-advertisement__engagement-button:focus-visible {
    border-color: #2463d4;
    color: #174ea6;
}

.social-discovery-page .uae-advertisement__heart-button.is-hearted {
    background: #fff4f6;
    border-color: #f1a3b2;
    color: #e11d48;
}

.social-discovery-page .uae-advertisement__heart-button {
    aspect-ratio: 1;
    background: linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
    border-color: #f2c8d1;
    box-shadow: 0 0.3rem 0.8rem rgba(214, 41, 79, 0.1);
    color: #d6294f;
    flex: 0 0 2.75rem;
    font-size: 1.45rem;
    height: 2.75rem;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 2.75rem;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 2.75rem;
}

.social-discovery-page .uae-advertisement__heart-button:hover,
.social-discovery-page .uae-advertisement__heart-button:focus-visible {
    background: #fff0f3;
    border-color: #e9748d;
    color: #be123c;
    transform: translateY(-1px);
}

.social-discovery-page .uae-advertisement__heart-button [data-heart-icon] {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
}

.social-discovery-page .uae-advertisement__heart-icon {
    color: currentColor;
    display: block;
    height: 1.45rem;
    pointer-events: none;
    width: 1.45rem;
}

.social-discovery-page .uae-advertisement__heart-icon--filled {
    display: none;
}

.social-discovery-page .uae-advertisement__heart-button.is-hearted
    .uae-advertisement__heart-icon--outline {
    display: none;
}

.social-discovery-page .uae-advertisement__heart-button.is-hearted
    .uae-advertisement__heart-icon--filled {
    display: block;
}

.social-discovery-page .uae-advertisement__heart-increment {
    animation: uae-heart-increment 1s ease-out forwards;
    color: #e11d48;
    font-size: 0.9rem;
    font-weight: 800;
    left: 50%;
    line-height: 1;
    pointer-events: none;
    position: absolute;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95);
    top: 0;
    transform: translate(-50%, -30%);
    white-space: nowrap;
    z-index: 2;
}

@keyframes uae-heart-increment {
    0% {
        opacity: 0;
        transform: translate(-50%, -20%) scale(0.8);
    }

    20% {
        opacity: 1;
        transform: translate(-50%, -55%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -150%) scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-discovery-page .uae-advertisement__heart-increment {
        animation: none;
        opacity: 1;
        transform: translate(-50%, -110%);
    }
}

.social-discovery-page .uae-advertisement__engagement-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.social-discovery-page .uae-advertisement__engagement-status {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.deal-feed-sidebar {
    display: grid;
    gap: 1rem;
}

.deal-feed-sidebar-card {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 1.1rem;
    box-shadow: 0 0.75rem 2rem rgba(19, 48, 86, 0.06);
    padding: 1.15rem;
}

.deal-feed-sidebar-card h2 {
    color: #102a56;
    font-size: 1rem;
    margin: 0.35rem 0 0.55rem;
}

.deal-feed-sidebar-card p {
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.deal-feed-sidebar-card a {
    color: #1557c0;
    display: inline-block;
    font-weight: 700;
    margin-top: 0.75rem;
}

.deal-feed-sidebar-links {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}