/* ==========================================================================
   БезШтрафа.рф — Checker Page Styles
   ========================================================================== */

/* --- Variables --- */
:root {
    --checker-primary: #e63946;
    --checker-primary-dark: #d62828;
    --checker-success: #2a9d8f;
    --checker-success-light: #d4f5ef;
    --checker-warning: #e9c46a;
    --checker-warning-light: #fdf6e3;
    --checker-error: #e63946;
    --checker-error-light: #fde8ea;
    --checker-severity-high: #e63946;
    --checker-severity-medium: #f77f00;
    --checker-severity-low: #e9c46a;
    --checker-bg: #f8f9fa;
    --checker-card-bg: #ffffff;
    --checker-border: #e0e0e0;
    --checker-text: #1a1a2e;
    --checker-text-muted: #6b7280;
    --checker-radius: 12px;
    --checker-radius-sm: 8px;
    --checker-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --checker-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* --- Visually hidden (a11y) --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.checker-hero {
    padding: 48px 0 24px;
    text-align: center;
}

.checker-hero__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--checker-text);
    margin: 0 0 12px;
    line-height: 1.2;
}

.checker-hero__subtitle {
    font-size: 1.125rem;
    color: var(--checker-text-muted);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ==========================================================================
   Checker Box
   ========================================================================== */
.checker__box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--checker-card-bg);
    border-radius: var(--checker-radius);
    box-shadow: var(--checker-shadow-lg);
    padding: 32px;
    position: relative;
}

/* --- Tabs --- */
.checker__tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--checker-border);
}

.checker__tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--checker-text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.checker__tab:hover {
    color: var(--checker-text);
}

.checker__tab--active {
    color: var(--checker-primary);
    border-bottom-color: var(--checker-primary);
}

.checker__tab svg {
    flex-shrink: 0;
}

/* --- Panels --- */
.checker__panel {
    display: none;
}

.checker__panel--active {
    display: block;
    animation: fadeIn 0.25s ease;
}

/* --- Textarea --- */
.checker__textarea {
    width: 100%;
    min-height: 150px;
    padding: 16px;
    border: 2px solid var(--checker-border);
    border-radius: var(--checker-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--checker-text);
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.checker__textarea:focus {
    outline: none;
    border-color: var(--checker-primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.checker__textarea::placeholder {
    color: #9ca3af;
}

.checker__textarea-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--checker-text-muted);
    margin-top: 4px;
}

/* --- Dropzone --- */
.checker__dropzone {
    border: 2px dashed var(--checker-border);
    border-radius: var(--checker-radius-sm);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
    position: relative;
}

.checker__dropzone:hover,
.checker__dropzone:focus-visible {
    border-color: var(--checker-primary);
    background: rgba(230, 57, 70, 0.03);
}

.checker__dropzone.is-dragover {
    border-color: var(--checker-primary);
    background: rgba(230, 57, 70, 0.06);
    border-style: solid;
}

.checker__dropzone-icon {
    color: var(--checker-text-muted);
    margin-bottom: 12px;
}

.checker__dropzone-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--checker-text);
    margin: 0 0 4px;
}

.checker__dropzone-hint {
    font-size: 0.85rem;
    color: var(--checker-text-muted);
    margin: 0;
}

/* --- Photo Preview --- */
.checker__preview {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.checker__preview[hidden] {
    display: none;
}

.checker__preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: var(--checker-radius-sm);
    object-fit: contain;
}

.checker__preview-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.checker__preview-remove:hover {
    background: var(--checker-error);
}

/* --- Options --- */
.checker__options {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checker__type-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checker__type-label {
    font-size: 0.9rem;
    color: var(--checker-text-muted);
    white-space: nowrap;
}

.checker__type-select {
    padding: 8px 32px 8px 12px;
    border: 2px solid var(--checker-border);
    border-radius: var(--checker-radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--checker-text);
    background: var(--checker-card-bg);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 0.2s;
}

.checker__type-select:focus {
    outline: none;
    border-color: var(--checker-primary);
}

/* --- Submit Button --- */
.checker__submit {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    padding: 14px 24px;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.checker__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* --- Counter --- */
.checker__counter {
    text-align: center;
    font-size: 0.85rem;
    color: var(--checker-text-muted);
    margin: 12px 0 0;
}

.checker__counter strong {
    color: var(--checker-primary);
    font-weight: 700;
}

/* ==========================================================================
   Loader
   ========================================================================== */
.checker__loader {
    padding: 60px 0;
}

.checker__loader-inner {
    text-align: center;
}

.checker__loader-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.checker__loader-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--checker-primary);
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.checker__loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.checker__loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loaderPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.checker__loader-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--checker-text);
    margin: 0 0 4px;
}

.checker__loader-sub {
    font-size: 0.9rem;
    color: var(--checker-text-muted);
    margin: 0;
}

/* ==========================================================================
   Results
   ========================================================================== */
.checker__results {
    padding: 40px 0;
    animation: slideUp 0.4s ease;
}

