/* ==========================================================================
   Antigravity Shop 2-Column Single Blog Post Stylesheet (blog-post.css)
   Brand Colors: Navy #0d2644 | Gold #f8a203 | Background: #f2f5fc
   ========================================================================== */

.blog-post-page-wrapper {
    background-color: #f2f5fc;
    min-height: 100vh;
    padding-bottom: 50px;
}

/* 1. BREADCRUMB */
.blog-post-breadcrumb-wrapper {
    padding: 16px 0 8px 0;
}

.blog-post-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.blog-post-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post-breadcrumb a:hover {
    color: #0d2644;
}

.blog-post-breadcrumb span.separator {
    color: #cbd5e1;
    font-size: 9px;
}

.blog-post-breadcrumb span.current {
    color: #0d2644;
    font-weight: 700;
}

/* 2. ARTICLE MAIN COLUMN */
.article-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Article Title & Meta Card */
.article-title-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 3px 12px rgba(13, 38, 68, 0.04);
}

.post-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(13, 38, 68, 0.07);
    color: #0d2644;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 10px;
}

.article-main-title {
    font-size: 23px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.45;
    margin: 0 0 16px 0;
    letter-spacing: -0.4px;
}

.article-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #64748b;
}

.author-meta-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-meta-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0d2644;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.author-meta-info {
    display: flex;
    flex-direction: column;
}

.author-meta-name {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
}

.author-meta-role {
    font-size: 11px;
    color: #94a3b8;
}

.article-stats-list {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.article-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-stat-item i {
    font-size: 14px;
    color: #94a3b8;
}

/* Featured Image */
.article-featured-image-box {
    border-radius: 18px;
    overflow: hidden;
    background: #0b1523;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.article-featured-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.article-image-caption {
    font-size: 11.5px;
    color: #64748b;
    text-align: center;
    padding: 8px 14px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

/* Article Content Card */
.article-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 32px;
    box-shadow: 0 3px 12px rgba(13, 38, 68, 0.04);
}

.article-body-typography {
    font-size: 15.5px;
    line-height: 1.95;
    color: #334155;
}

.article-body-typography p {
    margin-bottom: 18px;
    text-align: justify;
}

.article-body-typography h2 {
    font-size: 19px;
    font-weight: 800;
    color: #0d2644;
    margin: 32px 0 14px 0;
    position: relative;
    padding-right: 14px;
    line-height: 1.4;
}

.article-body-typography h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 4px;
    background-color: #f8a203;
}

.article-body-typography h3 {
    font-size: 16.5px;
    font-weight: 800;
    color: #1e293b;
    margin: 24px 0 10px 0;
}

.article-body-typography ul, .article-body-typography ol {
    margin-bottom: 20px;
    padding-right: 20px;
}

.article-body-typography li {
    margin-bottom: 8px;
    line-height: 1.8;
}

/* Quote/Tip Box */
.article-tip-box {
    background: #f0fdf4;
    border-right: 4px solid #10b981;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.article-tip-box i {
    font-size: 22px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.article-tip-text {
    font-size: 13.5px;
    color: #065f46;
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
}

/* Inline Product Card */
.inline-product-card {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 16px;
    padding: 16px 18px;
    margin: 28px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.22s ease;
}

.inline-product-card:hover {
    border-color: #0d2644;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(13, 38, 68, 0.08);
}

.inline-product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.inline-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #0d2644;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.inline-product-badge i {
    color: #f8a203;
}

.inline-product-hint {
    font-size: 11px;
    color: #64748b;
}

.inline-product-body {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    align-items: center;
}

