.jwk-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.jwk-card__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.08);
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jwk-card__image img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
}

.jwk-card__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
    color: #111827;
}

.jwk-card__description {
    color: #4b5563;
    line-height: 1.7;
}

.jwk-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 20px;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.jwk-card__button:hover {
    transform: translateY(-2px);
    opacity: 0.96;
}
