.detail-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--elsel-white-2);
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  height: 100%;
}

.detail-card > figure > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1/1;
}

.detail-card > .description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.detail-card > .description > p {
  color: var(--elsel-black);
  font-size: var(--font-16);
  font-weight: 500;
}

.detail-card > .description > button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--elsel-blue);
  transition: 0.3s;
}

.detail-card > .description > button > svg,
.detail-card > .description > button > svg > path {
  transition: 0.3s;
}

.detail-card > .description > button:hover {
  background: var(--elsel-blue);
}

.detail-card > .description > button:hover > svg {
  transform: translateX(5px);
}

.detail-card > .description > button:hover > svg > path {
  stroke: var(--elsel-white);
  stroke-width: 2px;
}
