div.logobar {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: rgb(248, 248, 248);
  border-bottom: 1px solid #e7e7e7;
  font-family: Arial, sans-serif;
  color: #4e5e6b;
  height: 250px;

  /* Logo on left */
  background-image: url("https://conf.researchr.org/getImage/icse-2027/orig/ICSE+2027_Logo.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 500px auto;
  position: relative;
}

/* Text */
div.logobar::after {
  content: "49th International Conference on Software Engineering\A Sun 25th April - Sat 1st May 2027\A Dublin, Ireland";
  white-space: pre; /* keep line breaks */
  position: absolute;
  left: calc(20px + 500px + 20px); /* padding: left margin + logo width + spacing */
  right: 20px; /* keep space from edge */
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1.4;
}

/* Hide these elements */
.place,
.place2 {
  display: none !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  div.logobar {
    height: 120px;
    background-size: 80px auto;
  }

  div.logobar::after {
    left: calc(20px + 80px + 15px);
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  div.logobar {
    flex-direction: column;
    height: auto;
    padding-top: 100px; /* space for logo above text */
    background-position: center 20px;
    background-size: 80px auto;
  }

  div.logobar::after {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 14px;
  }
}

/* Hide these elements entirely */
.logobar .container {
    display: none; /* remove border if not needed */
}

.logobar .place, 
.place2 {
  display: none !important;
}
