.mp-title {
  font-family: "DynaPuff", sans-serif;
}
.spot-list {
  background-color: #d9e5ff;
  border-radius: 0.4rem;
  padding: 0.75rem 1rem;
}
.spot-list__title-wrapper {
  display: flex;
  justify-content: space-between;
}
.spot-list__title {
  line-height: 1;
  color: #ff6528;
}
.spot-list__title span {
  display: block;
  font-size: 0.8rem;
  color: #4463b2;
}
.spot {
  display: flex;
  flex-wrap: wrap;
  background-color: #4463b2;
  border-radius: 0.4rem;
  overflow: hidden;
  margin-top: 0.75rem;
}
.spot_pending {
  /* opacity: 0.25; */
  position: relative;
}
.spot_pending::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  height: 100%;
  width: 100%;
  background-color: rgb(217 229 255 / 80%);
  z-index: 1;
}
.spot_pending::after {
  content: "pending";
  z-index: 1;
  color: #4463b2;
  position: absolute;
  inset: 0 0 0 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.5rem;
}
.spot_approved {
}
.spot_rejected {
  position: relative;
}
.spot_rejected::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 0, 0, 0.5);
  z-index: 1;
}
.spot_rejected::after {
  content: "rejected";
  z-index: 1;
  color: white;
  position: absolute;
  inset: 0 0 0 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.5rem;
}
.spot_empty {
  background-color: #ff6528;
  border: unset;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
.spot__title,
.spot__author {
  width: 100%;
  margin-bottom: 0;
}
.spot__title-wrapper {
  padding: 0.4rem 0.4rem;
}
.spot__title {
  line-height: 1.2;
  color: #ffffff;
}
.spot__author {
  font-size: 0.75rem;
  line-height: 1;
  color: #d7e5ff;
}
.spot__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 3rem;
  width: 100%;
  /* border-radius: 100%; */
}
.spot__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
