/* Additional styles for new slides */
.cv-donation {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cv-donation-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.cv-donation-content {
    margin: 2rem 0;
}

.cv-newsletter {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cv-newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cv-newsletter-subtitle {
    color: #666;
    margin-bottom: 1rem;
}

.cv-newsletter-desc {
    color: #666;
    margin-bottom: 1rem;
}

.cv-newsletter-form {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cv-newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--bordercl, #ddd);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.cv-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--textcolor, #333);
}

.cv-newsletter-form input[type="submit"] {
    width: 100%;
    background: none;
    border: 1px solid var(--bordercl, #ddd);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    color: var(--textcolor, #333);
    transition: background-color 0.2s ease;
}

.cv-newsletter-form input[type="submit"]:hover {
    background-color: var(--calloutcolor, #f5f5f5);
}

.cv-newsletter-powered {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}

.cv-newsletter-powered a {
    color: #999;
    text-decoration: underline;
}

.cv-nav-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}