/* "Do Not Sell or Share My Personal Information" page. Standalone on purpose:
   the page renders under three different layouts (landing, hybrid shell and the
   plain page layout) and must look the same and stay readable in all of them. */
.dns-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 20px 72px;
    color: #1b283f;
    font-size: 16px;
    line-height: 1.6;
}

.dns-title {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.dns-subtitle {
    margin: 32px 0 8px;
    font-size: 18px;
    font-weight: 600;
}

.dns-lead {
    margin: 0 0 28px;
}

.dns-note {
    margin: 0;
    color: #464e5f;
}

.dns-card {
    padding: 24px;
    border: 1px solid #e4e6ef;
    border-radius: 12px;
    background: #f9f9fb;
}

.dns-button {
    display: inline-block;
    max-width: 100%;
    padding: 14px 24px;
    border: 0;
    border-radius: 8px;
    background: #1b283f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

.dns-button:hover {
    background: #2b3b58;
}

.dns-button:disabled {
    opacity: .6;
    cursor: default;
}

.dns-status {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #1a6b3c;
    font-weight: 600;
}

.dns-status__mark {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1a6b3c;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.dns-error {
    margin: 16px 0 0;
    color: #a3242b;
}

.dns-page [hidden] {
    display: none;
}

@media (max-width: 640px) {
    .dns-page {
        padding: 32px 16px 56px;
    }

    .dns-title {
        font-size: 26px;
    }

    .dns-button {
        width: 100%;
        text-align: center;
    }
}