.inline-product-thumb {
    position: relative;
    width: 110px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.inline-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-discount-tag {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
}

.inline-product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.inline-product-title {
    font-size: 14.5px;
    font-weight: 800;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.inline-product-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.inline-product-title a:hover {
    color: #0d2644;
}

.inline-product-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 10px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inline-product-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.inline-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.inline-product-price .price-old {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
}

.inline-product-price .price-current {
    font-size: 14.5px;
    font-weight: 800;
    color: #0d2644;
}

.inline-product-price .price-current span {
    font-size: 10.5px;
    font-weight: 500;
    color: #64748b;
}

.btn-inline-view-product {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #0d2644;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(13, 38, 68, 0.2);
}

.btn-inline-view-product:hover {
    background: #1e3a8a;
    color: #ffffff;
}

/* Free Download Box (Ultra Premium Green & White + Password Bar) */
.free-download-box {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8fdfa 60%, #f0fdf4 100%);
    border: 1.5px solid #10b981;
    border-radius: 20px;
    padding: 26px 28px;
    margin: 32px 0;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
    transition: all 0.25s ease;
    overflow: hidden;
}

.free-download-box:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.18);
    border-color: #059669;
}

.download-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.download-box-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1.5px solid #a7f3d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #059669;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.download-box-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.download-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    background: #dcfce7;
    color: #065f46;
    border: 1px solid #86efac;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
}

.download-subbadge {
    font-size: 11px;
    color: #059669;
    font-weight: 600;
}

.download-title {
    font-size: 17px;
    font-weight: 900;
    color: #064e3b;
    margin: 0;
    line-height: 1.4;
}

.download-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 18px 0;
}

/* Specs Grid */
.download-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.download-meta-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.download-meta-item:hover {
    border-color: #a7f3d0;
    background: #f8fafc;
}

.meta-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f0fdf4;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.meta-item-info {
    display: flex;
    flex-direction: column;
}

.meta-item-label {
    font-size: 10.5px;
    color: #64748b;
    margin-bottom: 1px;
}

.meta-item-val {
    font-size: 12px;
    font-weight: 800;
    color: #064e3b;
}

/* Password Bar */
.download-password-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.password-label-group {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.password-label-group i {
    color: #f8a203;
    font-size: 16px;
}

.password-value-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.password-code {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #0d2644;
    font-family: monospace, 'Courier New', Courier;
    font-size: 13.5px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.8px;
    direction: ltr;
}

.btn-copy-password {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #0d2644;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-password:hover {
    background: #1e3a8a;
}

.btn-copy-password.copied {
    background: #10b981 !important;
}

/* Action Row */
.download-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px dashed #a7f3d0;
}

.btn-download-free {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.btn-download-free:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
}

.btn-file-size {
    font-size: 11.5px;
    opacity: 0.9;
    font-weight: 500;
}

.download-license-note {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tags & Social Share */
.article-tags-share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-top: 24px;
}

.article-tags-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tag-item {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 14px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11.5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-item:hover {
    background: #0d2644;
    color: #ffffff;
}

.article-share-block {
    display: flex;
    align-items: center;
    gap: 6px;
}

.share-label {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
}

.share-btn-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.share-btn-icon:hover {
    background: #0d2644;
    color: #ffffff;
}

/* Author Box Card */
.author-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 3px 12px rgba(13, 38, 68, 0.04);
}

.author-card-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #0d2644;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.author-card-info h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.author-card-info p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* Comments Section Card */
.comments-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 3px 12px rgba(13, 38, 68, 0.04);
}

.comments-header-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comments-header-title i {
    color: #f8a203;
}

.single-comment-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.comment-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.comment-user-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.comment-name {
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b;
}

.comment-date-text {
    font-size: 11px;
    color: #94a3b8;
}

.comment-body-text {
    font-size: 12.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.comment-form-box {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.comment-form-heading {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.post-input, .post-textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 8px 12px;
    font-size: 12px;
    background: #f8fafc;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.post-input:focus, .post-textarea:focus {
    border-color: #0d2644;
    background: #ffffff;
}

.btn-post-comment {
    background: #0d2644;
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-post-comment:hover {
    background: #1e3a8a;
}

/* Related Articles Card */
.related-articles-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 3px 12px rgba(13, 38, 68, 0.04);
}

.related-header-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-header-title i {
    color: #f8a203;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.related-post-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: all 0.22s ease;
}

.related-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 38, 68, 0.08);
    border-color: #cbd5e1;
}

