
.projeler-baslik-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.projeler-baslik {
            font-family: 'Montserrat';
            font-size: 18px;
            font-weight: 400;
            color: #798080;
            cursor: pointer;
            white-space: nowrap;
            position: relative;
            padding: 0 10px;
            padding-bottom: 0px;
            float: none;
            width: unset;
        }


.projeler-sep {
            background-image: url(../img/sep.png);
            background-repeat: no-repeat;
            background-position: top;
            width: 20px;
            height: 16px;
            flex-shrink: 0;
            margin: 0 10px;
            float:none;
        }   


.projeler-active {
            background-image: url(../img/projeler-active.png);
            background-repeat: no-repeat;
            background-position: center;
            width: 100px;
            height: 14px;
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            margin-left: unset;
        }
        .proje-link-active {
            color: #bd7e50;
        }
.projeler-select-container {
            margin-top: 36px;
            margin-bottom: 30px;
        }

.projeler-item-row {
			display: flex;
			flex-wrap: wrap;
			gap: 20px;
		}
        .projeler-item-row::after {
            content: "";
            clear: both;
            display: table;
        }

        .projeler-item-column {
            float: left;
            width: 100%;
        }
        .projeler-item-column-link {
			flex: 1 1 100%;
			box-sizing: border-box;
			text-decoration: none;
			color: inherit;
		}
		
		.projeler-item-column img {
			max-width: 100%;
			height: auto;
			filter: brightness(80%);
			transition: all 0.5s ease;
		}
		
		@media screen and (min-width: 992px) {
		
			.projeler-item-column-link {
				/* 3 sütun olacak; aradaki 2 boşluğu (20px x 2) çıkarıyoruz */
				flex: 1 1 calc((100% - 40px) / 3);
			}
			
            .projeler-item-container {
                max-width: 981px;
            }
        }
