.wd-card {
    font-family: "Urbanist", sans-serif;
    color: #02050A;
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 100%;
}
.wd-card *, .wd-card *::before, .wd-card *::after { box-sizing: border-box; }

.wd-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3 / 2;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wd-card__media-link {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    text-decoration: none;
}
.wd-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform .35s ease;
}
.wd-card__img--placeholder {
    background: #EEEEEE;
}
.wd-card:hover .wd-card__img { transform: scale(1.03); }

.wd-card__price {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: #FFFFFF;
    color: #00B953;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(2, 5, 10, .08);
}

.wd-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wd-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 1;
    color: #808284;
    font-weight: 500;
}
.wd-card__cat {
    color: #2986FF;
    text-decoration: none;
    font-weight: 600;
    transition: color .15s ease;
}
.wd-card__cat:hover { color: #1B59AA; }
.wd-card__meta-info { color: #808284; }
.wd-card__meta-sep {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: #DDDDDD;
}
.wd-card__stars { display: inline-flex; align-items: center; }

.wd-card h3.wd-card__title,
.wd-card h3.wd-card__title a {
    font-size: 24px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    color: #02050A !important;
    margin: 0;
    text-decoration: none;
    transition: color .15s ease;
}
.wd-card h3.wd-card__title a:hover { color: #2986FF !important; }

.wd-card__excerpt {
    font-size: 16px;
    line-height: 1.55;
    color: #525252;
    font-weight: 400;
}
.wd-card__excerpt p { margin: 0 0 8px; }
.wd-card__excerpt p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
    .wd-card h3.wd-card__title,
    .wd-card h3.wd-card__title a { font-size: 20px !important; }
    .wd-card__price { padding: 8px 16px; font-size: 17px; top: 12px; right: 12px; }
}
