.random-hot-rod {
    --max-width: 320px;
    
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    max-width: var(--max-width);
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    display: block;
    margin: 0 auto;
}

.text-wrapper {
    text-align: center;
}

.hot-rod-owner {
    color: #0a2540;
    font-size: 1.65rem;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.hot-rod-info {
    margin: 6px 0;
    font-size: 1.05rem;
    color: #444;
}

.hot-rod-label {
    font-weight: 600;
    color: #006400;
    display: inline-block;
    min-width: 55px;
}

.hot-rod-value {
    font-style: italic;
    color: #cc5500;
}

/* Horizontal layout on larger screens */
@media (min-width: 768px) {
    .random-hot-rod.layout-horizontal {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .random-hot-rod .image-wrapper {
        flex-shrink: 0;
        margin-right: 28px;
    }
    
    .random-hot-rod .text-wrapper {
        flex: 1;
        text-align: left;
        padding-top: 8px;
    }
    
    .image-wrapper img {
        margin: 0;
    }
}

/* Nice hover */
.random-hot-rod:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.no-hot-rod-found {
    padding: 20px;
    text-align: center;
    color: #777;
    background: #f9f9f9;
    border-radius: 8px;
}