.wrapper-module--card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(12, 12, 12, 0.059);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  display: block;
}

.wrapper-module--card:hover {
    transform: scale(1.01);
}

.wrapper-module--card .card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.wrapper-module--card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wrapper-module--card .card-content {
    padding: 20px;
}

.wrapper-module--card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}

.wrapper-module--card .card-meta {
    font-size: 14px;
    color: #212529;
    font-weight: 400;
    margin-top: 12px;
    margin-bottom: 0px;
}