/* --- Status banner --- */
.checker__status {
    padding: 20px 24px;
    border-radius: var(--checker-radius);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checker__status--ok {
    background: var(--checker-success-light);
    color: #1a7a6d;
    border: 1px solid var(--checker-success);
}

.checker__status--error {
    background: var(--checker-error-light);
    color: #b91c2e;
    border: 1px solid var(--checker-error);
}

.checker__status-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

/* --- Violation card --- */
.violation-card {
    background: var(--checker-card-bg);
    border-radius: var(--checker-radius-sm);
    border: 1px solid var(--checker-border);
    border-left: 4px solid var(--checker-severity-high);
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: var(--checker-shadow);
    animation: slideUp 0.3s ease;
}

.violation-card--medium {
    border-left-color: var(--checker-severity-medium);
}

.violation-card--low {
    border-left-color: var(--checker-severity-low);
}

.violation-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.violation-card__severity {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.violation-card__severity--high {
    background: var(--checker-severity-high);
}

.violation-card__severity--medium {
    background: var(--checker-severity-medium);
}

.violation-card__severity--low {
    background: var(--checker-severity-low);
    color: #5a4e00;
}

.violation-card__fine {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #f3f4f6;
    color: var(--checker-text-muted);
}

.violation-card__word {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--checker-error);
    margin: 0 0 8px;
    word-break: break-word;
}

.violation-card__issue {
    font-size: 0.95rem;
    color: var(--checker-text);
    margin: 0 0 12px;
    line-height: 1.5;
}

.violation-card__suggestion {
    background: var(--checker-success-light);
    border: 1px solid #b5e8df;
    border-radius: var(--checker-radius-sm);
    padding: 12px 16px;
    margin-bottom: 10px;
}

.violation-card__suggestion-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--checker-success);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
}

.violation-card__suggestion-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1a7a6d;
    margin: 0;
}

.violation-card__law {
    font-size: 0.8rem;
    color: var(--checker-text-muted);
    margin: 0;
}

.violation-card__law a {
    color: var(--checker-primary);
    text-decoration: underline;
}

/* --- Corrected text --- */
.corrected-text {
    background: var(--checker-card-bg);
    border-radius: var(--checker-radius);
    border: 1px solid var(--checker-border);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--checker-shadow);
}

.corrected-text__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--checker-text);
}

.corrected-text__body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--checker-text);
    padding: 16px;
    background: #f9fafb;
    border-radius: var(--checker-radius-sm);
    border: 1px solid var(--checker-border);
}

.corrected-text__body mark {
    background: var(--checker-success-light);
    color: #1a7a6d;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.corrected-text__copy {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

/* --- Tips --- */
.checker__tips {
    background: var(--checker-card-bg);
    border-radius: var(--checker-radius);
    border: 1px solid var(--checker-border);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--checker-shadow);
}

.checker__tips-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--checker-text);
}

.tips-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tips-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 0.95rem;
    color: var(--checker-text);
    line-height: 1.5;
}

.tips-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background: var(--checker-success);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* --- Actions --- */
.checker__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ==========================================================================
   Paywall
   ========================================================================== */
.checker__paywall {
    padding: 40px 0;
}

.checker__paywall-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.checker__paywall-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--checker-text);
    margin: 0 0 8px;
}

.checker__paywall-text {
    color: var(--checker-text-muted);
    margin: 0 0 32px;
}

.checker__paywall-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.checker__plan {
    background: var(--checker-card-bg);
    border: 2px solid var(--checker-border);
    border-radius: var(--checker-radius);
    padding: 24px 16px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.checker__plan:hover {
    border-color: var(--checker-primary);
    box-shadow: var(--checker-shadow-lg);
}

.checker__plan--popular {
    border-color: var(--checker-primary);
    box-shadow: var(--checker-shadow-lg);
}

.checker__plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--checker-primary);
    color: #fff;
    padding: 2px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.checker__plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--checker-text);
    margin-bottom: 4px;
}

.checker__plan-count {
    font-size: 0.9rem;
    color: var(--checker-text-muted);
    margin-bottom: 12px;
}

.checker__plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--checker-primary);
    margin-bottom: 16px;
}

/* ==========================================================================
   Error
   ========================================================================== */
.checker__error {
    padding: 16px 0;
}

.checker__error-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--checker-error-light);
    border: 1px solid var(--checker-error);
    border-radius: var(--checker-radius-sm);
}

.checker__error-text {
    margin: 0;
    color: #b91c2e;
    font-weight: 500;
}

/* ==========================================================================
   SEO Sections
   ========================================================================== */
.seo-section {
    padding: 56px 0;
}

.seo-section--alt {
    background: var(--checker-bg);
}

.seo-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 36px;
    color: var(--checker-text);
}

/* --- Steps --- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.steps__item {
    text-align: center;
}

.steps__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--checker-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.steps__heading {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--checker-text);
}

.steps__text {
    font-size: 0.9rem;
    color: var(--checker-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- Check list grid --- */
