.card {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    margin: 10px;
    padding: 24px;

    background: #ffffff;
    border: 1px solid #e5eefc;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.08);
    transition: all 0.3s ease;

    text-align: center;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.15);
}
.card__image {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
}

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

.card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.92);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(6px);
}

.card__title {
    margin: 24px 20px 12px;
    color: #1e3a8a;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.card__text {
    margin: 0 24px 28px;
    color: #5b6475;
    font-size: 15px;
    line-height: 1.7;
}