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

}
.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-quiz-box {
    background: #f9f5ff;
    border: 2px solid #9b7bc7;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}
.bsj-quiz-box-title {
    color: #7b5ba7;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.bsj-quiz-box ul {
    margin: 0;
}
.bsj-quiz-box li {
    margin-bottom: 0.4rem;
}
.bsj-timeline {
    position: relative;
    padding-left: 2rem;
    margin: 1.5rem 0;
}
.bsj-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2d9ba8;
}
.bsj-timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}
.bsj-timeline-item::before {
    content: '';
    position: absolute;
    left: -1.65rem;
    top: 0.3rem;
    width: 12px;
    height: 12px;
    background: #2d9ba8;
    border-radius: 50%;
}
.bsj-timeline-time {
    color: #2d9ba8;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.bsj-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}
.bsj-comparison-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
}
.bsj-comparison-card.negative {
    background: #fff5f5;
    border-left: 3px solid #c44;
}
.bsj-comparison-card.positive {
    background: #f0fff5;
    border-left: 3px solid #2a9d5c;
}
.bsj-comparison-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.bsj-comparison-card.negative .bsj-comparison-card-title {
    color: #c44;
}
.bsj-comparison-card.positive .bsj-comparison-card-title {
    color: #2a9d5c;
}
.bsj-step-list {
    counter-reset: step;
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}
.bsj-step-list li {
    counter-increment: step;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}
.bsj-step-list li:last-child {
    border-bottom: none;
}
.bsj-step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    background: linear-gradient(135deg, #2d9ba8, #3dbdc9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
@media (max-width: 600px) {
    .bsj-comparison-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */