/* Runtime-only visual behavior for verified Weedopolis V1 assets. */

.board-frame .tile.selected-space {
  outline: 2px solid #fff3a8;
  outline-offset: -5px;
  background: rgba(242, 223, 155, .13);
}

.board-frame .tile[role='button']:focus-visible {
  outline: 3px solid #fff3a8;
  outline-offset: -3px;
}

.property-art-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 16rem;
  overflow: hidden;
}

.property-art-slot img {
  display: block;
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
  border-radius: .5rem;
}

.verified-art-fallback {
  display: grid;
  gap: .35rem;
  width: 100%;
  padding: 1.25rem;
  text-align: center;
}

.verified-art-fallback strong {
  color: #173f2a;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
}

.verified-art-fallback span {
  color: #5b665c;
  font-size: .76rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.selected-property-summary {
  margin: 0 0 .85rem;
  padding: .7rem;
  border: 1px solid rgba(109,81,32,.24);
  border-radius: .65rem;
  background: rgba(255,255,255,.2);
}

.selected-property-summary header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
}

.selected-property-summary p {
  margin: .35rem 0 0;
}

.property-select-button {
  min-height: 36px;
  padding: .25rem .45rem;
  border: 0;
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  font-weight: 800;
  text-align: left;
}

.property-card.selected {
  border-color: rgba(242,223,155,.8);
  background: rgba(242,223,155,.08);
}

@media (max-width: 720px) {
  .property-art-slot {
    min-height: 12rem;
  }

  .property-art-slot img {
    max-height: 22rem;
  }
}
