/* --- Media Donation Page Template Styling --- */

.donation-template-container {
    background-color: #f8f9fa;
    padding: 60px 20px;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.donation-card {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #111111; /* Newspaper-style dark accent border */
}

.donation-header {
    text-align: center;
    margin-bottom: 30px;
}

.donation-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.donation-tagline {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555555;
}

.donation-body {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333333;
}

/* Form styling integration for standard donation plugins (GiveWP, Charitable, WooCommerce) */
.donation-body form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Example Custom Donation Option Grid */
.donation-options h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666666;
    margin-bottom: 15px;
    text-align: center;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.amount-btn {
    background: #ffffff;
    border: 2px solid #e1e1e1;
    padding: 15px 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111111;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amount-btn .btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    color: #666666;
    margin-top: 4px;
}

.amount-btn:hover {
    border-color: #111111;
    background: #fafafa;
}

.amount-btn.active {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.amount-btn.active .btn-subtext {
    color: #cccccc;
}

.donation-footer {
    text-align: center;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #777777;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .donation-card {
        padding: 20px;
    }
    .donation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
