/**
 * KS Auto Linker - Style frontend (autolinki)
 *
 * @author    KamikStudio
 * @copyright 2026 KamikStudio
 */

/* === Domyślny styl autolinków === */
a.ks-autolink {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

a.ks-autolink:hover {
    border-bottom-style: solid;
    opacity: 0.8;
}

/* === Styl solid === */
body.ks-link-style-solid a.ks-autolink {
    border-bottom-style: solid;
}

/* === Brak podkreślenia === */
body.ks-link-style-none a.ks-autolink {
    border-bottom: none;
    text-decoration: underline dotted;
}

/* === Tryb dry-run (podgląd dla admina) === */
.ks-autolink-preview {
    background-color: rgba(255, 235, 59, 0.35);
    border-bottom: 2px dashed #f39c12;
    cursor: help;
    padding: 0 2px;
    border-radius: 2px;
}

.ks-autolink-preview:hover {
    background-color: rgba(255, 235, 59, 0.6);
}

/* === Widget Powiązane tematy === */
.ks-related-widget {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fafafa;
}

.ks-related-widget__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ks-related-widget__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ks-related-widget__list li {
    padding: 0.2rem 0;
    border-bottom: 1px solid #eeeeee;
}

.ks-related-widget__list li:last-child {
    border-bottom: none;
}

.ks-related-widget__list a {
    color: inherit;
    text-decoration: none;
    font-size: 0.875rem;
}

.ks-related-widget__list a::before {
    content: '→ ';
    color: #aaa;
}

.ks-related-widget__list a:hover {
    text-decoration: underline;
}
