.tg-tour-card {
    font-family: 'Inter', Arial, sans-serif;
    max-width: 380px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #dbe5f0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .025);
    transition: .3s ease;
}

.tg-tour-card:hover {
    transform: translateY(-2px);
    border-color: #c9d8ea;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .045);
}

.tg-tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.tg-tour-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #222;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    padding: 4px 14px;
    z-index: 2;
}

.tg-tour-card__badge-text:before {
    content: "";
    width: 4px;
    height: 4px;
    display: inline-block;
    position: absolute;
    background: #16BF75;
    top: calc(50% - 2px);
    left: 7px;
    border-radius: 50%;
}

.tg-tour-card__discount {
    position: absolute;
    background: #1761a0;
    color: #fff;
    font-weight: 600;
    border-radius: 0 12px 0 12px;
    padding: 8px 12px;
    z-index: 2;
    text-align: right;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    font-size: 1.3rem;
}

.tg-tour-card__body {
    padding: 22px;
}

.tg-tour-card__features {
    font-size: 12.5px;
    font-weight: 600;
    color: #4B6482;
    margin-bottom: 16px;
    line-height: 1.5;
}

.tg-tour-card__feature+.tg-tour-card__feature:before {
    content: " · ";
}

.tg-tour-card__title {
    font-size: 19px;
    line-height: 1.34;
    font-weight: 800;
    color: #07142f;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}

.tg-tour-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 30px;
    font-size: 13px;
    color: #667085;
}

.tg-tour-card__rating .rating-star {
    color: #f5a400;
    font-size: 14px;
}

.tg-tour-card__rating strong {
    color: #07142f;
    font-weight: 800;
}

.tg-tour-card__rating .opinions {
    color: #4B6482;
    font-weight: 500;
}

.tg-tour-card__price {
    display: flex;
    align-items: flex-start;
    gap: 0px;
    margin-bottom: 10px;
    flex-direction: column;
    justify-content: center;
}

.tg-tour-card__price-old {
    color: #B42318;
    text-decoration: line-through;
    text-decoration-color: rgba(180, 35, 24, .75);
    text-decoration-thickness: 1.5px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tg-tour-card__price-since {
    font-size: 13px;
    color: #07142f;
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1;
}

.tg-tour-card__price-new {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: #0f5db8;
    letter-spacing: -.8px;
}

.tg-tour-card__group-pricing-notice {
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    margin-top: -2px;
    margin-bottom: 12px;
    line-height: 1.35;
    color: #667085;
}

.tg-tour-card__group-pricing-text {
    display: block;
    color: #667085;
}

.tg-tour-card__btn {
    font-size: 14px;
    font-weight: 900;
    color: #07142f;
    text-decoration: none;
    white-space: nowrap;
    transition: .25s ease;
    position: relative;
    padding-bottom: 3px;
}

.tg-tour-card__btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #07142f;
    border-radius: 999px;
}

.tg-tour-card__btn:hover {
    color: #0f5db8;
    letter-spacing: .2px;
}

.tg-tour-card__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}