/* Kart */
.bst-card {
    width: 350px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bst-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Görsel */
.bst-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* İçerik */
.bst-card-body {
    padding: 20px;
}

.bst-card-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.bst-card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Footer */
.bst-card-footer {
    display: flex;
    justify-content: space-between;
}

/* Butonlar */
.bst-btn-primary {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.bst-btn-primary:hover {
    background: #0b5ed7;
}

.bst-btn-outline {
    background: transparent;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.bst-btn-outline:hover {
    background: #0d6efd;
    color: white;
}

