.project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    //background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
	padding:10px;
	object-position: center;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 16px 0;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.project-card-title:hover {
    color: #007bff;
    text-decoration: none;
}

.project-card-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex: 1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f3f4;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.project-card-link:hover {
    color: #0056b3;
    text-decoration: none;
    transform: translateX(4px);
}

.project-card-link svg {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.project-card-link:hover svg {
    transform: translateX(2px);
}

/* Grid Sistemi */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

@@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .project-card-content {
        padding: 20px;
    }
}

/* Navigasyon Stilleri */
.breadcrumb-nav {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 14px;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: "/";
    margin: 0 12px;
    color: #dee2e6;
}

.breadcrumb-nav a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Sidebar Stilleri */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-widget-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #1a1a1a;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f1f3f4;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: block;
    padding: 12px 0;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.category-list a:hover {
    color: #007bff;
    text-decoration: none;
    padding-left: 12px;
}

.category-list a:hover::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
}

/* Başlık Stilleri */
.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.page-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}