/* Stile finale e blindato con !important - Architects Advisor */
.newsletter-wrapper {
    background-color: #1a2a44 !important;
    padding: 35px 30px !important;
    text-align: center !important;
    border-radius: 8px !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    border: none !important;
}

.newsletter-header h3 {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #ffc400 !important; /* Colore giallo/oro come "SPONSORIZZATO" */
}

.newsletter-header p {
    margin-bottom: 25px !important;
    color: #cccccc !important;
    font-size: 16px !important;
}

.newsletter-form {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 15px !important;
}

.newsletter-input-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 15px !important;
}

.newsletter-form .form-control {
    background-color: #ffffff !important;
    border: 1px solid #ced4da !important;
    color: #333333 !important;
    height: 45px !important;
    padding: 10px 15px !important;
    font-size: 15px !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.newsletter-form .form-control::placeholder {
    color: #999999 !important;
}

.newsletter-form .btn-primary {
    background-color: #f48842 !important; /* Colore arancione del sito */
    border: 2px solid #f48842 !important;
    color: #ffffff !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    height: 45px !important;
    padding: 10px 25px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, border-color 0.3s ease !important;
}

.newsletter-form .btn-primary:hover {
    background-color: #e57732 !important; /* Arancione più scuro */
    border-color: #e57732 !important;
}

/* Responsive: layout orizzontale su schermi più grandi */
@media (min-width: 992px) {
    .newsletter-form {
        flex-direction: row !important;
    }
    .newsletter-input-group {
        flex-direction: row !important;
        flex-grow: 1 !important;
    }
    .newsletter-form .btn-primary {
        width: auto !important;
    }
}
