/* 2025 Ram 1500 Research Page Styles */

.research-1500-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.research-1500-section {
    margin-bottom: 60px;
}

.research-1500-section h2 {
    margin-bottom: 20px;
}

/* Image Placeholder Styles */
.research-1500-image-placeholder {
    margin: 20px 0;
}

.research-1500-image-placeholder img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #ccc;
    background-color: #f5f5f5;
}

.research-1500-img-left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
}

.research-1500-img-right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
}

.research-1500-img-center {
    text-align: center;
    clear: both;
}

.research-1500-img-center img {
    margin: 0 auto;
}

/* Table Container */
.research-1500-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Comparison Table */
.research-1500-comparison-table {
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
    background-color: #fff;
}

.research-1500-comparison-table thead {
    background-color: #333;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.research-1500-comparison-table th {
    padding: 15px 12px;
    text-align: left;
    border: 1px solid #555;
    white-space: nowrap;
}

.research-1500-comparison-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.research-1500-sticky-col {
    position: sticky;
    left: 0;
    background-color: #333;
    color: #fff;
    z-index: 11;
    text-align: left !important;
    min-width: 200px;
}

.research-1500-comparison-table tbody td.research-1500-sticky-col {
    background-color: #f8f8f8;
    color: #333;
    font-weight: 600;
}

/* Highlight cells where features are introduced or enhanced */
.research-1500-highlight {
    background-color: #fff3cd;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .research-1500-content {
        padding: 15px;
    }
    
    .research-1500-img-left,
    .research-1500-img-right {
        float: none;
        margin: 20px auto;
        display: block;
    }
    
    .research-1500-image-placeholder img {
        margin: 0 auto;
    }
    
    .research-1500-section {
        margin-bottom: 40px;
    }
    
    .research-1500-table-container {
        border-radius: 0;
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .research-1500-comparison-table th,
    .research-1500-comparison-table td {
        padding: 10px 8px;
    }
    
    .research-1500-sticky-col {
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .research-1500-comparison-table {
        min-width: 900px;
    }
    
    .research-1500-comparison-table th,
    .research-1500-comparison-table td {
        padding: 8px 6px;
    }
    
    .research-1500-sticky-col {
        min-width: 120px;
    }
}

/* Clear floats */
.research-1500-section::after {
    content: "";
    display: table;
    clear: both;
}