/* Article Styles */
article {
    line-height: 1.8;
}

article h1 {
    color: var(--dark);
    margin-bottom: 2rem;
}

article .lead {
    font-size: 1.1rem;
    color: var(--secondary);
}

.method {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.method:last-child {
    border-bottom: none;
}

.method h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.method h3 {
    color: var(--dark);
    margin-top: 2rem;
}

.method ul {
    padding-left: 1.2rem;
}

.method li {
    margin-bottom: 0.5rem;
}

.method .tip {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    article {
        padding: 1.5rem !important;
    }
    
    .method {
        padding-bottom: 2rem;
    }
}