/* Blog Post Shared Styles */
.article {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 24px;
}

.article .breadcrumb {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.article .breadcrumb a {
    color: var(--a1);
    text-decoration: none;
}

.article h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--a1), var(--a2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article .meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.article h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--text);
}

.article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--text);
}

.article p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 16px;
}

.article ul,
.article ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.article li {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 8px;
}

.article strong {
    color: var(--text);
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 223, 162, 0.1), rgba(0, 180, 216, 0.1));
    border: 1px solid rgba(0, 223, 162, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}

.cta-box p {
    color: #00dfa2;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-box a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00dfa2, #00b4d8);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.cta-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 223, 162, 0.3);
}

.tip-box {
    background: rgba(42, 139, 255, 0.08);
    border-left: 4px solid #2a8bff;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 20px 0;
}

.tip-box p {
    color: #2a8bff;
    margin: 0;
    font-size: 0.95rem;
}

.method-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    backdrop-filter: var(--glass-blur);
}

.method-card h3 {
    margin-top: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 60px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--a1);
}