/* =========================================
   PROJECT CARDS (Premium)
   ========================================= */
.project-premium-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-premium-card:hover .img-wrapper img {
    transform: scale(1.08);
}

.card-content-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content-body h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.card-content-body p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-action-btn {
    margin-top: auto;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.card-action-btn:hover {
    gap: 12px;
    color: #0a58ca;
}