#showrooms-archive {
  background: #232323;
}

#showrooms-archive .title__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

#showrooms-archive .title__wrapper div {
    display: flex;
    align-items: center;
    text-wrap: pretty;
    flex: 1;
    color: #fff;
}

#showrooms-archive .title__wrapper h1 {
  /* font-size: 32px; */
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
}

.showrooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.showroom-card {
  background: #0F0F0F;
  overflow: hidden;
}
.showroom-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 512/305;
}
.showroom-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title__wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
}
.badge {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #CACACA;
  font-size: 14px;
  color: #fff;
}

.showroom-title {
  margin: 0;
  font-size: 20px !important;
  font-weight: 600;
  color: #fff;
}

.showroom-content {
  padding: 32px;
}

.showroom-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.info-item {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  background: #232323;
  color: #fff;
  transition: all 0.3s ease;
}
.info-item:nth-of-type(2n) {
  background: rgba(35, 35, 35, 0.55);
}
a.info-item:hover {
  color: #000 !important;
  background: #FFFFFF;
}
a.info-item:hover svg path {
  fill: #000 !important;
  stroke: #000 !important;
}

.info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 30px;
  max-width: 30px;
  height: 100%;
  width: 100%;
}

.info-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
@media (max-width: 575px) {
  #showrooms-archive .title__wrapper {
    flex-direction: column;
    align-items: start;
  }
  .showrooms-grid {
    grid-template-columns: 1fr;
  }
  .showroom-content {
    padding: 16px;
  }
  .showroom-content .title__wrapper {
    gap: 16px !important;
  }
}