#page-content {
  width: 100%;
}

.title-page {
  color: #0069a9;
  display: flex;
  margin-bottom: 30px;
}

.title-page img {
  width: 200px;
  object-fit: contain;
}

.header {
  width: calc(100% - 200px);
  text-align: center;
  padding: 50px 0;
}

.title {
  font-size: 40px;
  color: #0576ba;
  text-align: right;
}

.subtitle {
  font-size: 30px;
  font-weight: bold;
  color: #0077c1;
  text-align: right;
}

#printable-listings {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.listing-item {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-content: center;
}

.listing-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.listing-image {
  width: 200px;
}

.listing {
  width: calc(100% - 220px);
  border: 2px solid black;
  color: #004d80;
  padding: 10px;
}

.listing-info {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}

.info {
  flex: 1;
}

.info .text-mail {
  white-space: nowrap;
}

.info span {
  font-weight: bold;
}

.info a {
  color: #004d80;
  text-decoration: underline !important;
}

a::after {
  content: none !important;
  display: none !important;
}

.draft-wrap {
  width: 100%;
  height: 24px;
}

@media print {
  a::after,
  a[href]:after,
  a:link[href]:after,
  a:visited[href]:after {
    content: none !important;
    display: none !important;
  }
}

@media screen and (max-width: 1180px) {
  .listing-info {
    display: block;
  }

  .draft-wrap {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .listing-info {
    display: block;
  }

  .draft-wrap {
    display: none;
  }

  .listing-item {
    display: block;
  }

  .listing-item .listing-image{
    width: 100%;
  }

  .listing-item .listing{
    width: 100%;
  }

  .title-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title-page .header {
    width: 100%;
    padding: 20px 0;
  }

  .title-page .title {
    text-align: center;
  }

  .title-page .subtitle {
    text-align: center;
  }
}