/*
Theme Name: Newspaper Child
Theme URI: https://haneti.com/
Description: Child theme for the Newspaper theme
Author: spec
Author URI: https://example.com
Template: Newspaper
Version: 1.0.0
*/
.bonus-page-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: #111;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}
.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-logo img {
    max-width: 60px;
    border-radius: 8px;
}

.bonus-title {
    font-size: 18px;
    margin: 10px 0;
}

.bonus-excerpt {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.bonus-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 15px;
}

.meta-item {
    background: #222;
    padding: 5px 10px;
    border-radius: 6px;
}

.bonus-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 15px;
    background: #f0b90b;
    color: #111;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}
.bonus-btn:hover {
    background: #ffcc00;
}
