/**
 * Cable Solutions Block Styles
 */
.cable-solutions-section {
    padding: 40px 0;
    background-color: #fff;
    font-family: 'Arial', sans-serif; /* Use theme font if available */
}

.cs-container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.cs-header {
    margin-bottom: 30px;
}


.cs-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a3c6e; /* Dark Blue */
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.cs-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #0f2445; /* Darker Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}

.cs-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 1000px;
}

.cs-intro p {
    margin-bottom: 15px;
}

/* Content Layout */
.cs-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Image Column */
.cs-image-col {
    flex: 0 0 40%;
    max-width: 40%;
}

.cs-image-inner {
    background-color: #f5f7fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cs-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Features Column */
.cs-features-col {
    flex: 0 0 55%; /* Allow some gap */
    max-width: 55%;
}

.cs-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cs-feature-item {
    margin-bottom: 20px;
}

.cs-feat-num {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6; /* Accent Blue */
    margin-bottom: 10px;
}

.cs-feat-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cs-feat-content {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.cs-feat-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-feat-content li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.cs-feat-content li::before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cs-feat-content strong {
    color: #334155;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .cs-content-wrapper {
        flex-direction: column;
    }

    .cs-image-col,
    .cs-features-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .cs-features-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cs-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cs-title {
        font-size: 20px;
    }
    
    .cs-subtitle {
        font-size: 26px;
    }
}
