/* Social Day Item */
.social-day-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-radius 0.3s ease;
}

.social-day-item:hover {
    transform: scale(0.98);
}

.social-day-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.social-day-item-text {
    position: absolute;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 50px;
    text-align: center;
    background: var(--pink-color);
    color: var(--white-color);
    min-height: 100px;
    min-width: 220px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.social-day-item-title {
    font-family: var(--font-main);
    font-size: 24px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: var(--white-color);
}