html {
    scroll-behavior: smooth;
}

.party-card {
    position: relative;
    overflow: visible;
}

.party-card.party::before,
.party-card.party::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.55;
    pointer-events: none;
    z-index: 2;
}

.party-cta-top {
    margin: 15px 0 20px 0;
    padding: 12px 18px;
    border-radius: 8px;
    background-color: #f2f7f6; /* very light teal tint */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #134e4a;
}

.party-cta-top-btn {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1f7a78;
    background-color: white;
    border: 1px solid #1f7a78;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.party-cta-top-btn:hover {
    background-color: #1f7a78;
    color: white;
}

