.scrap-card {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e2ded6;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: inherit;
}

.scrap-photo {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform .45s ease;
}

.scrap-card:hover .scrap-photo {
  transform: scale(1.045);
}

.scrap-body {
  position: relative;
  padding: 23px 25px 25px;
  background: #fff;
}

.scrap-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 42px;
  height: 3px;
  background: #e96322;
}

.scrap-card h3 { font-size: 20px; }
.scrap-card p { min-height: 43px; margin: 10px 0 18px; }

.card-link {
  color: #e96322;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 650px) {
  .scrap-photo { height: 220px; }
  .scrap-body { padding: 22px; }
}
