.elementor-6200 .elementor-element.elementor-element-fa6207b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:100px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-6cc9fe7 *//* ========================================
   TRG Supply Blog - CSS Styles
   ======================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* TRG Supply Brand Colors */
    --primary-green: #008e51;
    --dark-green: #006b3d;
    --light-green: #00a85e;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --background-grey: #e9ecef;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header Styles
   ======================================== */
.site-header {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

.logo a {
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-green);
}

/* ========================================
   Hero Section
   ======================================== */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), 
                url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1600&h=600&fit=crop') 
                center center / cover no-repeat;
    padding: 100px 0 80px;
    color: var(--background-white);
    margin-bottom: 60px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--background-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
}

.article-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item svg {
    opacity: 0.8;
}

/* ========================================
   Article Layout
   ======================================== */
.blog-article {
    padding: 0 0 80px;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.article-content {
    max-width: 800px;
}

/* ========================================
   Typography
   ======================================== */
.content-section {
    margin-bottom: 48px;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
    padding-top: 16px;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 32px;
    line-height: 1.4;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 17px;
}

.article-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: var(--primary-green);
}

.article-list {
    margin: 24px 0;
    padding-left: 24px;
}

.article-list li {
    margin-bottom: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 17px;
}

.article-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ========================================
   Special Content Boxes
   ======================================== */
.stat-box {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-green);
    padding: 32px;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    border-radius: 4px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
}

.highlight-box {
    background-color: #f0fdf7;
    border: 2px solid var(--light-green);
    border-radius: 8px;
    padding: 32px;
    margin: 32px 0;
}

.highlight-box h3 {
    color: var(--primary-green);
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 0;
}

.highlight-box p {
    margin-bottom: 12px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.article-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--background-white);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0 48px;
}

.article-cta h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--background-white);
    margin-top: 0;
}

.article-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    color: var(--background-white);
}

.cta-button {
    display: inline-block;
    background-color: var(--background-white);
    color: var(--primary-green);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Related Articles
   ======================================== */
.related-articles {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 2px solid var(--border-color);
}

.related-articles h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.related-card {
    background-color: var(--background-light);
    padding: 28px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card h4 {
    margin-bottom: 12px;
}

.related-card h4 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-card h4 a:hover {
    color: var(--primary-green);
}

.related-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   Sidebar Styles
   ======================================== */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background-color: var(--background-light);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 12px;
}

.toc a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    padding-left: 12px;
    border-left: 2px solid transparent;
}

.toc a:hover {
    color: var(--primary-green);
    border-left-color: var(--primary-green);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--background-white);
}

.cta-box h3 {
    color: var(--background-white);
}

.product-links,
.service-links {
    list-style: none;
}

.product-links li,
.service-links li {
    margin-bottom: 12px;
}

.product-links a,
.service-links a {
    color: var(--background-white);
    text-decoration: none;
    font-size: 15px;
    display: block;
    transition: opacity 0.3s ease;
}

.cta-box .product-links a:hover {
    opacity: 0.8;
}

.service-links a {
    color: var(--text-medium);
}

.service-links a:hover {
    color: var(--primary-green);
}

.contact-box {
    background-color: var(--background-white);
    border: 2px solid var(--primary-green);
}

.contact-box p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.sidebar-cta {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--background-white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sidebar-cta:hover {
    background-color: var(--dark-green);
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 60px 0 32px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-column h4 {
    color: var(--background-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--background-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    opacity: 0.85;
}

.footer-column ul li a:hover {
    color: var(--light-green);
    opacity: 1;
}

.footer-column ul li:not(:has(a)) {
    font-size: 15px;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 968px) {
    .article-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: static;
        max-width: 100%;
    }
    
    .blog-hero h1 {
        font-size: 36px;
    }
    
    .article-content h2 {
        font-size: 28px;
    }
    
    .stat-box {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .main-nav ul {
        display: none;
    }
    
    .blog-hero {
        padding: 60px 0 50px;
    }
    
    .blog-hero h1 {
        font-size: 28px;
    }
    
    .lead-paragraph {
        font-size: 18px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .article-content p,
    .article-list li {
        font-size: 16px;
    }
    
    .article-cta {
        padding: 32px 24px;
    }
    
    .article-cta h3 {
        font-size: 24px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .article-sidebar,
    .article-cta,
    .related-articles,
    .site-footer {
        display: none;
    }
    
    .article-content {
        max-width: 100%;
    }
    
    .article-content a {
        color: var(--text-dark);
        border-bottom: none;
    }
}

/* ========================================
   Accessibility Enhancements
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background-color: var(--primary-green);
    color: var(--background-white);
}

::-moz-selection {
    background-color: var(--primary-green);
    color: var(--background-white);
}/* End custom CSS */