/* ==================================================
   NEWSLETTER-PROMO.CSS – NEWSLETTER + PROMO + HIGHLIGHT
   Final safe version
   Extracted from custom.css
   Sections: 6, 7, 17
================================================== */

/* ==================================================
   6. NEWSLETTER BLOCK
================================================== */

.newsletter.akj-newsletter-box {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
}

.newsletter.akj-newsletter-box .newsletter-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    border-radius: var(--akj-nl-radius);
    background: var(--akj-nl-bg);
    box-shadow: var(--akj-nl-shadow);
    overflow: hidden;
}

.newsletter.akj-newsletter-box .newsletter-left {
    padding: 48px 42px;
}

.newsletter.akj-newsletter-box .newsletter-header {
    margin-bottom: 24px;
}

.newsletter.akj-newsletter-box .newsletter-title {
    margin-bottom: 20px;
    color: var(--akj-nl-text);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
}

.newsletter.akj-newsletter-box .newsletter-desc,
.newsletter.akj-newsletter-box .newsletter-description {
    margin: 0;
    color: var(--akj-nl-text);
    font-size: 15px;
    line-height: 1.6;
}

.newsletter.akj-newsletter-box .newsletter-form {
    display: block;
    margin: 0;
}

.newsletter.akj-newsletter-box .newsletter-form-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 16px;
}

.newsletter.akj-newsletter-box .newsletter-input {
    flex: 1 1 auto;
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 2px solid #111111;
    border-radius: 14px;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    line-height: 1.2;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    appearance: none;
    -webkit-appearance: none;
}

.newsletter.akj-newsletter-box .newsletter-input::placeholder {
    color: #999999;
}

.newsletter.akj-newsletter-box .newsletter-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.12),
        0 0 0 3px rgba(0, 0, 0, 0.08);
}

.newsletter.akj-newsletter-box .newsletter-submit {
    flex: 0 0 auto;
    min-width: 168px;
    min-height: 56px;
    padding: 0 24px;
    border: none;
    border-radius: 14px;
    background: var(--akj-nl-accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 0;
}

.newsletter.akj-newsletter-box .newsletter-submit:hover {
    background: var(--akj-nl-accent-hover);
}

.newsletter.akj-newsletter-box .newsletter-submit:active {
    transform: translateY(1px);
}

.newsletter.akj-newsletter-box .newsletter-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.newsletter.akj-newsletter-box .newsletter-message {
    min-height: 24px;
    margin-top: 8px;
}

.newsletter.akj-newsletter-box .newsletter-footer {
    margin-top: 18px;
}

.newsletter.akj-newsletter-box .newsletter-privacy {
    margin: 0;
    color: var(--akj-nl-text);
    font-size: 14px;
    line-height: 1.6;
}

.newsletter.akj-newsletter-box .newsletter-right {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.newsletter.akj-newsletter-box .newsletter-media {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.newsletter.akj-newsletter-box .newsletter-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: contain;
}

/* ==================================================
   7. PROMO BLOCK – CLEAN HTML VERSION
================================================== */

.home .akj-promo-block {
    max-width: 1240px;
    margin: -40px auto 0;
    padding: 0 10px;
}

.home .akj-promo-block .promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px 42px;
    background: #b80000;
    border-radius: 0;
}

.home .akj-promo-block .promo-icon {
    flex: 0 0 90px;
    max-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .akj-promo-block .promo-icon img {
    display: block;
    width: 100%;
    max-width: 80px;
    height: auto;
    object-fit: contain;
}

.home .akj-promo-block .promo-content {
    flex: 1 1 auto;
    min-width: 0;
}

.home .akj-promo-block .promo-title {
    margin: 0 0 14px;
    padding: 14px 18px;
    border: 2px solid #111111;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.home .akj-promo-block .promo-subtitle {
    display: inline-block;
    margin: 0;
    padding: 10px 14px;
    background: #111111;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
}

.home .akj-promo-block .promo-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home .akj-promo-block .promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 2px solid #ffffff;
    background: #0f0e17;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home .akj-promo-block .promo-cta:hover,
.home .akj-promo-block .promo-cta:focus {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

/* ==================================================
   17. HIGHLIGHT BANNER – BLACK + RED ACCENT
================================================== */

.akj-highlight-banner {
    position: relative;
    margin: 36px 0;
    padding: 30px 32px 30px 36px;
    border: 2px solid #000000;
    border-left: 8px solid #b80000;
    border-radius: 14px;
    background: #000000;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.akj-highlight-banner,
.akj-highlight-banner h1,
.akj-highlight-banner h2,
.akj-highlight-banner h3,
.akj-highlight-banner h4,
.akj-highlight-banner p,
.akj-highlight-banner li,
.akj-highlight-banner span,
.akj-highlight-banner strong {
    color: #ffffff !important;
}

.akj-highlight-banner a {
    color: #ffffff !important;
    text-decoration: underline;
}

.akj-highlight-banner a:hover,
.akj-highlight-banner a:focus {
    color: #b80000 !important;
}