/**
 * Bonus List Component
 * Styles for bonus listing and bookmaker cards
 *
 * @package Bonusovekody
 * @since 2.0.0
 */

/* ============================================
 * BONUS LIST CONTAINER
 * ============================================ */

.bonus-list {
    display: grid;
    gap: var(--space-6);
    margin-bottom: var(--space-7);
}

/* ============================================
 * BONUS ITEM CARD
 * ============================================ */

.bonus-item {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--card-padding);
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-base) var(--ease-out);
}

.bonus-item:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

/* ============================================
 * BONUS ITEM ELEMENTS
 * ============================================ */

.bonus-item__logo {
    flex-shrink: 0;
    width: 150px;
    height: auto;
}

.bonus-item__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bonus-item__content {
    flex-grow: 1;
}

.bonus-item__title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.bonus-item__description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.bonus-item__meta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.bonus-item__rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-small);
    color: var(--color-text-muted);
}

.bonus-item__actions {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

/* ============================================
 * RESPONSIVE
 * ============================================ */

@media (max-width: 767px) {
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }

    .bonus-item__logo {
        width: 120px;
    }

    .bonus-item__actions {
        width: 100%;
        flex-direction: column;
    }

    .bonus-item__actions .btn {
        width: 100%;
    }
}