.check-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.check-list-grid__item {
    background: var(--checker-card-bg);
    border-radius: var(--checker-radius-sm);
    padding: 20px;
    border: 1px solid var(--checker-border);
}

.check-list-grid__item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--checker-text);
}

.check-list-grid__item p {
    font-size: 0.85rem;
    color: var(--checker-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- Check types grid (hub page) --- */
.check-types {
    padding: 0 0 2rem;
}

.check-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.check-types__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--checker-card-bg);
    border: 1px solid var(--checker-border);
    border-radius: var(--checker-radius);
    padding: 24px 16px;
    text-decoration: none;
    color: var(--checker-text);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.check-types__card:hover {
    border-color: var(--checker-primary);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.1);
    transform: translateY(-2px);
}

.check-types__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    border-radius: 50%;
    color: var(--checker-primary);
    margin-bottom: 12px;
}

.check-types__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--checker-text);
}

.check-types__desc {
    font-size: 0.85rem;
    color: var(--checker-text-muted);
    margin: 0 0 12px;
    line-height: 1.4;
    flex: 1;
}

.check-types__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--checker-primary);
}

/* --- Fines table --- */
.table-responsive {
    overflow-x: auto;
    max-width: 900px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}

.fines-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--checker-card-bg);
    border-radius: var(--checker-radius-sm);
    overflow: hidden;
    border: 1px solid var(--checker-border);
}

.fines-table th,
.fines-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--checker-border);
}

.fines-table th {
    background: var(--checker-bg);
    font-weight: 600;
    color: var(--checker-text);
    white-space: nowrap;
}

.fines-table td {
    color: var(--checker-text);
}

.fines-table tbody tr:last-child td {
    border-bottom: none;
}

.fines-table tbody tr:hover {
    background: #fafafa;
}

.fines-note {
    max-width: 900px;
    margin: 12px auto 0;
    font-size: 0.8rem;
    color: var(--checker-text-muted);
}


/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- URL Input (inside checker tabs) --- */
.checker__url-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.checker__url-icon {
    position: absolute;
    left: 14px;
    color: var(--checker-text-muted);
    pointer-events: none;
}

.checker__url-input {
    width: 100%;
    padding: 16px 16px 16px 44px;
    font-size: 1.05rem;
    border: 1.5px solid var(--checker-border);
    border-radius: var(--checker-radius-sm);
    background: var(--checker-bg);
    color: var(--checker-text);
    transition: border-color 0.2s;
}

.checker__url-input:focus {
    outline: none;
    border-color: var(--checker-primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.checker__url-input::placeholder {
    color: var(--checker-text-muted);
}

.checker__url-hint {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--checker-text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .checker-hero {
        padding: 32px 0 16px;
    }

    .checker-hero__title {
        font-size: 1.5rem;
    }

    .checker-hero__subtitle {
        font-size: 1rem;
    }

    .checker__box {
        padding: 20px 16px;
        border-radius: var(--checker-radius-sm);
    }

    .checker__tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .checker__textarea {
        min-height: 120px;
        font-size: 0.95rem;
    }

    .checker__dropzone {
        padding: 32px 16px;
    }

    .checker__options {
        flex-direction: column;
        align-items: stretch;
    }

    .checker__type-wrapper {
        width: 100%;
    }

    .checker__type-select {
        flex: 1;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .check-list-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .check-types__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .check-types__card {
        padding: 16px 12px;
    }

    .check-types__icon {
        width: 44px;
        height: 44px;
    }

    .check-types__icon svg {
        width: 24px;
        height: 24px;
    }

    .checker__paywall-plans {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .violation-card {
        padding: 16px;
    }

    .violation-card__word {
        font-size: 1.1rem;
    }

    .checker__actions {
        flex-direction: column;
    }

    .checker__actions .btn {
        width: 100%;
        text-align: center;
    }

    .fines-table th,
    .fines-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .seo-section {
        padding: 40px 0;
    }

    .seo-section__title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .checker-hero__title {
        font-size: 1.3rem;
    }

    .checker__tab {
        padding: 8px 12px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .checker__tab svg {
        width: 16px;
        height: 16px;
    }

    .checker__plan-price {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Public Notice & Public Link
   ========================================================================== */
.checker__public-notice {
    font-size: 0.8rem;
    color: var(--checker-text-muted);
    margin-top: 8px;
    line-height: 1.4;
    text-align: center;
}

.checker__public-notice svg {
    vertical-align: -2px;
    margin-right: 4px;
    opacity: 0.6;
}

.checker__public-notice a {
    color: var(--checker-primary);
    text-decoration: none;
}

.checker__public-notice a:hover {
    text-decoration: underline;
}

.checker__public-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 10px 16px;
    margin: 16px 0;
    font-size: 0.85rem;
    color: #0369a1;
}

.checker__public-link svg {
    flex-shrink: 0;
}

.checker__public-link a {
    color: #0369a1;
    font-weight: 500;
}

.checker__moderation-notice {
    margin: 16px 0;
    padding: 12px 16px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.88rem;
    text-align: center;
}
