/* --- Single Article & Technical Table Layout Extensions --- */

/* Breadcrumb Navigation Typography */
.article-breadcrumb {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 25px;
}

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

/* Rich Text Content Formatting */
.article-rich-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333333;
}

.lead-paragraph {
    font-size: 1.2rem;
    color: #1a202c;
    font-weight: 500;
    line-height: 1.8;
}

.article-rich-text h3 {
    font-size: 1.5rem;
    color: var(--himson-blue);
    margin: 35px 0 15px 0;
}

.article-featured-image-wrapper {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 30px;
    border: 1px solid var(--border-accent);
}

.article-featured-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive Table Engineering System */
.technical-spec-container {
    margin: 40px 0;
    border: 1px solid var(--border-accent);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.spec-table-header {
    background-color: var(--himson-blue);
    color: #ffffff;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.table-scroll-wrapper {
    width: 100%;
    overflow-x: auto; /* Activates smooth finger swiping on small screens */
    -webkit-overflow-scrolling: touch;
}

.machinery-spec-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
    min-width: 600px; /* Keeps table data legible on mobile screens */
}

.machinery-spec-table th, 
.machinery-spec-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-accent);
}

.machinery-spec-table th {
    background-color: #f8fafc;
    color: var(--industrial-charcoal);
    font-weight: 600;
}

.machinery-spec-table tbody tr:hover {
    background-color: #f1f5f9; /* Row highlighting interaction */
}

/* Bottom B2B Action Box Layout */
.article-action-panel {
    background-color: #f0f7ff;
    border-left: 4px solid var(--himson-blue);
    padding: 30px;
    margin-top: 50px;
    border-radius: 0 6px 6px 0;
}

.article-action-panel p {
    margin: 0 0 20px 0;
    font-weight: 600;
    color: var(--industrial-charcoal);
    font-size: 1.1rem;
}

.contact-eng-btn, .sidebar-action-button {
    display: inline-block;
    background-color: var(--himson-blue);
    color: #ffffff;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.contact-eng-btn:hover, .sidebar-action-button:hover {
    background-color: #072647;
}

/* Sidebar Lock Configuration */
@media (min-width: 901px) {
    .sticky-sidebar {
        position: sticky;
        top: 20px; /* Locks sidebar in place while user reads deep tech specs */
    }
}
