.clickable-card .btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border-width: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clickable-card .btn-outline-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(199, 23, 72, 0.25);
}

.clickable-card {
    --bs-primary: rgb(134, 29, 72);
    --bs-secondary: rgb(199, 23, 72);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.clickable-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(134, 29, 72, 0.15);
    border-color: var(--bs-primary);
}

.clickable-card.coming-soon {
    cursor: not-allowed;
    opacity: 0.7;
}

.clickable-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: inherit;
}

.clickable-card .card-header {
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bs-primary);
    padding: 2rem;
    border-bottom: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 140px;
    display: flex;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.clickable-card:hover .card-header {
    background-image: var(--hover-image);
    color: white;
}

.clickable-card .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
}

.clickable-card:hover .card-header::before {
    background-color: rgba(0, 0, 0, 0.45);
}

.clickable-card .card-title {
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
    overflow-wrap: anywhere;
}

.clickable-card:hover .card-title {
    text-shadow: none;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--bs-primary);
    transform: scale(1.02);
}

.clickable-card .card-content {
    padding: 2rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.clickable-card .card-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.clickable-card .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(134, 29, 72, 0.2);
}

.clickable-card .btn-primary:hover:not(:disabled) {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(199, 23, 72, 0.3);
}

.clickable-card:hover .btn-primary:not(:disabled) {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.clickable-card .btn-primary:disabled {
    color: white;
}

.cooperation-badge {
    color: #9ca3af;
    background: transparent;
    border: none;
    padding: 0.25rem 0;
    font-size: 0.8rem;
    font-weight: 400;
    border-radius: 0;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
    min-height: auto;
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
}