.related-thumb-box {
    position: relative;
    height: 130px;
    overflow: hidden;
    background: #f1f5f9;
}

.related-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.related-item-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.related-item-title:hover {
    color: #0d2644;
}

.related-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10.5px;
    color: #94a3b8;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   3. BLOG SIDEBAR STYLES (LEFT COLUMN)
   ========================================================================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(13, 38, 68, 0.04);
}

.sidebar-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 14px;
}

.sidebar-widget-title {
    font-size: 15px;
    font-weight: 800;
    color: #0d2644;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-widget-title i {
    color: #f8a203;
}

.sidebar-widget-link {
    font-size: 11.5px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
}

.sidebar-widget-link:hover {
    color: #0d2644;
}

/* Sidebar Video Widget */
.sidebar-video-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0b1523;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.sidebar-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
}

.sidebar-play-btn {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 38, 68, 0.85);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #f8a203;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s ease;
}

.sidebar-video-box:hover .sidebar-play-btn {
    transform: scale(1.1);
    background: #f8a203;
    color: #0d2644;
}

.sidebar-video-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin: 0 0 6px 0;
    display: block;
    text-decoration: none;
}

.sidebar-video-title:hover {
    color: #0d2644;
}

/* Sidebar Recent Articles List */
.sidebar-articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.small-article-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.small-article-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.small-article-thumb {
    width: 70px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.small-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-article-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.small-article-title {
    font-size: 12.5px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s ease;
}

.small-article-title:hover {
    color: #0d2644;
}

.small-article-date {
    font-size: 10.5px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sidebar Product Cards */
.sidebar-product-item {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.sidebar-product-item:hover {
    border-color: #0d2644;
    box-shadow: 0 3px 10px rgba(13, 38, 68, 0.06);
}

.sidebar-product-thumb {
    width: 65px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-product-title {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.sidebar-product-price {
    font-size: 12px;
    font-weight: 800;
    color: #0d2644;
    margin: 0;
}

/* Sidebar Hashtags Cloud */
.sidebar-hashtags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-hashtag-link {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11.5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-hashtag-link:hover {
    background: #0d2644;
    color: #ffffff;
}

/* Sidebar Newsletter */
.sidebar-newsletter-card {
    background: linear-gradient(135deg, #0d2644 0%, #1e3a8a 100%);
    border-radius: 18px;
    padding: 20px;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(13, 38, 68, 0.15);
}

.sidebar-newsletter-title {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-newsletter-desc {
    font-size: 11.5px;
    color: #cbd5e1;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-newsletter-input {
    width: 100%;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0 12px;
    font-size: 12px;
    outline: none;
    box-sizing: border-box;
}

.sidebar-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-sidebar-newsletter {
    height: 38px;
    border-radius: 8px;
    background: #f8a203;
    color: #0d2644;
    font-size: 12px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.btn-sidebar-newsletter:hover {
    background: #fbbf24;
}

/* ==========================================================================
   4. RESPONSIVE BREAKPOINTS (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 991.98px) {
    .blog-post-page-wrapper {
        padding-bottom: 85px !important;
    }

    .article-title-card, .article-content-card, .author-card, .comments-container, .related-articles-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .download-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .article-main-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .article-body-typography {
        font-size: 14px;
        line-height: 1.8;
    }

    .article-body-typography h2 {
        font-size: 16.5px;
    }

    .inline-product-body {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .inline-product-thumb {
        width: 100%;
        height: 130px;
    }

    .download-meta-grid {
        grid-template-columns: 1fr;
    }

    .btn-download-free {
        width: 100%;
        justify-content: center;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}
