/* Desktop: image on left, title and text on right */
.header-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: start;
}

.header-image {
  grid-column: 1;
  grid-row: 2;
}

.header-title {
  grid-column: 2;
  grid-row: 1;
}

.header-text {
  grid-column: 2;
  grid-row: 2;
}

/* Mobile: title, image, text */
@media (max-width: 768px) {
  .header-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .header-title {
    order: 1;
  }
  
  .header-image {
    order: 2;
  }
  
  .header-text {
    order: 3;
  }
}