/* Bright Internal Keyword Linker - frontend styles */
.bikl-box {
    margin: 28px 0;
    padding: 0;
    clear: both;
    font-family: inherit;
}

.bikl-header {
    margin: 0 0 14px;
    padding: 0 0 10px;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
}

.bikl-header:after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    background: #0073aa;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.bikl-kicker {
    display: inline-block;
    margin: 0 0 5px;
    color: #0073aa;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.bikl-title {
    color: #111111;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.32;
    margin: 0;
}

.bikl-subtitle {
    display: none !important;
}

.bikl-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bikl-list li {
    margin: 0 !important;
    padding: 0 !important;
}

.bikl-list a {
    text-decoration: none !important;
    color: #1f1f1f;
    font-weight: 750;
    transition: all .18s ease;
}

.bikl-list a:hover {
    color: #0073aa;
}

/* Clean editorial style */
.bikl-style-clean {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 0 17px;
}

.bikl-style-clean .bikl-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 18px;
}

.bikl-style-clean .bikl-list a {
    display: block;
    position: relative;
    padding: 10px 10px 10px 21px;
    font-size: 14.7px;
    line-height: 1.35;
    border-radius: 6px;
}

.bikl-style-clean .bikl-list a:before {
    content: "";
    width: 7px;
    height: 7px;
    background: #0073aa;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 17px;
}

.bikl-style-clean .bikl-list a:hover {
    background: #f5f8fa;
    padding-left: 24px;
}

/* Professional soft card style */
.bikl-style-card {
    background: #ffffff;
    border: 1px solid #dde4ea;
    border-radius: 12px;
    padding: 18px 18px 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

.bikl-style-card .bikl-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bikl-style-card .bikl-list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    background: #f7f9fb;
    border: 1px solid #e9edf1;
    border-left: 3px solid #0073aa;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14.2px;
    line-height: 1.35;
}

.bikl-style-card .bikl-list a:hover {
    background: #ffffff;
    border-color: #0073aa;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 115, 170, 0.10);
}

/* Compact inline style */
.bikl-style-compact {
    padding: 15px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.bikl-style-compact .bikl-header {
    display: inline;
    margin-right: 8px;
    padding: 0;
    border: none;
}

.bikl-style-compact .bikl-header:after,
.bikl-style-compact .bikl-kicker {
    display: none;
}

.bikl-style-compact .bikl-title {
    display: inline;
    font-size: 14.5px;
    margin-right: 8px;
}

.bikl-style-compact .bikl-list {
    display: inline;
}

.bikl-style-compact .bikl-list li {
    display: inline;
}

.bikl-style-compact .bikl-list li:not(:last-child):after {
    content: " · ";
    color: #999999;
}

.bikl-style-compact .bikl-list a {
    font-size: 14.2px;
}

/* Keyword chips */
.bikl-style-chips {
    padding: 17px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.bikl-style-chips .bikl-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.bikl-style-chips .bikl-list a {
    display: inline-flex;
    align-items: center;
    min-height: 35px;
    padding: 8px 13px;
    border: 1px solid #d9dee4;
    border-radius: 999px;
    background: #ffffff;
    color: #222222;
    font-size: 13.7px;
    line-height: 1;
}

.bikl-style-chips .bikl-list a:after {
    content: "›";
    margin-left: 7px;
    color: #0073aa;
    font-size: 16px;
    line-height: 1;
}

.bikl-style-chips .bikl-list a:hover {
    border-color: #0073aa;
    color: #0073aa;
    background: #f7fbfd;
}

@media screen and (max-width: 700px) {
    .bikl-style-clean .bikl-list,
    .bikl-style-card .bikl-list {
        grid-template-columns: 1fr;
    }

    .bikl-box {
        margin: 24px 0;
    }

    .bikl-title {
        font-size: 16px;
    }

    .bikl-style-card {
        padding: 16px 14px 14px;
    }
}
