.elementor-1588 .elementor-element.elementor-element-f48f550{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-1588 .elementor-element.elementor-element-e22ba99 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e22ba99 *//* ==========================================================================
   JIGSAW MARINE - CASE STUDIES PAGE CUSTOM CSS
   ========================================================================== */

#jigsaw-marine-cases-wrapper {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #162a42;
    background-color: #ffffff;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

#jigsaw-marine-cases-wrapper * {
    box-sizing: border-box;
}

/* --- HERO SECTION --- */
#jigsaw-marine-cases-wrapper .jigsaw-cs-hero {
    position: relative;
    width: 100%;
    height: 70vh; /* Điều chỉnh chiều cao hero section */
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #162a42;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-hero-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(22, 42, 66, 0.4); /* Lớp phủ mờ */
    z-index: 2;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 800px;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-hero-content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Nút lớn trong Hero */
#jigsaw-marine-cases-wrapper .jigsaw-cs-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-btn:hover {
    background-color: #ffffff;
    color: #162a42;
}

/* --- CASE STUDIES GRID --- */
#jigsaw-marine-cases-wrapper .jigsaw-cs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-heading {
    text-align: left;
    color: #162a42;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cột trên Desktop */
    gap: 30px;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-card {
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-card:hover {
    transform: translateY(-5px);
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-img-box {
    position: relative;
    width: 100%;
    padding-top: 66.66%; /* Tỉ lệ 3:2 */
    overflow: hidden;
    background-color: #162a42;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-img-box img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Lớp phủ mặc định (tối) */
#jigsaw-marine-cases-wrapper .jigsaw-cs-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(22, 42, 66, 0.7); /* Xanh navy mờ */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    transition: background 0.3s ease;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-overlay h3 {
    font-size: 24px;
    margin: 0 0 15px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Nút nhỏ trên overlay */
#jigsaw-marine-cases-wrapper .jigsaw-cs-btn-small {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 20px; /* Bo góc */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#jigsaw-marine-cases-wrapper .jigsaw-cs-btn-small:hover {
    background-color: #ffffff;
    color: #162a42;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    #jigsaw-marine-cases-wrapper .jigsaw-cs-hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    #jigsaw-marine-cases-wrapper .jigsaw-cs-grid {
        grid-template-columns: 1fr; /* Chuyển thành 1 cột trên Mobile */
    }
    
    #jigsaw-marine-cases-wrapper .jigsaw-cs-hero {
        height: 50vh;
    }
    
    #jigsaw-marine-cases-wrapper .jigsaw-cs-hero-content h1 {
        font-size: 32px;
    }
    
    #jigsaw-marine-cases-wrapper .jigsaw-cs-hero-content p {
        font-size: 16px;
    }
    
    #jigsaw-marine-cases-wrapper .jigsaw-cs-heading {
        font-size: 28px;
    }
}/* End custom CSS */