/* ==========================================================================
   MyLinks.top - Shared Blog Article Stylesheet (blog.css)
   ========================================================================== */

.seo-article {
    color: #2d3748;
    line-height: 1.85;
    font-size: 16px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

.seo-article h1 {
    font-size: 32px;
    color: #1a202c;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}

.seo-article h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 24px;
    color: #414785;
    margin-top: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-left: 16px;
    border-left: 4px solid #5c27fe;
}

.seo-article h3 {
    font-size: 19px;
    color: #2b6cb0;
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
}

.seo-article p {
    margin-bottom: 18px;
    font-size: 16.5px;
    color: #4a5568;
}

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

.seo-article li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Author Box */
.author-box {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

/* BLUF Summary Box */
.bluf-box {
    background: #f0f4fe;
    border-left: 5px solid #4299e1;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0 32px;
}

.bluf-title {
    font-weight: 800;
    color: #2b6cb0;
    font-size: 17px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Case Study & Warning Cards */
.case-study-card {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    border-left: 5px solid #38a169;
    border-radius: 10px;
    padding: 24px;
    margin: 32px 0;
}

.warning-card {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-left: 5px solid #e53e3e;
    border-radius: 10px;
    padding: 24px;
    margin: 32px 0;
}

/* Tables */
.custom-table-responsive {
    overflow-x: auto;
    margin: 28px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.custom-table th {
    background: #414785;
    color: #ffffff;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
}

.custom-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
}

.custom-table tr:hover {
    background-color: #f7fafc;
}

/* Utilities & Badges */
.step-badge {
    background: #5c27fe;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    margin-right: 8px;
}

.code-snippet {
    background: #2d3748;
    color: #68d391;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 14px;
}

/* Figures & Images */
.img-figure {
    margin: 32px 0;
    text-align: center;
}

.img-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.img-caption {
    font-size: 14.5px;
    color: #718096;
    margin-top: 12px;
    font-style: italic;
}

.featured-cover-box {
    margin: 28px 0 36px;
    text-align: center;
}

.featured-cover-box img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(92, 39, 254, 0.18);
    border: 1px solid #e2e8f0;
}

/* FAQ Items */
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-question {
    font-weight: 700;
    color: #2b6cb0;
    font-size: 16.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-answer {
    color: #4a5568;
    margin-bottom: 0;
    font-size: 15.5px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #414785 0%, #5c27fe 100%);
    color: white;
    border-radius: 16px;
    padding: 36px 30px;
    text-align: center;
    margin-top: 45px;
    box-shadow: 0 10px 25px rgba(92, 39, 254, 0.3);
}

.cta-btn {
    display: inline-block;
    background: #ffc107;
    color: #1a202c;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 17px;
    text-decoration: none;
    margin-top: 18px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #ffffff;
    color: #5c27fe;
    transform: translateY(-2px);
    text-decoration: none;
}
