/* Referans hover buton stilleri */
.referance-item {
    position: relative;
}

/* Layout için order düzenlemeleri */
.referances-section[data-layout="right-content"] .referance-content {
    order: 2;
}

.referances-section[data-layout="right-content"] .referance-image {
    order: 1;
}

.referances-section[data-layout="left-content"] .referance-content {
    order: 1;
}

.referances-section[data-layout="left-content"] .referance-image {
    order: 2;
}

/* Mobile'da order tersine çevir */
@media (max-width: 640px) {
    .referances-section[data-layout="right-content"] .referance-content {
        order: 1;
    }
    
    .referances-section[data-layout="right-content"] .referance-image {
        order: 2;
    }
}

.referance-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(0, 0, 0, 0.4);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1.04px;
    transition: all 0.35s ease;
    text-decoration: none;
}

.referance-link:hover {
    color: #02617e;
}

.referance-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #02617e;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.75);
    transition: all 0.35s ease;
}

.referance-link:hover .referance-button {
    opacity: 1;
    transform: scale(1);
}

.referance-icon {
    color: white;
    font-size: 14px;
}

/* Responsive stilleri */
@media (max-width: 1024px) {
    .referance-link {
        font-size: 16px;
        line-height: normal;
        letter-spacing: normal;
    }
    
    .referance-button {
        width: 25px;
        height: 25px;
    }
    
    .referance-icon {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .referance-link {
        font-size: 14px;
        text-align: center;
    }
    
    .referance-button {
        width: 20px;
        height: 20px;
    }
    
    .referance-icon {
        font-size: 8px;
    }

    .referance-list {
margin-bottom: 15px;
    }
}
