/* ==========================================================================
   Samstag Newsletter – WordPress Plugin Styles
   ========================================================================== */

.sn-newsletter-wrapper {
    margin: 0 auto;
    max-width: 1200px;
    padding: 35px 15px;
}

.sn-title {
    font-size: 28px;
    line-height: 30px;
    font-weight: normal;
    letter-spacing: normal;
    margin-top: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(209, 209, 209);
}

/* Formular */
.sn-form {
    max-width: 500px;
}

.sn-form-group {
    margin-bottom: 20px;
}

.sn-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.sn-input {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

.sn-input:focus {
    border-color: #095a9c;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(9, 90, 156, 0.25);
}

/* Button */
.sn-btn {
    display: inline-block;
    background: rgba(9, 90, 156, 1);
    color: rgba(255, 255, 255, 1);
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
    border: none;
    padding: 0 35px;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sn-btn:hover {
    background: rgba(0, 51, 93, 1);
    color: #fff;
}

.sn-btn:active {
    transform: translateY(1px);
}

.sn-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.sn-btn-secondary {
    display: inline-block;
    color: rgba(9, 90, 156, 1);
    line-height: 40px;
    text-decoration: none;
    font-size: 1rem;
}

.sn-btn-secondary:hover {
    text-decoration: underline;
}

/* Hinweise */
.sn-privacy-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

/* Erfolgsmeldungen */
.sn-success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.sn-error {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.sn-highlight {
    font-weight: bold;
    color: rgba(9, 90, 156, 1);
}

/* Abmelde-Bestätigung */
.sn-newsletter-wrapper p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .sn-newsletter-wrapper {
        padding: 20px 15px;
    }
    
    .sn-title {
        font-size: 24px;
    }
    
    .sn-btn {
        width: 100%;
    }
}
