/* Start custom CSS */.bsj-article h2 {
    color: #2d9ba8;
    font-size: 1.6rem;
    font-weight: 700;

}
.bsj-article h3 {
    color: #2d9ba8;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 0.8rem;
}
.bsj-article p {
    margin-bottom: 1rem;
    color: #444;
}
.bsj-article ul {
    margin: 1rem 0 1.5rem 1.5rem;
}
.bsj-article li {
    margin-bottom: 0.6rem;
    color: #444;
}
.bsj-article li strong {
    color: #333;
}
.bsj-highlight-box {
    background: linear-gradient(135deg, #e8f4f5 0%, #d5eef0 100%);
    border: 2px solid #2d9ba8;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}
.bsj-highlight-box-title {
    color: #2d9ba8;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}
.bsj-highlight-box p {
    margin-bottom: 0;
    color: #333;
}
.bsj-emphasis {
    color: #2d9ba8;
    font-style: italic;
}
.bsj-hashtags {
    color: #2d9ba8;
    font-size: 0.9rem;
    margin-top: 2.5rem;
}
.bsj-share-cta {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.bsj-info-box {
    background: #f0f7ff;
    border-left: 4px solid #2d9ba8;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}
.bsj-info-box-title {
    color: #2d9ba8;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.bsj-warning-box {
    background: #fff5f5;
    border: 1px solid #e8c4c4;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
}
.bsj-warning-box-title {
    color: #c44;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.bsj-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.bsj-comparison-table th {
    background: #2d9ba8;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}
.bsj-comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.bsj-comparison-table tr:nth-child(even) {
    background: #f9f9f9;
}
.bsj-phase-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin: 1rem 0;
}
.bsj-phase-title {
    color: #2d9ba8;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.bsj-numbered-list {
    counter-reset: item;
    list-style: none;
    margin: 1rem 0 1.5rem 0;
    padding: 0;
}
.bsj-numbered-list li {
    counter-increment: item;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}
.bsj-numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #2d9ba8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}/* End custom CSS */