/* newsletter signup block*/
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
        justify-content: center;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 0.5rem;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    max-width: 250px;
}

.newsletter-form button {
    padding: 0.6rem 1rem;
    background-color: var(--wp--preset--color--custom-forest-green);
    color: var(--wp--preset--color--custom-antique-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}