.elementor-1671 .elementor-element.elementor-element-bebac07{--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;--overlay-opacity:0.5;--padding-top:256px;--padding-bottom:10px;--padding-left:0px;--padding-right:0px;}.elementor-1671 .elementor-element.elementor-element-bebac07:not(.elementor-motion-effects-element-type-background), .elementor-1671 .elementor-element.elementor-element-bebac07 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-kadence6 );}.elementor-1671 .elementor-element.elementor-element-bebac07::before, .elementor-1671 .elementor-element.elementor-element-bebac07 > .elementor-background-video-container::before, .elementor-1671 .elementor-element.elementor-element-bebac07 > .e-con-inner > .elementor-background-video-container::before, .elementor-1671 .elementor-element.elementor-element-bebac07 > .elementor-background-slideshow::before, .elementor-1671 .elementor-element.elementor-element-bebac07 > .e-con-inner > .elementor-background-slideshow::before, .elementor-1671 .elementor-element.elementor-element-bebac07 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{--background-overlay:'';}.elementor-widget-image .widget-image-caption{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1671 .elementor-element.elementor-element-6bce11f{--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;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-64c48a3 *//* ========================================
   MORAN ENGINEERING - NEWS PAGE STYLES
   Professional Clean Corporate Design
   ======================================== */

:root {
    --oil-black: #000000;
    --gear-grey: #7A7A7A;
    --eco-green: #00D02D;
    --electric-blue: #1C3FAA;
    --pure-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ========================================
   MAIN SECTION
   ======================================== */
.moran-company-news-full {
    background: linear-gradient(145deg, #f5f7fa, #ffffff);
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(28, 63, 170, 0.1), rgba(0, 208, 45, 0.1));
    color: var(--electric-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--oil-black);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--gear-grey);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   QUICK LINKS SECTION
   ======================================== */
.quick-links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quick-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    color: var(--oil-black);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.quick-link-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--electric-blue);
}

.quick-link-btn:hover {
    background: var(--electric-blue);
    color: var(--pure-white);
    border-color: var(--electric-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(28, 63, 170, 0.3);
}

.quick-link-btn:hover svg {
    stroke: var(--pure-white);
}

.quick-link-btn.primary {
    background: var(--eco-green);
    color: var(--pure-white);
}

.quick-link-btn.primary svg {
    stroke: var(--pure-white);
}

.quick-link-btn.primary:hover {
    background: var(--oil-black);
    border-color: var(--oil-black);
}

/* ========================================
   NEWS ARTICLES GRID
   ======================================== */
.news-articles-grid {
    display: grid;
    gap: 40px;
}

.news-article {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-article:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.news-article.featured {
    border: 3px solid var(--eco-green);
}

/* Article Image Container */
.article-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-article:hover .article-image {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

/* Category Badge */
.article-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.article-category-badge.equipment {
    background: var(--eco-green);
    color: var(--pure-white);
}

.article-category-badge.partnership {
    background: var(--electric-blue);
    color: var(--pure-white);
}

.article-category-badge.project {
    background: var(--gear-grey);
    color: var(--pure-white);
}

/* Article Content */
.article-content {
    padding: 40px;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-date,
.article-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gear-grey);
}

.meta-icon {
    width: 16px;
    height: 16px;
    stroke: var(--eco-green);
}

/* Article Title */
.article-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--oil-black);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Article Excerpt */
.article-excerpt {
    margin-bottom: 30px;
}

.excerpt-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--electric-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.article-excerpt p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Article Highlights */
.article-highlights {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--eco-green);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    stroke: var(--eco-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.highlight-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(28, 63, 170, 0.05), rgba(0, 208, 45, 0.05));
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid rgba(28, 63, 170, 0.1);
}

.info-box-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 10px;
}

/* Article Benefits */
.article-benefits {
    margin-bottom: 30px;
}

.benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--eco-green);
    background: rgba(0, 208, 45, 0.05);
}

.benefit-icon {
    font-size: 20px;
    color: var(--eco-green);
    font-weight: 700;
}

.benefit-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Progress Timeline */
.progress-timeline {
    margin-bottom: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid var(--eco-green);
}

.timeline-item.active .timeline-marker {
    background: var(--eco-green);
}

.timeline-marker svg {
    width: 20px;
    height: 20px;
    stroke: var(--eco-green);
}

.timeline-item.active .timeline-marker svg {
    stroke: var(--pure-white);
}

.timeline-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Power Facilities */
.power-facilities {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.facilities-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 15px;
}

.facilities-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--pure-white);
    border-radius: 50px;
    border: 2px solid rgba(28, 63, 170, 0.1);
}

.facility-icon {
    font-size: 20px;
}

.facility-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

/* Article Footer */
.article-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 25px;
    margin-top: 30px;
}

.stay-connected,
.closing-statement {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-shoutout p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* ========================================
   IMAGE SLIDER
   ======================================== */
.article-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-item.active {
    opacity: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--eco-green);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--oil-black);
}

.slider-btn:hover svg {
    stroke: var(--pure-white);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--eco-green);
    width: 30px;
    border-radius: 6px;
}

/* Slider Counter */
.slider-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .quick-links-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .quick-links-section {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .article-content {
        padding: 25px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-image-container {
        height: 300px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .facilities-list {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .moran-company-news-full {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .article-content {
        padding: 20px;
    }

    .article-title {
        font-size: 20px;
    }

    .article-image-container {
        height: 250px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }
}/* End custom CSS */