/* ui.naughty.css — styles for the access-denied (naughty.php) page */

.naughty-page { padding: 1.5rem; margin: 0 5%; }

.naughty-intro { margin-bottom: 2rem; }
.naughty-intro .intro-title { font-size: 1.85rem; margin: 0 0 1rem; color: var(--net-text-primary); }
.naughty-intro .intro-text  { font-size: 1rem; line-height: 1.7; color: var(--net-text-secondary); }

/* ── Block layout (image pinned left, content fills right) ─────────────────── */
.naughty-block {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 340px;
    padding-left: calc(38% + 2rem);
}

.naughty-image-col {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 38%;
    overflow: hidden;
    background: #0a0a14;
    border-radius: var(--net-border-radius-lg);
    min-height: 0;
}

.naughty-image-col img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* ── Bullet overlay (anchored bottom of image col) ─────────────────────────── */
.naughty-bullets {
    position: absolute;
    bottom: 1.25rem;
    left: 0.75rem;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    opacity: 0.85;
    max-width: 70%;
}

.naughty-bullets ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.naughty-bullets ul li {
    font-size: 0.88rem;
    font-weight: 500;
    padding-left: 1.3rem;
    position: relative;
    line-height: 1.4;
}

.naughty-bullets ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ── Content column ─────────────────────────────────────────────────────────── */
.naughty-content-col {
    flex: 1;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.naughty-entity-name { font-size: 1.35rem; margin: 0 0 1rem; }
.naughty-entity-name a { color: var(--net-text-link); text-decoration: none; }
.naughty-entity-name a:hover { color: var(--net-text-hover); }

.naughty-body { font-size: 1rem; line-height: 1.75; color: var(--net-text-body); margin-bottom: 1.25rem; }

.naughty-links { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; margin-bottom: 1rem; font-size: 0.9rem; justify-content: center;}
.naughty-link  { color: var(--net-text-link); text-decoration: none; }
.naughty-link:hover { color: var(--net-text-hover); }
.naughty-sep   { color: var(--net-text-muted); }

.naughty-page hr { border: none; border-top: 1px solid var(--net-border-light); margin: 1rem 0 0; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .naughty-block {
        display: block;
        padding-left: 0;
    }
    .naughty-image-col {
        position: relative;
        width: 100%;
        height: 280px;
        bottom: auto;
    }
    .naughty-content-col {
        padding: 1.25rem 0;
    }
}
