/*
Theme Name:     child
Theme URI:      n/a
Template:       kadence
Author:         Pro Author
Author URI:     n/a
Description:    Child Theme Description
Version:        1.0
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/

.bonus-card p {
    color: #000;
    margin-bottom: 0;
    font-size: 16px;
}
.bonus-card {
    display: grid;
    grid-template-columns: 150px 1fr 2fr 125px; 
    gap: 15px;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.bonus-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bonus-card__logo img {
    width: 150px;
    object-fit: contain;
    border-radius: 5px;
}

.bonus-card__offer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-card__amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ff5722;
    margin-bottom: 5px;
}

.bonus-card__tag {
    display: inline-block;
    padding: 2px 8px;
    background-color: #4caf50;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.bonus-card__desc {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

.bonus-card__meta {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

.bonus-card__action {
    display: flex;
    justify-content: flex-end;
}

.bonus-card__action .btn-claim {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.bonus-card__action .btn-claim:hover {
    background-color: #e64a19;
}

/* Responsive - mobil: toate elementele unul sub altul */
@media (max-width: 768px) {
        .bonus-card {
        align-items: center;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
        padding: 10px;
        justify-items: center;
    }

    .bonus-card__logo,
    .bonus-card__offer,
    .bonus-card__desc,
    .bonus-card__action {
        justify-content: center;
        text-align: center;
    }

    .bonus-card__offer {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .bonus-card__action {
        justify-content: center;
    }
}
