.companyIng {
  display: flex;
  flex-direction: column;
  gap: 20px; 
}
body{
    background-color:white;
}
.company-item {
  display: flex;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px; 
}


.item-image {
  flex-shrink: 0; /* Prevent image from shrinking */
  margin-right: 20px; 
}

.item-image img {
  width: 262px;
  display: block;
  height: 172px;
  object-fit: contain;
}

.item-content {
  flex-grow: 1; /* Allow content to take up remaining space */
}

.item-title {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-color);
}

.item-description {
  font-size: 0.9em;
  color:var(--text-color3); 
  margin-bottom: 10px;
}

.item-date {
  font-size: 0.8em; 
  color: var(--text-color3); 
  margin-bottom: 10px;
}

.item-button {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid var(--line);
  background-color: var(--white);
  color:  var(--text-color);
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
}


#demo-laypage-all{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.myContent-right {
  min-height: 32vh;
}