
    /* Base Styles */
body {
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.list-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('../images/s2.webp') bottom/cover;
    height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
}

.list-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin: auto;
    color: #fff;
}
   /* ===== Breadcrumb ===== */
.product-breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
}
.product-breadcrumb a {
    color: #666;
    text-decoration: none;
}
.product-breadcrumb a:hover {
    color: #E61E15;
}
.product-breadcrumb .product-breadcrumb-current {
    color: #333;
    font-weight: 500;
}

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

/* Case Section Title */
.case-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

/* Case Grid */
.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .list-hero-section{height:300px;}
    .list-hero-section h1{font-size:24px;}
}

/* Case Card */
.case-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Case Card Image */
.case-card-image {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Case Card Body */
.case-card-body {
    padding: 24px;
}

/* Case Card Title */
.case-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.4;
}
.case-card-title a{
    color: #333333;
    text-decoration: none;
}
/* Case Card Description */
.case-card-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Case Card Button */
.case-card-btn {
    display: inline-block;
    background: #e61e15e8;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.case-card-btn:hover {
    background: #e61e15d9;
    color: #ffffff;
    transform: scale(1.05);
}

.case-card-btn:active {
    transform: scale(0.98);
}

/* Case Card Button Icon */
.case-card-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.case-card-btn:hover svg {
    transform: translateX(4px);
}
