/* Start custom CSS */.bsj-article {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.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-symptom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
.bsj-symptom-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bsj-symptom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.bsj-symptom-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.bsj-symptom-title {
    color: #2d9ba8;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.bsj-symptom-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}
.bsj-cause-accordion {
    margin: 1.5rem 0;
}
.bsj-cause-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}
.bsj-cause-header {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bsj-cause-number {
    background: #2d9ba8;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.bsj-cause-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}
.bsj-cause-content {
    padding: 0 1.5rem 1.2rem 4rem;
    color: #555;
}
.bsj-quality-meter {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.bsj-quality-meter-title {
    color: #2d9ba8;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.bsj-quality-bar {
    display: flex;
    height: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.bsj-quality-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
}
.bsj-quality-segment.deep {
    background: #1a5f7a;
    flex: 20;
}
.bsj-quality-segment.light {
    background: #57a0c1;
    flex: 50;
}
.bsj-quality-segment.rem {
    background: #7bc5d6;
    flex: 25;
}
.bsj-quality-segment.wake {
    background: #bbb;
    flex: 5;
}
.bsj-quality-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
}
.bsj-quality-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.bsj-quality-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}
.bsj-quality-dot.deep { background: #1a5f7a; }
.bsj-quality-dot.light { background: #57a0c1; }
.bsj-quality-dot.rem { background: #7bc5d6; }
.bsj-quality-dot.wake { background: #bbb; }
.bsj-pillar-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
.bsj-pillar {
    background: linear-gradient(180deg, #2d9ba8 0%, #237a85 100%);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    color: #fff;
}
.bsj-pillar-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.bsj-pillar-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.bsj-pillar-desc {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}
.bsj-checklist-fancy {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}
.bsj-checklist-fancy-title {
    color: #2d9ba8;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.bsj-checklist-fancy ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bsj-checklist-fancy li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #ddd;
}
.bsj-checklist-fancy li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.bsj-checklist-fancy li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #2d9ba8;
    font-size: 0.8rem;
}
.bsj-scale-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border: 2px solid #e6c200;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}
.bsj-scale-box-title {
    color: #997a00;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.bsj-scale-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}
.bsj-scale-label {
    width: 120px;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}
.bsj-scale-bar-container {
    flex: 1;
    background: #e0e0e0;
    height: 1.2rem;
    border-radius: 6px;
    overflow: hidden;
}
.bsj-scale-bar {
    height: 100%;
    border-radius: 6px;
}
.bsj-scale-bar.good { background: linear-gradient(90deg, #2a9d5c, #3dbf6f); }
.bsj-scale-bar.medium { background: linear-gradient(90deg, #e6a700, #f0c030); }
.bsj-scale-bar.bad { background: linear-gradient(90deg, #c44, #e05555); }
@media (max-width: 600px) {
    .bsj-symptom-grid {
        grid-template-columns: 1fr;
    }
    .bsj-pillar-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .bsj-scale-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .bsj-scale-label {
        width: 100%;
        margin-bottom: 0.3rem;
    }
    .bsj-scale-bar-container {
        width: 100%;
    }
}/* End custom CSS */