.tb-gira-card {
    --tb-gira-accent: #0A7E99;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #D7E0EC;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(16, 42, 51, 0.08);
    background: #ffffff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.tb-gira-card--transparent {
    background: transparent !important;
}

.tb-gira-card:hover {
    transform: translateY(-4px);
    border-color: var(--tb-gira-accent);
    box-shadow: 0 24px 54px rgba(16, 42, 51, 0.13);
}

.tb-gira-card--equal-height {
    height: 100%;
    min-height: 540px;
}

.tb-gira-card__image-wrap {
    height: 170px;
    overflow: hidden;
    background: #102A33;
    box-sizing: border-box;
}

.tb-gira-card--image-transparent .tb-gira-card__image-wrap {
    background: transparent !important;
}

.tb-gira-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 16px;
}

.tb-gira-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px 24px 26px;
}

.tb-gira-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
}

.tb-gira-card__meta-item {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border: 1px solid var(--tb-gira-accent);
    border-radius: 999px;
    background: #F1F7F9;
    color: #3E5564;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tb-gira-card__badge {
    margin-bottom: 8px;
    color: #0A7E99;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tb-gira-card__title {
    margin: 0 0 14px;
    color: #0A7E99;
    font-size: clamp(24px, 2.2vw, 31px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.tb-gira-card__description {
    color: #102A33;
    font-size: 16px;
    line-height: 1.58;
}

.tb-gira-card__description p {
    margin: 0 0 12px;
}

.tb-gira-card__bottom {
    margin-top: auto;
    padding-top: 18px;
}

.tb-gira-card__price {
    margin-bottom: 16px;
    color: #7A1F3D;
    font-size: 20px;
    font-weight: 800;
}

.tb-gira-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 23px;
    border: 1px solid #0A7E99;
    border-radius: 999px;
    background: #7A1F3D;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.tb-gira-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(122, 31, 61, 0.25);
}

@media (max-width: 767px) {
    .tb-gira-card--equal-height {
        min-height: auto;
    }

    .tb-gira-card__content {
        padding: 22px;
    }

    .tb-gira-card__button {
        width: 100%;
    }
}
