.custom-home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
  gap: 40px;
}

/* obrazek po lewej */
.custom-home-image {
  flex: 1;
  padding-right: 1rem;
  text-align: left;
}

/* tekst po prawej */
.custom-home-text {
  flex: 1;
}

/* kolor nagłówka */
.custom-home-text h2 {
  color: #d32483;
  font-weight: 600;
  text-transform: uppercase;
}

.custom-home-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* === responsywność === */
@media (max-width: 768px) {
  .custom-home-container {
    flex-direction: column; /* jeden pod drugim */
    text-align: center;
  }
  .custom-home-image,
  .custom-home-text {
    width: 100%;
    padding-right: 0;
  }
  .custom-home-text {
    margin-top: 1rem;
  }
}