/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
        .container-bonus {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0;
            align-items: stretch;
        }
        
        .container-bonus::after {
            content: "";
            flex: 1 1 calc(33.333% - 20px);
            visibility: hidden;
        }

        .col {
            flex: 1 1 calc(33.333% - 20px); /* 3 coloane pe rând */
            display: flex;
            max-width: 32.333%;
        }

        .card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
            background: #f8f8f8;
            border: 1px solid #ddd;
            border-radius: 8px;
            width: 100%;
            text-align: center;
        }

        .card h3 {
            margin-bottom: 10px;
        }

        .card p {
            flex-grow: 1;
        }

        .card .btn {
            display: inline-block;
            padding: 10px 15px;
            background: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            margin-top: auto;
        }
        
        .bonus-title {
    font-size: 25px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.container-bonus h3 {
    font-size: 15px;
}
        .bonus-description {
            font-size: 16px !important;
            line-height: 1.4;
        }
        .licenta-onjn {
                font-size: 14px;
                text-align: center;
        }
        
        .btn-bonus {
            background: #17B890 !important;
            text-decoration: none;
        }
        
        .btn-bonus:hover {
            background: #287698 !important;
            text-decoration: none;
            color: #fff !important;
        }

        /* Responsivitate pentru mobil */
        @media (max-width: 768px) {
            .col {
                flex: 1 1 100%; /* 1 coloană pe rând pe mobil */
                max-width: 100%;
            }
            .container-bonus::after {
        display: none; /* Eliminăm fix-ul pentru mobil */
    }
        }

