/* Model nameplate styling */
.model-nameplate {
    max-width: 50%;
    text-align: center;
    height: auto;
}

/* Model image styling */
.model-image {
    max-width: 80%;
    height: auto;
    min-height: 200px;
    object-fit: contain;
}

.model-image img {
    min-height: 200px !important;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Desktop specific styling for 2x2 grid */
@media (min-width: 992px) {
    .model-nameplate {
        max-width: 60%;
        margin-bottom: 1rem;
    }
    
    .model-image {
        max-width: 85%;
        min-height: 250px;
    }
    
    .model-image img {
        min-height: 250px !important;
    }
    
    .card {
        min-height: 80px;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .list-group-item {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
}

/* Card styling */
.card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-body {
    padding: 1rem;
}

.list-group-item {
    border: none;
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .model-nameplate {
        max-width: 60%;
    }
    
    .model-image {
        max-width: 90%;
        min-height: 150px;
    }
    
    .model-image img {
        min-height: 150px !important;
    }
}

@media (max-width: 575.98px) {
    .model-nameplate {
        max-width: 70%;
    }
    
    .model-image {
        max-width: 95%;
        min-height: 120px;
    }
    
    .model-image img {
        min-height: 120px !important;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .list-group-item {
        font-size: 1rem;
    }
}

/* Button styling */
.promo-btn, .learn-more-btn {
    margin-top: 20px;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.promo-btn:hover, .learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
