/* ╔══════════════════════════════════════════╗
   ║  ARTICLE PREMIUM DESIGN                  ║
   ╚══════════════════════════════════════════╝ */
.article-breadcrumb {
    font-size: 0.95rem; color: #6b7280;
    margin-bottom: 25px; font-weight: 500;
}
.article-breadcrumb a { color: var(--teal); text-decoration: none; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-breadcrumb .active { color: #9ca3af; }

.article-meta-box {
    display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
    background: #f9fafb; padding: 15px 20px; border-radius: 12px;
    border: 1px solid #e5e7eb; margin-bottom: 25px;
    font-size: 0.95rem; color: #4b5563; font-weight: 500;
}
.meta-author-wrap { display: flex; align-items: center; gap: 8px; }
.meta-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--teal); color: white; display: flex;
    align-items: center; justify-content: center; font-weight: bold;
    font-size: 0.85rem;
}
.meta-author { color: var(--teal-dark); font-weight: 600; }
.meta-dot { color: #d1d5db; font-size: 1.2rem; }
.meta-category { color: var(--teal); background: #e0f2fe; padding: 4px 12px; border-radius: 20px; font-weight: 600; font-size: 0.85rem; }

.article-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px;
}
.article-tags .tag {
    border: 1px solid #d1d5db; color: #4b5563; background: white;
    padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}

.article-main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem); line-height: 1.3;
    margin-bottom: 30px; font-weight: 800; color: #111827;
}

/* Content Styling */
.article-content { font-family: 'Hind', sans-serif; color: #374151; }

.article-content > p:first-of-type {
    background-color: #f0fdf4;
    border-left: 6px solid #008080;
    padding: 24px; border-radius: 0 12px 12px 0;
    font-size: 1.25rem; font-weight: 500;
    color: #1f2937; margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.article-content h3 {
    color: #111827; font-size: 1.6rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px; margin-top: 45px; margin-bottom: 25px;
    font-weight: 700;
}

.article-content h4 {
    color: #008080; font-size: 1.35rem; font-weight: 700;
    margin-top: 35px; margin-bottom: 15px;
}

.article-content p { margin-bottom: 20px; }

.article-content ul {
    list-style: none; padding: 0; margin-bottom: 30px;
}
.article-content ul li {
    position: relative; padding: 12px 0 12px 35px;
    border-bottom: 1px dashed #d1d5db; font-size: 1.1rem;
    color: #4b5563; font-weight: 500;
}
.article-content ul li:last-child { border-bottom: none; }
.article-content ul li::before {
    content: '👉 🔹'; position: absolute; left: 0; top: 12px; font-size: 1.1rem;
}

.article-content blockquote {
    background: #fffbeb; border-left: 5px solid #f59e0b;
    padding: 20px; border-radius: 0 8px 8px 0;
    font-size: 1.1rem; font-style: italic; color: #92400e; margin: 30px 0;
}

.warning-box {
    background: #fef2f2; border: 1px solid #fca5a5;
    padding: 20px; border-radius: 12px; color: #991b1b;
    font-size: 1.05rem; margin-top: 50px; font-weight: 500;
}
.warning-box strong { color: #dc2626; }

/* Table Styling */
.article-content table {
    width: 100%; border-collapse: collapse; margin-bottom: 30px;
    font-size: 1rem; border-radius: 8px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.article-content th { background: #008080; color: white; padding: 12px 15px; text-align: left; }
.article-content td { padding: 12px 15px; border-bottom: 1px solid #e5e7eb; background: white; }
.article-content tr:nth-child(even) td { background: #f9fafb; }

/* Author Bio Box */
.author-bio-box {
    display: flex; align-items: center; gap: 20px;
    background: #f3f4f6; padding: 30px; border-radius: 16px;
    margin-top: 60px; border-top: 4px solid var(--teal);
}
.bio-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--teal); color: white; display: flex;
    align-items: center; justify-content: center; font-weight: 800;
    font-size: 1.8rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}
.bio-name { font-size: 1.4rem; font-weight: 800; color: #111827; margin-bottom: 5px; }
.bio-title { font-size: 1rem; color: #4b5563; font-weight: 500; margin-bottom: 5px; }
.bio-cred { font-size: 0.9rem; color: #6b7280; }

@media(max-width: 600px) {
    .author-bio-box { flex-direction: column; text-align: center; }
}

/* +------------------------------------------+
     ARTICLE CUSTOM BODY CLASSES             
   +------------------------------------------+ */
.article-lead {
    background-color: #f0fdf4;
    border-left: 6px solid #008080;
    padding: 24px; border-radius: 0 12px 12px 0;
    font-size: 1.25rem; font-weight: 500;
    color: #1f2937; margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.article-important-note {
    background: #fffbeb; border: 1px solid #fde68a;
    padding: 20px; border-radius: 12px;
    font-size: 1.15rem; color: #92400e; margin: 30px 0;
    font-weight: 500; text-align: center;
}

.article-comparison {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
    margin: 40px 0;
}
.comp-box {
    padding: 20px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.comp-box h3 { border-bottom: none; margin-top: 0; padding-bottom: 0; margin-bottom: 15px; color: #008080; font-size: 1.3rem; }
.comp-box.green { border-top: 4px solid #008080; }

.article-alert-box {
    background: #eff6ff; border-left: 5px solid #3b82f6;
    padding: 20px; border-radius: 0 12px 12px 0;
    margin: 30px 0;
}
.article-alert-box strong { color: #1e3a8a; display: block; margin-bottom: 15px; font-size: 1.1rem; }
.article-alert-box ul { margin-bottom: 0; }

.article-rules-box {
    background: #fdf2f8; border-left: 5px solid #db2777;
    padding: 20px; border-radius: 0 12px 12px 0;
    margin: 30px 0;
}
.article-rules-box strong { color: #9d174d; display: block; margin-bottom: 10px; font-size: 1.1rem; }

.article-tip {
    background: #f3f4f6; padding: 15px; border-radius: 8px; font-size: 0.95rem; color: #6b7280;
    margin-top: 40px; border: 1px dashed #d1d5db; text-align: center;
}
