/* Place the mailing list form on its own row below the other footer items */
.mailing-list {
    grid-column: 1 / -1;
    grid-row: 1; /* place above the contact columns */
    justify-self: center;
    align-self: center;
    max-width: 520px; /* constrained width */
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 18px;
}

/* Center the email input and subscribe button as a single element */
.email-form {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.email-form input[type="email"] {
    width: 240px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    color: #fff;
}

#subscribeBtn {
    background-color: #6ac2a3;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

#subscribeBtn:hover { opacity: 0.95; }

.email-form input::placeholder { color: rgba(255,255,255,0.7); }

@media (max-width: 699px) {
    .email-form { width: 100%; padding: 0 10px; }
    .email-form input[type="email"] { width: auto; flex: 1; }
}

/* Description text spacing */
.mailing-list .mailing-desc { margin-top: 6px; margin-bottom: 10px; }
