/* ============================================================
   РОЗЫГРЫШИ — СТИЛИ
   ============================================================ */

.giveaways-widget {
    padding: 4px 16px 16px;
    font-family: 'Nunito', sans-serif;
    color: var(--app-text, #3A0F1F);
}

.giveaway-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(74, 19, 39, 0.08);
}

.giveaway-card__image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--app-burgundy-dark, #4A1327);
    display: block;
}

.giveaway-card__body {
    padding: 14px 16px;
}

.giveaway-card__prize {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 17px;
    margin: 0 0 4px;
}

.giveaway-card__description {
    font-size: 13px;
    color: var(--app-muted, #8C6B4F);
    margin: 0 0 12px;
    line-height: 1.4;
}

.giveaway-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.giveaway-card__count {
    font-size: 12px;
    color: var(--app-muted, #8C6B4F);
}

.giveaway-card__join-button {
    padding: 10px 20px;
    border: none;
    border-radius: 14px;
    background: var(--app-burgundy, #6E1E3A);
    color: white;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.giveaway-card__join-button.is-joined {
    background: #63C25C;
    cursor: default;
}

.giveaways-empty {
    background: white;
    border-radius: 20px;
    padding: 32px 16px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(74, 19, 39, 0.08);
}

.giveaways-empty__icon {
    width: 48px;
    height: 48px;
}

.giveaways-empty__title {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin: 8px 0 2px;
}

.giveaways-empty__note {
    font-size: 12px;
    color: var(--app-muted, #8C6B4F);
    margin: 0;
}
