/* ============================================
   show_blog.css - Blog Detail Page
   ============================================ */

/* Main Container */
.sb-container { margin-top: 60px; margin-bottom: 60px; }
.sb-main-col { padding-right: 30px; }

/* Article Card */
.sb-article-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 16px rgba(14,56,76,0.06);
}
.sb-article-featured-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
}
.sb-article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    color: #6B7280;
    font-size: 14px;
}
.sb-article-body { line-height: 1.8; color: #374151; }
.sb-article-excerpt {
    font-size: 18px;
    font-weight: 500;
    color: #0E384C;
    margin-bottom: 20px;
}
.sb-article-nav {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
}
.sb-nav-label {
    font-size: 13px;
    color: #6B7280;
}
.sb-nav-link {
    display: block;
    font-size: 14px;
    color: #0E384C;
    font-weight: 500;
    text-decoration: none;
}
.sb-nav-link:hover { color: #1E84B5; }
.sb-nav-next { text-align: right; }

/* Related Products */
.sb-related-section { margin-top: 40px; }
.sb-related-title {
    font-size: 22px;
    font-weight: 700;
    color: #0E384C;
    margin-bottom: 30px;
}
.sb-rel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(14,56,76,0.06);
}
.sb-rel-img-wrap {
    background: #f8fafc;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}
.sb-rel-img-wrap img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}
.sb-rel-body { padding: 15px; }
.sb-rel-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 8px;
}
.sb-rel-body h4 a {
    color: #0E384C;
    text-decoration: none;
}
.sb-rel-body h4 a:hover { color: #1E84B5; }
.sb-rel-link {
    font-size: 13px;
    color: #0E384C;
    font-weight: 600;
    text-decoration: none;
}
.sb-rel-link:hover { color: #1E84B5; }

/* Subscribe Section */
.sb-subscribe-section { margin-top: 40px; }
.sb-subscribe-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
}
.sb-subscribe-title {
    font-size: 22px;
    font-weight: 700;
    color: #0E384C;
    margin-bottom: 16px;
}
.sb-subscribe-desc {
    font-size: 15px;
    color: #527282;
    margin-bottom: 24px;
}
.sb-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sb-subscribe-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}
.sb-subscribe-input:focus {
    border-color: #0E384C;
    outline: none;
}
.sb-subscribe-btn {
    background: #0E384C;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}
.sb-subscribe-btn:hover { background: #1A5F7A; }

/* Sidebar */
.sb-sidebar { position: sticky; top: 80px; }

/* Popular Posts */
.sb-popular-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 16px rgba(14,56,76,0.06);
    margin-bottom: 20px;
}
.sb-popular-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0E384C;
    margin-bottom: 20px;
}
.sb-popular-list { list-style: none; padding: 0; margin: 0; }
.sb-popular-item { display: flex; gap: 12px; margin-bottom: 16px; }
.sb-popular-item:last-child { margin-bottom: 0; }
.sb-popular-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.sb-popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sb-popular-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 4px;
}
.sb-popular-info h4 a {
    color: #0E384C;
    text-decoration: none;
}
.sb-popular-info h4 a:hover { color: #1E84B5; }
.sb-popular-info span {
    font-size: 12px;
    color: #6B7280;
}

/* Trust Card */
.sb-trust-card {
    background: linear-gradient(135deg, #0E384C 0%, #1A5A7A 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
}
.sb-trust-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.sb-trust-card p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin-bottom: 16px;
}
.sb-trust-btn {
    display: inline-block;
    background: #fff;
    color: #0E384C;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.sb-trust-btn:hover { background: #e2e8f0; }

/* Solutions Card */
.sb-solutions-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
}
.sb-solutions-card h3 {
    color: #0E384C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.sb-solutions-card p {
    color: #527282;
    font-size: 13px;
    margin-bottom: 16px;
}
.sb-solutions-btn {
    display: inline-block;
    background: #0E384C;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.sb-solutions-btn:hover { background: #1A5F7A; }
