.crece-osm-map {
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.crece-osm-marker-wrapper {
  background: transparent;
  border: 0;
}

.crece-osm-marker-pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.crece-osm-marker-pin span {
  transform: rotate(45deg);
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.crece-osm-layout {
  display: flex;
  gap: 16px;
}

.crece-osm-layout-row {
  flex-direction: column;
}

.crece-osm-layout-row-reverse {
  flex-direction: column-reverse;
}

.crece-osm-layout-column {
  flex-direction: row;
  align-items: stretch;
}

.crece-osm-layout-column-reverse {
  flex-direction: row-reverse;
  align-items: stretch;
}

.crece-osm-map-area,
.crece-osm-list-area {
  min-width: 0;
  flex: 1 1 0;
}

.crece-osm-point-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

.crece-osm-list-horizontal .crece-osm-point-list {
  align-items: stretch;
}

.crece-osm-point-item {
  width: 100%;
  appearance: none;
  border: 1px solid #e4e7ec;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.crece-osm-point-item.is-active {
  border-color: #3388ff;
  box-shadow: 0 0 0 2px rgba(51, 136, 255, 0.12);
}

.crece-osm-point-color {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: 3px;
}

.crece-osm-point-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.crece-osm-point-title {
  font-size: 15px;
  line-height: 1.4;
  color: #1f2937;
  font-weight: 600;
}

.crece-osm-point-address {
  font-size: 13px;
  line-height: 1.5;
  color: #475467;
}

.crece-osm-point-description {
  font-size: 13px;
  line-height: 1.6;
  color: #667085;
}

.crece-osm-popup div {
  margin-top: 4px;
}

@media (max-width: 767px) {
  .crece-osm-layout-column,
  .crece-osm-layout-column-reverse {
    flex-direction: column;
  }
}
