.article-header {
    background: linear-gradient(135deg, #f8d47c 0%, #f4a261 100%);
    padding: 3rem 0;
}
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}
.article-content h1, 
.article-content h2, 
.article-content h3, 
.article-content h4, 
.article-content h5, 
.article-content h6 {
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.article-content h1:first-child,
.article-content h2:first-child {
    margin-top: 0;
}
.article-content p {
    margin-bottom: 1.5rem;
}
.honey-icon {
    color: #f39c12;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.custom-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.custom-list li::before {
    content: "•";
    color: #f39c12;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}
.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.steps-list li::before {
    content: counter(step-counter) ".";
    color: #f39c12;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
.highlight-box {
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}
.faq-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}
.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}
.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.social-mention {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}
.social-link {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
}
.social-link:hover {
    color: #0d47a1;
    text-decoration: underline;
}
.article-meta {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.temperature-highlight {
    background: #fff3e0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    color: #e65100;
}