﻿.newsletter-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.newsletter-card__title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.newsletter-card__text {
    margin-bottom: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.newsletter-input {
    width: 100%;
    height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 0 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .newsletter-input:focus {
        border-color: #ffc714;
        box-shadow: 0 0 0 3px rgba(255, 199, 20, 0.18);
    }

.newsletter-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.newsletter-checkbox-label {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.4;
    max-width: 600px;
}

.newsletter-button {
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: #ffc714;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

    .newsletter-button:hover {
        opacity: 0.92;
        transform: translateY(-1px);
    }

.newsletter-validation {
    display: block;
    margin-top: 4px;
    color: #dc2626;
    font-size: 0.875rem;
}

/* Mobile alignment for button */
@media (max-width: 576px) {
    .newsletter-button {
        width: 100%;
    }
}
