/* Sayfa alanı */
.projects-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Başlık — home/service tarzı gradient */
.projects-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;

    background: linear-gradient(90deg, #0ee92f, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 45px;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
}

/* CARD */
.project-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;

    border: 4px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(90deg, #0ee92f, #14b8a6);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;

    transition: all 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* CARD BODY */
.project-info {
    padding: 20px 22px;
}

.project-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

/* Şirket ismi — 2 satır kesme */
.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Tarih */
.project-date {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 15px;
}

/* Link */
.project-link {
    font-weight: 600;
    color: #0d9488;
    text-decoration: none;
    transition: 0.3s ease;
}

.project-link:hover {
    color: #14b8a6;
    padding-left: 4px;
}

/* Mobil resim küçültme */
@media (max-width: 768px) {
    .project-card img {
        height: 200px;
    }
}
